diff --git a/grammar.js b/grammar.js index e5862dd..c497561 100644 --- a/grammar.js +++ b/grammar.js @@ -97,6 +97,7 @@ module.exports = grammar({ [$._name, $.package_body_stub], [$._name, $._subtype_indication], [$._name, $._subtype_indication, $.component_choice_list], + [$._name, $._subtype_mark], [$.attribute_definition_clause, $._attribute_reference], [$.component_choice_list, $.discrete_choice], [$.component_choice_list, $.positional_array_aggregate], @@ -158,6 +159,10 @@ module.exports = grammar({ $.identifier, $.string_literal, ), + _subtype_mark: $ => choice( + $.identifier, + $.selected_component, + $._attribute_reference), selected_component: $ => prec.left(seq( // RM 4.1.3 field('prefix', $._name), @@ -565,12 +570,22 @@ module.exports = grammar({ allocator: $ => seq( reservedWord('new'), optional($.subpool_specification), - $._subtype_indication_paren_constraint, + choice( + $._subtype_indication_paren_constraint, + $.qualified_expression) ), _subtype_indication_paren_constraint: $ => seq( + // Ada 2012+ doesn't allow null exclusion here -- RM 4.8(2) + // Before Ada 2012, null exclusion raises Constraint_Error (AI05-0104) optional($.null_exclusion), - $._name, - optional($.index_constraint), + field('subtype_mark', $._subtype_mark), + optional(choice( + // Choose discriminant_constraint over index_constraint, + // when syntax ambiguity arises, to avoid potential + // highlighting of names in a discriminant_constraint as + // subtype names. + prec.dynamic(1, $.discriminant_constraint), + $.index_constraint)), ), subpool_specification: $ => seq( '(', diff --git a/src/grammar.json b/src/grammar.json index 9accad4..e5ae5a1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -303,6 +303,23 @@ } ] }, + "_subtype_mark": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "selected_component" + }, + { + "type": "SYMBOL", + "name": "_attribute_reference" + } + ] + }, "selected_component": { "type": "PREC_LEFT", "value": 0, @@ -2772,8 +2789,17 @@ ] }, { - "type": "SYMBOL", - "name": "_subtype_indication_paren_constraint" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_subtype_indication_paren_constraint" + }, + { + "type": "SYMBOL", + "name": "qualified_expression" + } + ] } ] }, @@ -2793,15 +2819,32 @@ ] }, { - "type": "SYMBOL", - "name": "_name" + "type": "FIELD", + "name": "subtype_mark", + "content": { + "type": "SYMBOL", + "name": "_subtype_mark" + } }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "index_constraint" + "type": "CHOICE", + "members": [ + { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "discriminant_constraint" + } + }, + { + "type": "SYMBOL", + "name": "index_constraint" + } + ] }, { "type": "BLANK" @@ -15362,6 +15405,10 @@ "_subtype_indication", "component_choice_list" ], + [ + "_name", + "_subtype_mark" + ], [ "attribute_definition_clause", "_attribute_reference" diff --git a/src/node-types.json b/src/node-types.json index e2a1c50..6ff3799 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -458,29 +458,72 @@ { "type": "allocator", "named": true, - "fields": {}, + "fields": { + "subtype_mark": { + "multiple": true, + "required": false, + "types": [ + { + "type": "attribute_designator", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "function_call", + "named": true + }, + { + "type": "gnatprep_identifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "qualified_expression", + "named": true + }, + { + "type": "reduction_attribute_designator", + "named": true + }, + { + "type": "selected_component", + "named": true + }, + { + "type": "slice", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "target_name", + "named": true + }, + { + "type": "tick", + "named": true + }, + { + "type": "value_sequence", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "attribute_designator", - "named": true - }, - { - "type": "character_literal", - "named": true - }, - { - "type": "function_call", - "named": true - }, - { - "type": "gnatprep_identifier", - "named": true - }, - { - "type": "identifier", + "type": "discriminant_constraint", "named": true }, { @@ -495,37 +538,9 @@ "type": "qualified_expression", "named": true }, - { - "type": "reduction_attribute_designator", - "named": true - }, - { - "type": "selected_component", - "named": true - }, - { - "type": "slice", - "named": true - }, - { - "type": "string_literal", - "named": true - }, { "type": "subpool_specification", "named": true - }, - { - "type": "target_name", - "named": true - }, - { - "type": "tick", - "named": true - }, - { - "type": "value_sequence", - "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 7e5ea53..46ece48 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2140 -#define LARGE_STATE_COUNT 111 -#define SYMBOL_COUNT 456 +#define STATE_COUNT 2142 +#define LARGE_STATE_COUNT 110 +#define SYMBOL_COUNT 457 #define ALIAS_COUNT 0 #define TOKEN_COUNT 122 #define EXTERNAL_TOKEN_COUNT 0 @@ -144,334 +144,335 @@ enum { sym_unary_adding_operator = 125, sym_multiplying_operator = 126, sym__name = 127, - sym_selected_component = 128, - sym__name_list = 129, - sym__defining_identifier_list = 130, - sym_slice = 131, - sym__attribute_reference = 132, - sym__reduction_attribute_reference = 133, - sym_reduction_attribute_designator = 134, - sym_reduction_specification = 135, - sym_value_sequence = 136, - sym_chunk_specification = 137, - sym_iterated_element_association = 138, - sym__discrete_subtype_definition = 139, - sym_loop_parameter_specification = 140, - sym__loop_parameter_subtype_indication = 141, - sym_iterator_filter = 142, - sym_iterator_specification = 143, - sym_attribute_designator = 144, - sym_qualified_expression = 145, - sym_compilation_unit = 146, - sym__declarative_item = 147, - sym__basic_declarative_item = 148, - sym__basic_declaration = 149, - sym_package_declaration = 150, - sym__package_specification = 151, - sym_with_clause = 152, - sym_use_clause = 153, - sym_subunit = 154, - sym__proper_body = 155, - sym_subprogram_body = 156, - sym_package_body = 157, - sym__subtype_indication = 158, - sym_discriminant_constraint = 159, - sym_discriminant_association = 160, - sym__constraint = 161, - sym__scalar_constraint = 162, - sym_range_g = 163, - sym_range_attribute_designator = 164, - sym_range_constraint = 165, - sym_expression = 166, - sym__relation = 167, - sym_relation_membership = 168, - sym_raise_expression = 169, - sym_membership_choice_list = 170, - sym__membership_choice = 171, - sym__simple_expression = 172, - sym_term = 173, - sym__factor = 174, - sym_factor_power = 175, - sym_factor_abs = 176, - sym_factor_not = 177, - sym__parenthesized_expression = 178, - sym__primary = 179, - sym_primary_null = 180, - sym_allocator = 181, - sym__subtype_indication_paren_constraint = 182, - sym_subpool_specification = 183, - sym__access_type_definition = 184, - sym_access_to_subprogram_definition = 185, - sym_access_to_object_definition = 186, - sym_general_access_modifier = 187, - sym_access_definition = 188, - sym_actual_parameter_part = 189, - sym_parameter_association = 190, - sym__conditional_expression = 191, - sym__conditional_quantified_declare_expression = 192, - sym_quantified_expression = 193, - sym_declare_expression = 194, - sym__declare_item = 195, - sym_quantifier = 196, - sym_case_expression = 197, - sym_case_expression_alternative = 198, - sym_component_choice_list = 199, - sym__aggregate = 200, - sym__delta_aggregate = 201, - sym_extension_aggregate = 202, - sym_record_delta_aggregate = 203, - sym_array_delta_aggregate = 204, - sym_record_aggregate = 205, - sym_record_component_association_list = 206, - sym__record_component_association_list_or_expression = 207, - sym__named_record_component_association = 208, - sym_null_exclusion = 209, - sym_index_constraint = 210, - sym_digits_constraint = 211, - sym_delta_constraint = 212, - sym__basic_declarative_item_pragma = 213, - sym__type_declaration = 214, - sym_full_type_declaration = 215, - sym_private_type_declaration = 216, - sym_private_extension_declaration = 217, - sym__discriminant_part = 218, - sym_unknown_discriminant_part = 219, - sym_known_discriminant_part = 220, - sym_incomplete_type_declaration = 221, - sym_discriminant_specification_list = 222, - sym_discriminant_specification = 223, - sym__type_definition = 224, - sym_array_type_definition = 225, - sym__discrete_subtype_definition_list = 226, - sym__discrete_range = 227, - sym__index_subtype_definition_list = 228, - sym_index_subtype_definition = 229, - sym_enumeration_type_definition = 230, - sym__enumeration_literal_list = 231, - sym__enumeration_literal_specification = 232, - sym__integer_type_definition = 233, - sym_modular_type_definition = 234, - sym__real_type_definition = 235, - sym_floating_point_definition = 236, - sym_real_range_specification = 237, - sym__fixed_point_definition = 238, - sym_decimal_fixed_point_definition = 239, - sym_ordinary_fixed_point_definition = 240, - sym_signed_integer_type_definition = 241, - sym_derived_type_definition = 242, - sym_interface_type_definition = 243, - sym__interface_list = 244, - sym_record_extension_part = 245, - sym_record_type_definition = 246, - sym_record_definition = 247, - sym_component_list = 248, - sym__component_item = 249, - sym_component_declaration = 250, - sym_component_definition = 251, - sym__array_aggregate = 252, - sym_positional_array_aggregate = 253, - sym_null_array_aggregate = 254, - sym_named_array_aggregate = 255, - sym__array_component_association_list = 256, - sym_array_component_association = 257, - sym_discrete_choice_list = 258, - sym_discrete_choice = 259, - sym_aspect_association = 260, - sym__aspect_clause = 261, - sym__aspect_definition = 262, - sym__aspect_mark = 263, - sym_aspect_mark_list = 264, - sym_aspect_specification = 265, - sym__assign_value = 266, - sym_at_clause = 267, - sym_attribute_definition_clause = 268, - sym_body_stub = 269, - sym_subprogram_body_stub = 270, - sym_package_body_stub = 271, - sym_task_body = 272, - sym_task_body_stub = 273, - sym__protected_operation_declaration = 274, - sym__protected_element_declaration = 275, - sym__protected_operation_item = 276, - sym_protected_definition = 277, - sym_protected_type_declaration = 278, - sym_single_protected_declaration = 279, - sym_protected_body = 280, - sym_protected_body_stub = 281, - sym_choice_parameter_specification = 282, - sym_component_clause = 283, - sym__declarative_item_pragma = 284, - sym_non_empty_declarative_part = 285, - sym_entry_declaration = 286, - sym_entry_body = 287, - sym_entry_barrier = 288, - sym_entry_index_specification = 289, - sym_enumeration_aggregate = 290, - sym_enumeration_representation_clause = 291, - sym_exception_choice_list = 292, - sym_exception_choice = 293, - sym_exception_declaration = 294, - sym_exception_handler = 295, - sym_formal_part = 296, - sym_function_specification = 297, - sym__generic_declaration = 298, - sym_generic_formal_part = 299, - sym__generic_formal_parameter_declaration = 300, - sym_generic_subprogram_declaration = 301, - sym_generic_package_declaration = 302, - sym_generic_instantiation = 303, - sym_formal_object_declaration = 304, - sym__formal_type_declaration = 305, - sym_formal_complete_type_declaration = 306, - sym_formal_incomplete_type_declaration = 307, - sym__formal_type_definition = 308, - sym_formal_private_type_definition = 309, - sym_formal_derived_type_definition = 310, - sym_formal_discrete_type_definition = 311, - sym_formal_signed_integer_type_definition = 312, - sym_formal_modular_type_definition = 313, - sym_formal_floating_point_definition = 314, - sym_formal_ordinary_fixed_point_definition = 315, - sym_formal_decimal_fixed_point_definition = 316, - sym_formal_array_type_definition = 317, - sym_formal_access_type_definition = 318, - sym_formal_interface_type_definition = 319, - sym_formal_subprogram_declaration = 320, - sym_formal_concrete_subprogram_declaration = 321, - sym_formal_abstract_subprogram_declaration = 322, - sym_subprogram_default = 323, - sym_formal_package_declaration = 324, - sym_global_aspect_definition = 325, - sym_global_aspect_element = 326, - sym_global_mode = 327, - sym_handled_sequence_of_statements = 328, - sym_loop_label = 329, - sym_label = 330, - sym_mod_clause = 331, - sym_non_empty_mode = 332, - sym_null_procedure_declaration = 333, - sym_null_statement = 334, - sym_number_declaration = 335, - sym_object_declaration = 336, - sym_single_task_declaration = 337, - sym_task_type_declaration = 338, - sym__task_item = 339, - sym_task_definition = 340, - sym_overriding_indicator = 341, - sym__parameter_and_result_profile = 342, - sym_parameter_specification = 343, - sym__parameter_specification_list = 344, - sym_pragma_g = 345, - sym_pragma_argument_association = 346, - sym_if_expression = 347, - sym_elsif_expression_item = 348, - sym_procedure_specification = 349, - sym_record_representation_clause = 350, - sym__renaming_declaration = 351, - sym_object_renaming_declaration = 352, - sym_exception_renaming_declaration = 353, - sym_package_renaming_declaration = 354, - sym_subprogram_renaming_declaration = 355, - sym_generic_renaming_declaration = 356, - sym_result_profile = 357, - sym__sequence_of_statements = 358, - sym__simple_statement = 359, - sym__statement = 360, - sym__compound_statement = 361, - sym__select_statement = 362, - sym_entry_call_alternative = 363, - sym_asynchronous_select = 364, - sym_triggering_alternative = 365, - sym_conditional_entry_call = 366, - sym_delay_alternative = 367, - sym_timed_entry_call = 368, - sym_guard = 369, - sym_select_alternative = 370, - sym_accept_alternative = 371, - sym_terminate_alternative = 372, - sym_selective_accept = 373, - sym_abort_statement = 374, - sym_requeue_statement = 375, - sym_accept_statement = 376, - sym_case_statement_alternative = 377, - sym_case_statement = 378, - sym_block_statement = 379, - sym_if_statement = 380, - sym_elsif_statement_item = 381, - sym_gnatprep_declarative_if_statement = 382, - sym_gnatprep_if_statement = 383, - sym_exit_statement = 384, - sym_goto_statement = 385, - sym__delay_statement = 386, - sym_delay_until_statement = 387, - sym_delay_relative_statement = 388, - sym_simple_return_statement = 389, - sym_extended_return_statement = 390, - sym_extended_return_object_declaration = 391, - sym__return_subtype_indication = 392, - sym_procedure_call_statement = 393, - sym_function_call = 394, - sym_raise_statement = 395, - sym_loop_statement = 396, - sym_iteration_scheme = 397, - sym_assignment_statement = 398, - sym_subprogram_declaration = 399, - sym_expression_function_declaration = 400, - sym__subprogram_specification = 401, - sym_subtype_declaration = 402, - sym_variant_part = 403, - sym_variant_list = 404, - sym_variant = 405, - aux_sym_compilation_repeat1 = 406, - aux_sym__name_list_repeat1 = 407, - aux_sym__defining_identifier_list_repeat1 = 408, - aux_sym__package_specification_repeat1 = 409, - aux_sym_discriminant_constraint_repeat1 = 410, - aux_sym_discriminant_association_repeat1 = 411, - aux_sym_expression_repeat1 = 412, - aux_sym_expression_repeat2 = 413, - aux_sym_expression_repeat3 = 414, - aux_sym_membership_choice_list_repeat1 = 415, - aux_sym__simple_expression_repeat1 = 416, - aux_sym_term_repeat1 = 417, - aux_sym_actual_parameter_part_repeat1 = 418, - aux_sym_declare_expression_repeat1 = 419, - aux_sym_case_expression_repeat1 = 420, - aux_sym_component_choice_list_repeat1 = 421, - aux_sym_record_component_association_list_repeat1 = 422, - aux_sym_record_component_association_list_repeat2 = 423, - aux_sym_index_constraint_repeat1 = 424, - aux_sym_discriminant_specification_list_repeat1 = 425, - aux_sym__discrete_subtype_definition_list_repeat1 = 426, - aux_sym__index_subtype_definition_list_repeat1 = 427, - aux_sym__enumeration_literal_list_repeat1 = 428, - aux_sym__interface_list_repeat1 = 429, - aux_sym_component_list_repeat1 = 430, - aux_sym_positional_array_aggregate_repeat1 = 431, - aux_sym__array_component_association_list_repeat1 = 432, - aux_sym_discrete_choice_list_repeat1 = 433, - aux_sym_aspect_mark_list_repeat1 = 434, - aux_sym_protected_definition_repeat1 = 435, - aux_sym_protected_definition_repeat2 = 436, - aux_sym_protected_body_repeat1 = 437, - aux_sym_non_empty_declarative_part_repeat1 = 438, - aux_sym_exception_choice_list_repeat1 = 439, - aux_sym_generic_formal_part_repeat1 = 440, - aux_sym_global_aspect_definition_repeat1 = 441, - aux_sym_handled_sequence_of_statements_repeat1 = 442, - aux_sym_task_definition_repeat1 = 443, - aux_sym__parameter_specification_list_repeat1 = 444, - aux_sym_pragma_g_repeat1 = 445, - aux_sym_if_expression_repeat1 = 446, - aux_sym_record_representation_clause_repeat1 = 447, - aux_sym__sequence_of_statements_repeat1 = 448, - aux_sym__sequence_of_statements_repeat2 = 449, - aux_sym_selective_accept_repeat1 = 450, - aux_sym_case_statement_repeat1 = 451, - aux_sym_if_statement_repeat1 = 452, - aux_sym_gnatprep_declarative_if_statement_repeat1 = 453, - aux_sym_gnatprep_if_statement_repeat1 = 454, - aux_sym_variant_list_repeat1 = 455, + sym__subtype_mark = 128, + sym_selected_component = 129, + sym__name_list = 130, + sym__defining_identifier_list = 131, + sym_slice = 132, + sym__attribute_reference = 133, + sym__reduction_attribute_reference = 134, + sym_reduction_attribute_designator = 135, + sym_reduction_specification = 136, + sym_value_sequence = 137, + sym_chunk_specification = 138, + sym_iterated_element_association = 139, + sym__discrete_subtype_definition = 140, + sym_loop_parameter_specification = 141, + sym__loop_parameter_subtype_indication = 142, + sym_iterator_filter = 143, + sym_iterator_specification = 144, + sym_attribute_designator = 145, + sym_qualified_expression = 146, + sym_compilation_unit = 147, + sym__declarative_item = 148, + sym__basic_declarative_item = 149, + sym__basic_declaration = 150, + sym_package_declaration = 151, + sym__package_specification = 152, + sym_with_clause = 153, + sym_use_clause = 154, + sym_subunit = 155, + sym__proper_body = 156, + sym_subprogram_body = 157, + sym_package_body = 158, + sym__subtype_indication = 159, + sym_discriminant_constraint = 160, + sym_discriminant_association = 161, + sym__constraint = 162, + sym__scalar_constraint = 163, + sym_range_g = 164, + sym_range_attribute_designator = 165, + sym_range_constraint = 166, + sym_expression = 167, + sym__relation = 168, + sym_relation_membership = 169, + sym_raise_expression = 170, + sym_membership_choice_list = 171, + sym__membership_choice = 172, + sym__simple_expression = 173, + sym_term = 174, + sym__factor = 175, + sym_factor_power = 176, + sym_factor_abs = 177, + sym_factor_not = 178, + sym__parenthesized_expression = 179, + sym__primary = 180, + sym_primary_null = 181, + sym_allocator = 182, + sym__subtype_indication_paren_constraint = 183, + sym_subpool_specification = 184, + sym__access_type_definition = 185, + sym_access_to_subprogram_definition = 186, + sym_access_to_object_definition = 187, + sym_general_access_modifier = 188, + sym_access_definition = 189, + sym_actual_parameter_part = 190, + sym_parameter_association = 191, + sym__conditional_expression = 192, + sym__conditional_quantified_declare_expression = 193, + sym_quantified_expression = 194, + sym_declare_expression = 195, + sym__declare_item = 196, + sym_quantifier = 197, + sym_case_expression = 198, + sym_case_expression_alternative = 199, + sym_component_choice_list = 200, + sym__aggregate = 201, + sym__delta_aggregate = 202, + sym_extension_aggregate = 203, + sym_record_delta_aggregate = 204, + sym_array_delta_aggregate = 205, + sym_record_aggregate = 206, + sym_record_component_association_list = 207, + sym__record_component_association_list_or_expression = 208, + sym__named_record_component_association = 209, + sym_null_exclusion = 210, + sym_index_constraint = 211, + sym_digits_constraint = 212, + sym_delta_constraint = 213, + sym__basic_declarative_item_pragma = 214, + sym__type_declaration = 215, + sym_full_type_declaration = 216, + sym_private_type_declaration = 217, + sym_private_extension_declaration = 218, + sym__discriminant_part = 219, + sym_unknown_discriminant_part = 220, + sym_known_discriminant_part = 221, + sym_incomplete_type_declaration = 222, + sym_discriminant_specification_list = 223, + sym_discriminant_specification = 224, + sym__type_definition = 225, + sym_array_type_definition = 226, + sym__discrete_subtype_definition_list = 227, + sym__discrete_range = 228, + sym__index_subtype_definition_list = 229, + sym_index_subtype_definition = 230, + sym_enumeration_type_definition = 231, + sym__enumeration_literal_list = 232, + sym__enumeration_literal_specification = 233, + sym__integer_type_definition = 234, + sym_modular_type_definition = 235, + sym__real_type_definition = 236, + sym_floating_point_definition = 237, + sym_real_range_specification = 238, + sym__fixed_point_definition = 239, + sym_decimal_fixed_point_definition = 240, + sym_ordinary_fixed_point_definition = 241, + sym_signed_integer_type_definition = 242, + sym_derived_type_definition = 243, + sym_interface_type_definition = 244, + sym__interface_list = 245, + sym_record_extension_part = 246, + sym_record_type_definition = 247, + sym_record_definition = 248, + sym_component_list = 249, + sym__component_item = 250, + sym_component_declaration = 251, + sym_component_definition = 252, + sym__array_aggregate = 253, + sym_positional_array_aggregate = 254, + sym_null_array_aggregate = 255, + sym_named_array_aggregate = 256, + sym__array_component_association_list = 257, + sym_array_component_association = 258, + sym_discrete_choice_list = 259, + sym_discrete_choice = 260, + sym_aspect_association = 261, + sym__aspect_clause = 262, + sym__aspect_definition = 263, + sym__aspect_mark = 264, + sym_aspect_mark_list = 265, + sym_aspect_specification = 266, + sym__assign_value = 267, + sym_at_clause = 268, + sym_attribute_definition_clause = 269, + sym_body_stub = 270, + sym_subprogram_body_stub = 271, + sym_package_body_stub = 272, + sym_task_body = 273, + sym_task_body_stub = 274, + sym__protected_operation_declaration = 275, + sym__protected_element_declaration = 276, + sym__protected_operation_item = 277, + sym_protected_definition = 278, + sym_protected_type_declaration = 279, + sym_single_protected_declaration = 280, + sym_protected_body = 281, + sym_protected_body_stub = 282, + sym_choice_parameter_specification = 283, + sym_component_clause = 284, + sym__declarative_item_pragma = 285, + sym_non_empty_declarative_part = 286, + sym_entry_declaration = 287, + sym_entry_body = 288, + sym_entry_barrier = 289, + sym_entry_index_specification = 290, + sym_enumeration_aggregate = 291, + sym_enumeration_representation_clause = 292, + sym_exception_choice_list = 293, + sym_exception_choice = 294, + sym_exception_declaration = 295, + sym_exception_handler = 296, + sym_formal_part = 297, + sym_function_specification = 298, + sym__generic_declaration = 299, + sym_generic_formal_part = 300, + sym__generic_formal_parameter_declaration = 301, + sym_generic_subprogram_declaration = 302, + sym_generic_package_declaration = 303, + sym_generic_instantiation = 304, + sym_formal_object_declaration = 305, + sym__formal_type_declaration = 306, + sym_formal_complete_type_declaration = 307, + sym_formal_incomplete_type_declaration = 308, + sym__formal_type_definition = 309, + sym_formal_private_type_definition = 310, + sym_formal_derived_type_definition = 311, + sym_formal_discrete_type_definition = 312, + sym_formal_signed_integer_type_definition = 313, + sym_formal_modular_type_definition = 314, + sym_formal_floating_point_definition = 315, + sym_formal_ordinary_fixed_point_definition = 316, + sym_formal_decimal_fixed_point_definition = 317, + sym_formal_array_type_definition = 318, + sym_formal_access_type_definition = 319, + sym_formal_interface_type_definition = 320, + sym_formal_subprogram_declaration = 321, + sym_formal_concrete_subprogram_declaration = 322, + sym_formal_abstract_subprogram_declaration = 323, + sym_subprogram_default = 324, + sym_formal_package_declaration = 325, + sym_global_aspect_definition = 326, + sym_global_aspect_element = 327, + sym_global_mode = 328, + sym_handled_sequence_of_statements = 329, + sym_loop_label = 330, + sym_label = 331, + sym_mod_clause = 332, + sym_non_empty_mode = 333, + sym_null_procedure_declaration = 334, + sym_null_statement = 335, + sym_number_declaration = 336, + sym_object_declaration = 337, + sym_single_task_declaration = 338, + sym_task_type_declaration = 339, + sym__task_item = 340, + sym_task_definition = 341, + sym_overriding_indicator = 342, + sym__parameter_and_result_profile = 343, + sym_parameter_specification = 344, + sym__parameter_specification_list = 345, + sym_pragma_g = 346, + sym_pragma_argument_association = 347, + sym_if_expression = 348, + sym_elsif_expression_item = 349, + sym_procedure_specification = 350, + sym_record_representation_clause = 351, + sym__renaming_declaration = 352, + sym_object_renaming_declaration = 353, + sym_exception_renaming_declaration = 354, + sym_package_renaming_declaration = 355, + sym_subprogram_renaming_declaration = 356, + sym_generic_renaming_declaration = 357, + sym_result_profile = 358, + sym__sequence_of_statements = 359, + sym__simple_statement = 360, + sym__statement = 361, + sym__compound_statement = 362, + sym__select_statement = 363, + sym_entry_call_alternative = 364, + sym_asynchronous_select = 365, + sym_triggering_alternative = 366, + sym_conditional_entry_call = 367, + sym_delay_alternative = 368, + sym_timed_entry_call = 369, + sym_guard = 370, + sym_select_alternative = 371, + sym_accept_alternative = 372, + sym_terminate_alternative = 373, + sym_selective_accept = 374, + sym_abort_statement = 375, + sym_requeue_statement = 376, + sym_accept_statement = 377, + sym_case_statement_alternative = 378, + sym_case_statement = 379, + sym_block_statement = 380, + sym_if_statement = 381, + sym_elsif_statement_item = 382, + sym_gnatprep_declarative_if_statement = 383, + sym_gnatprep_if_statement = 384, + sym_exit_statement = 385, + sym_goto_statement = 386, + sym__delay_statement = 387, + sym_delay_until_statement = 388, + sym_delay_relative_statement = 389, + sym_simple_return_statement = 390, + sym_extended_return_statement = 391, + sym_extended_return_object_declaration = 392, + sym__return_subtype_indication = 393, + sym_procedure_call_statement = 394, + sym_function_call = 395, + sym_raise_statement = 396, + sym_loop_statement = 397, + sym_iteration_scheme = 398, + sym_assignment_statement = 399, + sym_subprogram_declaration = 400, + sym_expression_function_declaration = 401, + sym__subprogram_specification = 402, + sym_subtype_declaration = 403, + sym_variant_part = 404, + sym_variant_list = 405, + sym_variant = 406, + aux_sym_compilation_repeat1 = 407, + aux_sym__name_list_repeat1 = 408, + aux_sym__defining_identifier_list_repeat1 = 409, + aux_sym__package_specification_repeat1 = 410, + aux_sym_discriminant_constraint_repeat1 = 411, + aux_sym_discriminant_association_repeat1 = 412, + aux_sym_expression_repeat1 = 413, + aux_sym_expression_repeat2 = 414, + aux_sym_expression_repeat3 = 415, + aux_sym_membership_choice_list_repeat1 = 416, + aux_sym__simple_expression_repeat1 = 417, + aux_sym_term_repeat1 = 418, + aux_sym_actual_parameter_part_repeat1 = 419, + aux_sym_declare_expression_repeat1 = 420, + aux_sym_case_expression_repeat1 = 421, + aux_sym_component_choice_list_repeat1 = 422, + aux_sym_record_component_association_list_repeat1 = 423, + aux_sym_record_component_association_list_repeat2 = 424, + aux_sym_index_constraint_repeat1 = 425, + aux_sym_discriminant_specification_list_repeat1 = 426, + aux_sym__discrete_subtype_definition_list_repeat1 = 427, + aux_sym__index_subtype_definition_list_repeat1 = 428, + aux_sym__enumeration_literal_list_repeat1 = 429, + aux_sym__interface_list_repeat1 = 430, + aux_sym_component_list_repeat1 = 431, + aux_sym_positional_array_aggregate_repeat1 = 432, + aux_sym__array_component_association_list_repeat1 = 433, + aux_sym_discrete_choice_list_repeat1 = 434, + aux_sym_aspect_mark_list_repeat1 = 435, + aux_sym_protected_definition_repeat1 = 436, + aux_sym_protected_definition_repeat2 = 437, + aux_sym_protected_body_repeat1 = 438, + aux_sym_non_empty_declarative_part_repeat1 = 439, + aux_sym_exception_choice_list_repeat1 = 440, + aux_sym_generic_formal_part_repeat1 = 441, + aux_sym_global_aspect_definition_repeat1 = 442, + aux_sym_handled_sequence_of_statements_repeat1 = 443, + aux_sym_task_definition_repeat1 = 444, + aux_sym__parameter_specification_list_repeat1 = 445, + aux_sym_pragma_g_repeat1 = 446, + aux_sym_if_expression_repeat1 = 447, + aux_sym_record_representation_clause_repeat1 = 448, + aux_sym__sequence_of_statements_repeat1 = 449, + aux_sym__sequence_of_statements_repeat2 = 450, + aux_sym_selective_accept_repeat1 = 451, + aux_sym_case_statement_repeat1 = 452, + aux_sym_if_statement_repeat1 = 453, + aux_sym_gnatprep_declarative_if_statement_repeat1 = 454, + aux_sym_gnatprep_if_statement_repeat1 = 455, + aux_sym_variant_list_repeat1 = 456, }; static const char * const ts_symbol_names[] = { @@ -603,6 +604,7 @@ static const char * const ts_symbol_names[] = { [sym_unary_adding_operator] = "unary_adding_operator", [sym_multiplying_operator] = "multiplying_operator", [sym__name] = "_name", + [sym__subtype_mark] = "_subtype_mark", [sym_selected_component] = "selected_component", [sym__name_list] = "_name_list", [sym__defining_identifier_list] = "_defining_identifier_list", @@ -1062,6 +1064,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_unary_adding_operator] = sym_unary_adding_operator, [sym_multiplying_operator] = sym_multiplying_operator, [sym__name] = sym__name, + [sym__subtype_mark] = sym__subtype_mark, [sym_selected_component] = sym_selected_component, [sym__name_list] = sym__name_list, [sym__defining_identifier_list] = sym__defining_identifier_list, @@ -1905,6 +1908,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__subtype_mark] = { + .visible = false, + .named = true, + }, [sym_selected_component] = { .visible = true, .named = true, @@ -3333,14 +3340,14 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 8, .length = 1}, [9] = {.index = 9, .length = 1}, [10] = {.index = 10, .length = 1}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 1}, + [11] = {.index = 11, .length = 1}, + [12] = {.index = 12, .length = 2}, [13] = {.index = 14, .length = 1}, [14] = {.index = 15, .length = 1}, [15] = {.index = 16, .length = 1}, [16] = {.index = 17, .length = 1}, - [17] = {.index = 18, .length = 2}, - [18] = {.index = 20, .length = 1}, + [17] = {.index = 18, .length = 1}, + [18] = {.index = 19, .length = 2}, [19] = {.index = 21, .length = 1}, [20] = {.index = 22, .length = 1}, [21] = {.index = 23, .length = 1}, @@ -3349,23 +3356,23 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [24] = {.index = 26, .length = 1}, [25] = {.index = 27, .length = 1}, [26] = {.index = 28, .length = 1}, - [27] = {.index = 29, .length = 4}, - [28] = {.index = 33, .length = 1}, - [29] = {.index = 34, .length = 2}, - [30] = {.index = 36, .length = 1}, + [27] = {.index = 29, .length = 1}, + [28] = {.index = 30, .length = 4}, + [29] = {.index = 34, .length = 1}, + [30] = {.index = 35, .length = 2}, [31] = {.index = 37, .length = 1}, - [32] = {.index = 38, .length = 2}, - [33] = {.index = 40, .length = 2}, - [34] = {.index = 42, .length = 1}, + [32] = {.index = 38, .length = 1}, + [33] = {.index = 39, .length = 2}, + [34] = {.index = 41, .length = 2}, [35] = {.index = 43, .length = 1}, [36] = {.index = 44, .length = 1}, [37] = {.index = 45, .length = 1}, [38] = {.index = 46, .length = 1}, - [39] = {.index = 47, .length = 2}, - [40] = {.index = 49, .length = 2}, - [41] = {.index = 51, .length = 2}, - [42] = {.index = 53, .length = 2}, - [43] = {.index = 55, .length = 1}, + [39] = {.index = 47, .length = 1}, + [40] = {.index = 48, .length = 2}, + [41] = {.index = 50, .length = 2}, + [42] = {.index = 52, .length = 2}, + [43] = {.index = 54, .length = 2}, [44] = {.index = 56, .length = 1}, [45] = {.index = 57, .length = 1}, [46] = {.index = 58, .length = 3}, @@ -3473,83 +3480,83 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [10] = {field_exception_name, 1}, [11] = + {field_subtype_mark, 1, .inherited = true}, + [12] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [13] = - {field_statement_identifier, 1}, [14] = - {field_entry_direct_name, 1}, + {field_statement_identifier, 1}, [15] = - {field_loop_name, 1}, + {field_entry_direct_name, 1}, [16] = - {field_label_name, 1}, + {field_loop_name, 1}, [17] = - {field_subtype_name, 0}, + {field_label_name, 1}, [18] = + {field_subtype_name, 0}, + [19] = {field_prefix, 0}, {field_selector_name, 2}, - [20] = - {field_variable_name, 0}, [21] = - {field_subtype_mark, 1}, + {field_variable_name, 0}, [22] = - {field_object_name, 2}, + {field_subtype_mark, 1}, [23] = - {field_is_parallel, 1}, + {field_object_name, 2}, [24] = - {field_iterator_name, 2}, + {field_is_parallel, 1}, [25] = - {field_subtype_mark, 2, .inherited = true}, + {field_iterator_name, 2}, [26] = - {field_is_type, 1}, + {field_subtype_mark, 2, .inherited = true}, [27] = - {field_is_private, 0}, + {field_is_type, 1}, [28] = - {field_is_limited, 0}, + {field_is_private, 0}, [29] = + {field_is_limited, 0}, + [30] = {field_left, 0}, {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, {field_right, 2}, - [33] = - {field_parameter_profile, 2}, [34] = + {field_parameter_profile, 2}, + [35] = {field_entry_direct_name, 1}, {field_parameter_profile, 2}, - [36] = - {field_condition, 2}, [37] = - {field_prefix, 0}, + {field_condition, 2}, [38] = + {field_prefix, 0}, + [39] = {field_name, 0}, {field_subtype_mark, 2, .inherited = true}, - [40] = + [41] = {field_is_abstract, 1}, {field_is_abstract, 2}, - [42] = - {field_callable_entity_name, 2}, [43] = - {field_subtype_mark, 2}, + {field_callable_entity_name, 2}, [44] = - {field_iterator_name, 3}, + {field_subtype_mark, 2}, [45] = - {field_subtype_mark, 3, .inherited = true}, + {field_iterator_name, 3}, [46] = - {field_local_name, 1}, + {field_subtype_mark, 3, .inherited = true}, [47] = + {field_local_name, 1}, + [48] = {field_is_all, 1}, {field_is_type, 2}, - [49] = + [50] = {field_endname, 4}, {field_name, 1}, - [51] = + [52] = {field_name, 1}, {field_package_name, 3}, - [53] = + [54] = {field_is_limited, 0}, {field_is_private, 1}, - [55] = - {field_subtype_mark, 1, .inherited = true}, [56] = {field_parent_unit_name, 2}, [57] = @@ -4322,7 +4329,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 537, + [541] = 541, [542] = 542, [543] = 543, [544] = 544, @@ -4344,19 +4351,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [560] = 560, [561] = 561, [562] = 562, - [563] = 518, + [563] = 563, [564] = 564, - [565] = 565, + [565] = 528, [566] = 566, [567] = 567, [568] = 568, [569] = 569, - [570] = 518, + [570] = 570, [571] = 571, [572] = 572, [573] = 573, [574] = 574, - [575] = 575, + [575] = 528, [576] = 576, [577] = 577, [578] = 578, @@ -4371,7 +4378,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [587] = 587, [588] = 588, [589] = 589, - [590] = 518, + [590] = 590, [591] = 591, [592] = 592, [593] = 593, @@ -4382,7 +4389,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [598] = 598, [599] = 599, [600] = 600, - [601] = 601, + [601] = 528, [602] = 602, [603] = 603, [604] = 604, @@ -4746,7 +4753,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 962, [963] = 963, [964] = 964, - [965] = 962, + [965] = 965, [966] = 966, [967] = 967, [968] = 968, @@ -4762,7 +4769,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [978] = 978, [979] = 979, [980] = 980, - [981] = 981, + [981] = 979, [982] = 982, [983] = 983, [984] = 984, @@ -5195,7 +5202,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1239, + [1414] = 1414, [1415] = 1415, [1416] = 1416, [1417] = 1417, @@ -5215,7 +5222,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1431] = 1431, [1432] = 1432, [1433] = 1433, - [1434] = 1434, + [1434] = 1315, [1435] = 1435, [1436] = 1436, [1437] = 1437, @@ -5921,6 +5928,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2137] = 2137, [2138] = 2138, [2139] = 2139, + [2140] = 2140, + [2141] = 2141, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8404,17 +8413,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 48}, [467] = {.lex_state = 48}, [468] = {.lex_state = 48}, - [469] = {.lex_state = 48}, + [469] = {.lex_state = 10}, [470] = {.lex_state = 10}, [471] = {.lex_state = 10}, [472] = {.lex_state = 10}, - [473] = {.lex_state = 48}, + [473] = {.lex_state = 10}, [474] = {.lex_state = 10}, [475] = {.lex_state = 10}, - [476] = {.lex_state = 10}, + [476] = {.lex_state = 48}, [477] = {.lex_state = 10}, [478] = {.lex_state = 10}, - [479] = {.lex_state = 48}, + [479] = {.lex_state = 10}, [480] = {.lex_state = 10}, [481] = {.lex_state = 10}, [482] = {.lex_state = 10}, @@ -8423,13 +8432,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [485] = {.lex_state = 10}, [486] = {.lex_state = 10}, [487] = {.lex_state = 10}, - [488] = {.lex_state = 10}, + [488] = {.lex_state = 48}, [489] = {.lex_state = 10}, [490] = {.lex_state = 10}, [491] = {.lex_state = 10}, [492] = {.lex_state = 10}, [493] = {.lex_state = 10}, - [494] = {.lex_state = 10}, + [494] = {.lex_state = 48}, [495] = {.lex_state = 48}, [496] = {.lex_state = 48}, [497] = {.lex_state = 48}, @@ -8438,8 +8447,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [500] = {.lex_state = 48}, [501] = {.lex_state = 48}, [502] = {.lex_state = 48}, - [503] = {.lex_state = 10}, - [504] = {.lex_state = 10}, + [503] = {.lex_state = 48}, + [504] = {.lex_state = 48}, [505] = {.lex_state = 48}, [506] = {.lex_state = 48}, [507] = {.lex_state = 48}, @@ -8449,27 +8458,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [511] = {.lex_state = 48}, [512] = {.lex_state = 48}, [513] = {.lex_state = 48}, - [514] = {.lex_state = 48}, + [514] = {.lex_state = 10}, [515] = {.lex_state = 48}, [516] = {.lex_state = 48}, [517] = {.lex_state = 48}, - [518] = {.lex_state = 10}, + [518] = {.lex_state = 48}, [519] = {.lex_state = 48}, [520] = {.lex_state = 48}, - [521] = {.lex_state = 10}, + [521] = {.lex_state = 48}, [522] = {.lex_state = 48}, [523] = {.lex_state = 48}, [524] = {.lex_state = 48}, [525] = {.lex_state = 48}, - [526] = {.lex_state = 48}, + [526] = {.lex_state = 10}, [527] = {.lex_state = 48}, - [528] = {.lex_state = 48}, + [528] = {.lex_state = 10}, [529] = {.lex_state = 48}, [530] = {.lex_state = 48}, - [531] = {.lex_state = 48}, + [531] = {.lex_state = 10}, [532] = {.lex_state = 48}, [533] = {.lex_state = 48}, - [534] = {.lex_state = 48}, + [534] = {.lex_state = 10}, [535] = {.lex_state = 10}, [536] = {.lex_state = 10}, [537] = {.lex_state = 10}, @@ -8481,74 +8490,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [543] = {.lex_state = 10}, [544] = {.lex_state = 10}, [545] = {.lex_state = 10}, - [546] = {.lex_state = 48}, - [547] = {.lex_state = 48}, + [546] = {.lex_state = 10}, + [547] = {.lex_state = 10}, [548] = {.lex_state = 10}, [549] = {.lex_state = 10}, [550] = {.lex_state = 10}, - [551] = {.lex_state = 10}, - [552] = {.lex_state = 48}, - [553] = {.lex_state = 10}, - [554] = {.lex_state = 48}, + [551] = {.lex_state = 48}, + [552] = {.lex_state = 10}, + [553] = {.lex_state = 48}, + [554] = {.lex_state = 10}, [555] = {.lex_state = 10}, [556] = {.lex_state = 10}, [557] = {.lex_state = 10}, - [558] = {.lex_state = 48}, - [559] = {.lex_state = 11}, - [560] = {.lex_state = 11}, - [561] = {.lex_state = 11}, - [562] = {.lex_state = 11}, + [558] = {.lex_state = 10}, + [559] = {.lex_state = 10}, + [560] = {.lex_state = 48}, + [561] = {.lex_state = 48}, + [562] = {.lex_state = 10}, [563] = {.lex_state = 10}, - [564] = {.lex_state = 11}, - [565] = {.lex_state = 48}, - [566] = {.lex_state = 48}, - [567] = {.lex_state = 48}, + [564] = {.lex_state = 48}, + [565] = {.lex_state = 10}, + [566] = {.lex_state = 11}, + [567] = {.lex_state = 11}, [568] = {.lex_state = 11}, - [569] = {.lex_state = 48}, - [570] = {.lex_state = 10}, + [569] = {.lex_state = 11}, + [570] = {.lex_state = 11}, [571] = {.lex_state = 48}, [572] = {.lex_state = 48}, [573] = {.lex_state = 48}, - [574] = {.lex_state = 48}, - [575] = {.lex_state = 7}, + [574] = {.lex_state = 11}, + [575] = {.lex_state = 10}, [576] = {.lex_state = 48}, - [577] = {.lex_state = 10}, - [578] = {.lex_state = 11}, - [579] = {.lex_state = 11}, - [580] = {.lex_state = 10}, - [581] = {.lex_state = 10}, - [582] = {.lex_state = 10}, + [577] = {.lex_state = 48}, + [578] = {.lex_state = 48}, + [579] = {.lex_state = 48}, + [580] = {.lex_state = 48}, + [581] = {.lex_state = 7}, + [582] = {.lex_state = 48}, [583] = {.lex_state = 10}, - [584] = {.lex_state = 48}, - [585] = {.lex_state = 10}, - [586] = {.lex_state = 48}, - [587] = {.lex_state = 48}, - [588] = {.lex_state = 48}, - [589] = {.lex_state = 48}, + [584] = {.lex_state = 11}, + [585] = {.lex_state = 11}, + [586] = {.lex_state = 10}, + [587] = {.lex_state = 10}, + [588] = {.lex_state = 10}, + [589] = {.lex_state = 10}, [590] = {.lex_state = 10}, [591] = {.lex_state = 48}, [592] = {.lex_state = 48}, [593] = {.lex_state = 48}, - [594] = {.lex_state = 10}, + [594] = {.lex_state = 48}, [595] = {.lex_state = 48}, [596] = {.lex_state = 48}, - [597] = {.lex_state = 48}, + [597] = {.lex_state = 10}, [598] = {.lex_state = 48}, [599] = {.lex_state = 48}, [600] = {.lex_state = 48}, - [601] = {.lex_state = 48}, + [601] = {.lex_state = 10}, [602] = {.lex_state = 48}, [603] = {.lex_state = 48}, [604] = {.lex_state = 48}, - [605] = {.lex_state = 10}, - [606] = {.lex_state = 48}, - [607] = {.lex_state = 11}, + [605] = {.lex_state = 48}, + [606] = {.lex_state = 11}, + [607] = {.lex_state = 48}, [608] = {.lex_state = 48}, [609] = {.lex_state = 48}, [610] = {.lex_state = 48}, [611] = {.lex_state = 48}, [612] = {.lex_state = 48}, - [613] = {.lex_state = 48}, + [613] = {.lex_state = 10}, [614] = {.lex_state = 48}, [615] = {.lex_state = 48}, [616] = {.lex_state = 48}, @@ -8610,22 +8619,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 48}, [673] = {.lex_state = 48}, [674] = {.lex_state = 48}, - [675] = {.lex_state = 48}, - [676] = {.lex_state = 11}, + [675] = {.lex_state = 11}, + [676] = {.lex_state = 48}, [677] = {.lex_state = 48}, [678] = {.lex_state = 48}, [679] = {.lex_state = 48}, - [680] = {.lex_state = 10}, + [680] = {.lex_state = 48}, [681] = {.lex_state = 48}, [682] = {.lex_state = 48}, [683] = {.lex_state = 48}, - [684] = {.lex_state = 48}, + [684] = {.lex_state = 10}, [685] = {.lex_state = 48}, [686] = {.lex_state = 48}, [687] = {.lex_state = 48}, [688] = {.lex_state = 48}, [689] = {.lex_state = 48}, - [690] = {.lex_state = 10}, + [690] = {.lex_state = 48}, [691] = {.lex_state = 48}, [692] = {.lex_state = 48}, [693] = {.lex_state = 48}, @@ -8638,7 +8647,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [700] = {.lex_state = 48}, [701] = {.lex_state = 48}, [702] = {.lex_state = 48}, - [703] = {.lex_state = 48}, + [703] = {.lex_state = 10}, [704] = {.lex_state = 48}, [705] = {.lex_state = 48}, [706] = {.lex_state = 48}, @@ -8741,18 +8750,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [803] = {.lex_state = 48}, [804] = {.lex_state = 48}, [805] = {.lex_state = 48}, - [806] = {.lex_state = 11}, + [806] = {.lex_state = 48}, [807] = {.lex_state = 48}, [808] = {.lex_state = 48}, [809] = {.lex_state = 48}, - [810] = {.lex_state = 48}, + [810] = {.lex_state = 11}, [811] = {.lex_state = 48}, [812] = {.lex_state = 48}, [813] = {.lex_state = 48}, [814] = {.lex_state = 48}, - [815] = {.lex_state = 48}, + [815] = {.lex_state = 11}, [816] = {.lex_state = 48}, - [817] = {.lex_state = 11}, + [817] = {.lex_state = 48}, [818] = {.lex_state = 48}, [819] = {.lex_state = 48}, [820] = {.lex_state = 48}, @@ -8766,9 +8775,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 48}, [829] = {.lex_state = 48}, [830] = {.lex_state = 48}, - [831] = {.lex_state = 48}, + [831] = {.lex_state = 11}, [832] = {.lex_state = 48}, - [833] = {.lex_state = 10}, + [833] = {.lex_state = 48}, [834] = {.lex_state = 48}, [835] = {.lex_state = 48}, [836] = {.lex_state = 48}, @@ -8781,16 +8790,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 48}, [844] = {.lex_state = 48}, [845] = {.lex_state = 48}, - [846] = {.lex_state = 48}, + [846] = {.lex_state = 11}, [847] = {.lex_state = 48}, [848] = {.lex_state = 48}, - [849] = {.lex_state = 11}, - [850] = {.lex_state = 11}, + [849] = {.lex_state = 48}, + [850] = {.lex_state = 48}, [851] = {.lex_state = 48}, [852] = {.lex_state = 48}, [853] = {.lex_state = 48}, [854] = {.lex_state = 48}, - [855] = {.lex_state = 48}, + [855] = {.lex_state = 11}, [856] = {.lex_state = 48}, [857] = {.lex_state = 48}, [858] = {.lex_state = 48}, @@ -8798,20 +8807,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [860] = {.lex_state = 48}, [861] = {.lex_state = 48}, [862] = {.lex_state = 48}, - [863] = {.lex_state = 11}, + [863] = {.lex_state = 48}, [864] = {.lex_state = 48}, [865] = {.lex_state = 48}, [866] = {.lex_state = 48}, [867] = {.lex_state = 48}, - [868] = {.lex_state = 10}, + [868] = {.lex_state = 48}, [869] = {.lex_state = 48}, - [870] = {.lex_state = 48}, - [871] = {.lex_state = 48}, + [870] = {.lex_state = 10}, + [871] = {.lex_state = 10}, [872] = {.lex_state = 48}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 48}, - [876] = {.lex_state = 48}, + [873] = {.lex_state = 48}, + [874] = {.lex_state = 48}, + [875] = {.lex_state = 0}, + [876] = {.lex_state = 0}, [877] = {.lex_state = 48}, [878] = {.lex_state = 48}, [879] = {.lex_state = 48}, @@ -8825,18 +8834,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [887] = {.lex_state = 48}, [888] = {.lex_state = 48}, [889] = {.lex_state = 48}, - [890] = {.lex_state = 11}, - [891] = {.lex_state = 11}, + [890] = {.lex_state = 48}, + [891] = {.lex_state = 48}, [892] = {.lex_state = 48}, - [893] = {.lex_state = 48}, - [894] = {.lex_state = 48}, + [893] = {.lex_state = 11}, + [894] = {.lex_state = 11}, [895] = {.lex_state = 11}, [896] = {.lex_state = 11}, - [897] = {.lex_state = 11}, - [898] = {.lex_state = 11}, + [897] = {.lex_state = 48}, + [898] = {.lex_state = 48}, [899] = {.lex_state = 11}, [900] = {.lex_state = 11}, - [901] = {.lex_state = 11}, + [901] = {.lex_state = 48}, [902] = {.lex_state = 11}, [903] = {.lex_state = 11}, [904] = {.lex_state = 11}, @@ -8851,8 +8860,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [913] = {.lex_state = 11}, [914] = {.lex_state = 11}, [915] = {.lex_state = 11}, - [916] = {.lex_state = 48}, - [917] = {.lex_state = 48}, + [916] = {.lex_state = 11}, + [917] = {.lex_state = 11}, [918] = {.lex_state = 11}, [919] = {.lex_state = 48}, [920] = {.lex_state = 48}, @@ -8860,22 +8869,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [922] = {.lex_state = 48}, [923] = {.lex_state = 48}, [924] = {.lex_state = 48}, - [925] = {.lex_state = 11}, + [925] = {.lex_state = 48}, [926] = {.lex_state = 48}, - [927] = {.lex_state = 48}, + [927] = {.lex_state = 11}, [928] = {.lex_state = 48}, [929] = {.lex_state = 48}, - [930] = {.lex_state = 48}, + [930] = {.lex_state = 11}, [931] = {.lex_state = 48}, [932] = {.lex_state = 48}, [933] = {.lex_state = 48}, - [934] = {.lex_state = 48}, + [934] = {.lex_state = 11}, [935] = {.lex_state = 48}, - [936] = {.lex_state = 48}, + [936] = {.lex_state = 11}, [937] = {.lex_state = 48}, [938] = {.lex_state = 48}, [939] = {.lex_state = 48}, - [940] = {.lex_state = 48}, + [940] = {.lex_state = 11}, [941] = {.lex_state = 48}, [942] = {.lex_state = 48}, [943] = {.lex_state = 48}, @@ -8884,71 +8893,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [946] = {.lex_state = 48}, [947] = {.lex_state = 48}, [948] = {.lex_state = 48}, - [949] = {.lex_state = 11}, + [949] = {.lex_state = 48}, [950] = {.lex_state = 48}, - [951] = {.lex_state = 11}, + [951] = {.lex_state = 48}, [952] = {.lex_state = 48}, - [953] = {.lex_state = 11}, + [953] = {.lex_state = 48}, [954] = {.lex_state = 48}, [955] = {.lex_state = 48}, [956] = {.lex_state = 48}, [957] = {.lex_state = 48}, [958] = {.lex_state = 48}, - [959] = {.lex_state = 11}, + [959] = {.lex_state = 48}, [960] = {.lex_state = 48}, [961] = {.lex_state = 48}, - [962] = {.lex_state = 10}, + [962] = {.lex_state = 48}, [963] = {.lex_state = 48}, [964] = {.lex_state = 11}, - [965] = {.lex_state = 0}, + [965] = {.lex_state = 11}, [966] = {.lex_state = 48}, [967] = {.lex_state = 48}, - [968] = {.lex_state = 48}, + [968] = {.lex_state = 10}, [969] = {.lex_state = 48}, [970] = {.lex_state = 11}, - [971] = {.lex_state = 11}, + [971] = {.lex_state = 48}, [972] = {.lex_state = 11}, - [973] = {.lex_state = 11}, + [973] = {.lex_state = 48}, [974] = {.lex_state = 11}, [975] = {.lex_state = 11}, [976] = {.lex_state = 48}, - [977] = {.lex_state = 11}, + [977] = {.lex_state = 10}, [978] = {.lex_state = 11}, - [979] = {.lex_state = 48}, + [979] = {.lex_state = 10}, [980] = {.lex_state = 48}, - [981] = {.lex_state = 48}, - [982] = {.lex_state = 48}, - [983] = {.lex_state = 10}, - [984] = {.lex_state = 48}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 11}, - [987] = {.lex_state = 11}, - [988] = {.lex_state = 48}, - [989] = {.lex_state = 11}, - [990] = {.lex_state = 48}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 48}, + [984] = {.lex_state = 11}, + [985] = {.lex_state = 48}, + [986] = {.lex_state = 48}, + [987] = {.lex_state = 48}, + [988] = {.lex_state = 11}, + [989] = {.lex_state = 48}, + [990] = {.lex_state = 11}, [991] = {.lex_state = 48}, - [992] = {.lex_state = 11}, - [993] = {.lex_state = 11}, - [994] = {.lex_state = 48}, + [992] = {.lex_state = 48}, + [993] = {.lex_state = 48}, + [994] = {.lex_state = 11}, [995] = {.lex_state = 48}, - [996] = {.lex_state = 11}, - [997] = {.lex_state = 48}, - [998] = {.lex_state = 48}, - [999] = {.lex_state = 48}, - [1000] = {.lex_state = 11}, - [1001] = {.lex_state = 10}, + [996] = {.lex_state = 48}, + [997] = {.lex_state = 11}, + [998] = {.lex_state = 11}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 48}, + [1001] = {.lex_state = 48}, [1002] = {.lex_state = 48}, - [1003] = {.lex_state = 48}, + [1003] = {.lex_state = 11}, [1004] = {.lex_state = 48}, - [1005] = {.lex_state = 11}, - [1006] = {.lex_state = 48}, - [1007] = {.lex_state = 48}, - [1008] = {.lex_state = 11}, + [1005] = {.lex_state = 48}, + [1006] = {.lex_state = 11}, + [1007] = {.lex_state = 11}, + [1008] = {.lex_state = 48}, [1009] = {.lex_state = 48}, - [1010] = {.lex_state = 48}, + [1010] = {.lex_state = 11}, [1011] = {.lex_state = 48}, - [1012] = {.lex_state = 11}, - [1013] = {.lex_state = 48}, + [1012] = {.lex_state = 48}, + [1013] = {.lex_state = 11}, [1014] = {.lex_state = 48}, [1015] = {.lex_state = 48}, [1016] = {.lex_state = 48}, @@ -8958,136 +8967,136 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1020] = {.lex_state = 48}, [1021] = {.lex_state = 48}, [1022] = {.lex_state = 48}, - [1023] = {.lex_state = 11}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, + [1023] = {.lex_state = 48}, + [1024] = {.lex_state = 10}, + [1025] = {.lex_state = 48}, [1026] = {.lex_state = 48}, [1027] = {.lex_state = 48}, [1028] = {.lex_state = 48}, [1029] = {.lex_state = 48}, [1030] = {.lex_state = 48}, [1031] = {.lex_state = 48}, - [1032] = {.lex_state = 48}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 11}, + [1032] = {.lex_state = 11}, + [1033] = {.lex_state = 48}, + [1034] = {.lex_state = 48}, [1035] = {.lex_state = 48}, [1036] = {.lex_state = 48}, - [1037] = {.lex_state = 11}, - [1038] = {.lex_state = 10}, + [1037] = {.lex_state = 48}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 48}, [1040] = {.lex_state = 48}, - [1041] = {.lex_state = 48}, - [1042] = {.lex_state = 48}, - [1043] = {.lex_state = 48}, + [1041] = {.lex_state = 11}, + [1042] = {.lex_state = 11}, + [1043] = {.lex_state = 11}, [1044] = {.lex_state = 48}, [1045] = {.lex_state = 48}, - [1046] = {.lex_state = 48}, - [1047] = {.lex_state = 10}, - [1048] = {.lex_state = 10}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 48}, + [1048] = {.lex_state = 0}, [1049] = {.lex_state = 48}, - [1050] = {.lex_state = 10}, + [1050] = {.lex_state = 48}, [1051] = {.lex_state = 48}, - [1052] = {.lex_state = 0}, + [1052] = {.lex_state = 48}, [1053] = {.lex_state = 48}, [1054] = {.lex_state = 48}, - [1055] = {.lex_state = 48}, - [1056] = {.lex_state = 10}, + [1055] = {.lex_state = 11}, + [1056] = {.lex_state = 48}, [1057] = {.lex_state = 48}, - [1058] = {.lex_state = 48}, + [1058] = {.lex_state = 11}, [1059] = {.lex_state = 48}, - [1060] = {.lex_state = 48}, - [1061] = {.lex_state = 48}, - [1062] = {.lex_state = 48}, - [1063] = {.lex_state = 0}, + [1060] = {.lex_state = 11}, + [1061] = {.lex_state = 10}, + [1062] = {.lex_state = 10}, + [1063] = {.lex_state = 10}, [1064] = {.lex_state = 48}, - [1065] = {.lex_state = 10}, + [1065] = {.lex_state = 48}, [1066] = {.lex_state = 48}, [1067] = {.lex_state = 10}, - [1068] = {.lex_state = 10}, - [1069] = {.lex_state = 11}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 10}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 10}, + [1070] = {.lex_state = 10}, + [1071] = {.lex_state = 48}, [1072] = {.lex_state = 48}, - [1073] = {.lex_state = 11}, - [1074] = {.lex_state = 48}, - [1075] = {.lex_state = 11}, - [1076] = {.lex_state = 11}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 10}, + [1075] = {.lex_state = 10}, + [1076] = {.lex_state = 10}, [1077] = {.lex_state = 11}, [1078] = {.lex_state = 48}, [1079] = {.lex_state = 48}, - [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 10}, - [1082] = {.lex_state = 48}, - [1083] = {.lex_state = 10}, + [1080] = {.lex_state = 48}, + [1081] = {.lex_state = 48}, + [1082] = {.lex_state = 10}, + [1083] = {.lex_state = 48}, [1084] = {.lex_state = 48}, [1085] = {.lex_state = 48}, - [1086] = {.lex_state = 11}, + [1086] = {.lex_state = 48}, [1087] = {.lex_state = 48}, - [1088] = {.lex_state = 48}, + [1088] = {.lex_state = 10}, [1089] = {.lex_state = 10}, - [1090] = {.lex_state = 48}, - [1091] = {.lex_state = 48}, - [1092] = {.lex_state = 11}, + [1090] = {.lex_state = 10}, + [1091] = {.lex_state = 10}, + [1092] = {.lex_state = 48}, [1093] = {.lex_state = 48}, [1094] = {.lex_state = 10}, [1095] = {.lex_state = 10}, [1096] = {.lex_state = 48}, - [1097] = {.lex_state = 0}, + [1097] = {.lex_state = 10}, [1098] = {.lex_state = 48}, - [1099] = {.lex_state = 10}, + [1099] = {.lex_state = 48}, [1100] = {.lex_state = 48}, - [1101] = {.lex_state = 48}, - [1102] = {.lex_state = 10}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 48}, + [1101] = {.lex_state = 11}, + [1102] = {.lex_state = 48}, + [1103] = {.lex_state = 48}, + [1104] = {.lex_state = 48}, + [1105] = {.lex_state = 11}, [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 48}, [1109] = {.lex_state = 10}, [1110] = {.lex_state = 48}, - [1111] = {.lex_state = 48}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 48}, [1113] = {.lex_state = 48}, [1114] = {.lex_state = 48}, [1115] = {.lex_state = 48}, - [1116] = {.lex_state = 10}, + [1116] = {.lex_state = 48}, [1117] = {.lex_state = 48}, - [1118] = {.lex_state = 48}, + [1118] = {.lex_state = 10}, [1119] = {.lex_state = 48}, [1120] = {.lex_state = 48}, - [1121] = {.lex_state = 11}, + [1121] = {.lex_state = 48}, [1122] = {.lex_state = 48}, - [1123] = {.lex_state = 48}, - [1124] = {.lex_state = 48}, - [1125] = {.lex_state = 11}, + [1123] = {.lex_state = 0}, + [1124] = {.lex_state = 10}, + [1125] = {.lex_state = 48}, [1126] = {.lex_state = 48}, [1127] = {.lex_state = 48}, - [1128] = {.lex_state = 48}, - [1129] = {.lex_state = 48}, - [1130] = {.lex_state = 10}, + [1128] = {.lex_state = 11}, + [1129] = {.lex_state = 10}, + [1130] = {.lex_state = 11}, [1131] = {.lex_state = 48}, - [1132] = {.lex_state = 48}, - [1133] = {.lex_state = 48}, + [1132] = {.lex_state = 10}, + [1133] = {.lex_state = 10}, [1134] = {.lex_state = 48}, [1135] = {.lex_state = 48}, - [1136] = {.lex_state = 11}, + [1136] = {.lex_state = 48}, [1137] = {.lex_state = 48}, [1138] = {.lex_state = 48}, [1139] = {.lex_state = 48}, [1140] = {.lex_state = 48}, [1141] = {.lex_state = 48}, - [1142] = {.lex_state = 0}, + [1142] = {.lex_state = 48}, [1143] = {.lex_state = 48}, [1144] = {.lex_state = 48}, - [1145] = {.lex_state = 48}, - [1146] = {.lex_state = 48}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 11}, [1147] = {.lex_state = 48}, - [1148] = {.lex_state = 48}, + [1148] = {.lex_state = 11}, [1149] = {.lex_state = 48}, [1150] = {.lex_state = 48}, [1151] = {.lex_state = 48}, - [1152] = {.lex_state = 0}, + [1152] = {.lex_state = 48}, [1153] = {.lex_state = 48}, [1154] = {.lex_state = 48}, [1155] = {.lex_state = 48}, @@ -9096,7 +9105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1158] = {.lex_state = 48}, [1159] = {.lex_state = 48}, [1160] = {.lex_state = 48}, - [1161] = {.lex_state = 48}, + [1161] = {.lex_state = 0}, [1162] = {.lex_state = 48}, [1163] = {.lex_state = 48}, [1164] = {.lex_state = 48}, @@ -9113,179 +9122,179 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1175] = {.lex_state = 48}, [1176] = {.lex_state = 48}, [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, + [1178] = {.lex_state = 48}, + [1179] = {.lex_state = 48}, [1180] = {.lex_state = 48}, [1181] = {.lex_state = 48}, [1182] = {.lex_state = 48}, - [1183] = {.lex_state = 0}, + [1183] = {.lex_state = 48}, [1184] = {.lex_state = 48}, [1185] = {.lex_state = 48}, [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 11}, + [1187] = {.lex_state = 48}, [1188] = {.lex_state = 48}, [1189] = {.lex_state = 48}, - [1190] = {.lex_state = 48}, + [1190] = {.lex_state = 0}, [1191] = {.lex_state = 48}, [1192] = {.lex_state = 48}, - [1193] = {.lex_state = 0}, + [1193] = {.lex_state = 48}, [1194] = {.lex_state = 48}, [1195] = {.lex_state = 48}, [1196] = {.lex_state = 48}, [1197] = {.lex_state = 48}, - [1198] = {.lex_state = 48}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 48}, [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 48}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 48}, [1203] = {.lex_state = 48}, [1204] = {.lex_state = 48}, [1205] = {.lex_state = 48}, [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 48}, + [1207] = {.lex_state = 0}, [1208] = {.lex_state = 48}, [1209] = {.lex_state = 48}, - [1210] = {.lex_state = 48}, - [1211] = {.lex_state = 0}, + [1210] = {.lex_state = 0}, + [1211] = {.lex_state = 48}, [1212] = {.lex_state = 48}, [1213] = {.lex_state = 48}, [1214] = {.lex_state = 48}, [1215] = {.lex_state = 48}, - [1216] = {.lex_state = 48}, + [1216] = {.lex_state = 0}, [1217] = {.lex_state = 48}, - [1218] = {.lex_state = 0}, + [1218] = {.lex_state = 48}, [1219] = {.lex_state = 48}, [1220] = {.lex_state = 0}, [1221] = {.lex_state = 48}, - [1222] = {.lex_state = 0}, + [1222] = {.lex_state = 48}, [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 48}, - [1225] = {.lex_state = 48}, + [1224] = {.lex_state = 0}, + [1225] = {.lex_state = 0}, [1226] = {.lex_state = 48}, [1227] = {.lex_state = 48}, - [1228] = {.lex_state = 48}, - [1229] = {.lex_state = 0}, + [1228] = {.lex_state = 0}, + [1229] = {.lex_state = 48}, [1230] = {.lex_state = 48}, - [1231] = {.lex_state = 0}, + [1231] = {.lex_state = 48}, [1232] = {.lex_state = 48}, - [1233] = {.lex_state = 0}, + [1233] = {.lex_state = 48}, [1234] = {.lex_state = 48}, - [1235] = {.lex_state = 48}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 48}, - [1237] = {.lex_state = 48}, + [1237] = {.lex_state = 0}, [1238] = {.lex_state = 48}, - [1239] = {.lex_state = 0}, + [1239] = {.lex_state = 48}, [1240] = {.lex_state = 48}, [1241] = {.lex_state = 48}, - [1242] = {.lex_state = 0}, + [1242] = {.lex_state = 48}, [1243] = {.lex_state = 48}, - [1244] = {.lex_state = 0}, + [1244] = {.lex_state = 48}, [1245] = {.lex_state = 48}, [1246] = {.lex_state = 48}, - [1247] = {.lex_state = 48}, + [1247] = {.lex_state = 0}, [1248] = {.lex_state = 48}, [1249] = {.lex_state = 48}, [1250] = {.lex_state = 48}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 48}, + [1251] = {.lex_state = 48}, + [1252] = {.lex_state = 48}, + [1253] = {.lex_state = 0}, [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 48}, + [1255] = {.lex_state = 0}, [1256] = {.lex_state = 48}, [1257] = {.lex_state = 0}, [1258] = {.lex_state = 48}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 48}, + [1259] = {.lex_state = 48}, + [1260] = {.lex_state = 0}, [1261] = {.lex_state = 0}, [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 48}, + [1263] = {.lex_state = 48}, + [1264] = {.lex_state = 0}, [1265] = {.lex_state = 0}, [1266] = {.lex_state = 48}, - [1267] = {.lex_state = 48}, + [1267] = {.lex_state = 0}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, + [1269] = {.lex_state = 48}, [1270] = {.lex_state = 48}, - [1271] = {.lex_state = 0}, + [1271] = {.lex_state = 48}, [1272] = {.lex_state = 48}, - [1273] = {.lex_state = 48}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1275] = {.lex_state = 48}, + [1276] = {.lex_state = 48}, [1277] = {.lex_state = 48}, [1278] = {.lex_state = 48}, - [1279] = {.lex_state = 48}, + [1279] = {.lex_state = 0}, [1280] = {.lex_state = 48}, - [1281] = {.lex_state = 48}, + [1281] = {.lex_state = 0}, [1282] = {.lex_state = 48}, [1283] = {.lex_state = 48}, [1284] = {.lex_state = 48}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 48}, - [1287] = {.lex_state = 0}, + [1285] = {.lex_state = 48}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 48}, [1288] = {.lex_state = 48}, [1289] = {.lex_state = 48}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 48}, + [1290] = {.lex_state = 48}, + [1291] = {.lex_state = 48}, + [1292] = {.lex_state = 0}, [1293] = {.lex_state = 48}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, + [1294] = {.lex_state = 48}, + [1295] = {.lex_state = 48}, [1296] = {.lex_state = 48}, - [1297] = {.lex_state = 0}, + [1297] = {.lex_state = 48}, [1298] = {.lex_state = 48}, [1299] = {.lex_state = 48}, - [1300] = {.lex_state = 0}, + [1300] = {.lex_state = 48}, [1301] = {.lex_state = 48}, [1302] = {.lex_state = 48}, [1303] = {.lex_state = 0}, [1304] = {.lex_state = 48}, [1305] = {.lex_state = 48}, - [1306] = {.lex_state = 48}, + [1306] = {.lex_state = 0}, [1307] = {.lex_state = 48}, [1308] = {.lex_state = 48}, [1309] = {.lex_state = 48}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 48}, + [1310] = {.lex_state = 48}, + [1311] = {.lex_state = 0}, [1312] = {.lex_state = 48}, [1313] = {.lex_state = 48}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 48}, [1315] = {.lex_state = 48}, [1316] = {.lex_state = 48}, - [1317] = {.lex_state = 48}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 48}, [1319] = {.lex_state = 48}, [1320] = {.lex_state = 48}, [1321] = {.lex_state = 48}, - [1322] = {.lex_state = 48}, - [1323] = {.lex_state = 0}, + [1322] = {.lex_state = 0}, + [1323] = {.lex_state = 48}, [1324] = {.lex_state = 48}, [1325] = {.lex_state = 48}, [1326] = {.lex_state = 48}, [1327] = {.lex_state = 48}, - [1328] = {.lex_state = 48}, + [1328] = {.lex_state = 0}, [1329] = {.lex_state = 48}, [1330] = {.lex_state = 48}, [1331] = {.lex_state = 48}, - [1332] = {.lex_state = 48}, + [1332] = {.lex_state = 0}, [1333] = {.lex_state = 48}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 48}, + [1334] = {.lex_state = 48}, + [1335] = {.lex_state = 48}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 48}, - [1338] = {.lex_state = 48}, - [1339] = {.lex_state = 48}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 48}, - [1343] = {.lex_state = 48}, + [1341] = {.lex_state = 48}, + [1342] = {.lex_state = 0}, + [1343] = {.lex_state = 0}, [1344] = {.lex_state = 48}, [1345] = {.lex_state = 48}, - [1346] = {.lex_state = 48}, + [1346] = {.lex_state = 0}, [1347] = {.lex_state = 48}, [1348] = {.lex_state = 48}, [1349] = {.lex_state = 48}, - [1350] = {.lex_state = 0}, + [1350] = {.lex_state = 48}, [1351] = {.lex_state = 0}, [1352] = {.lex_state = 48}, [1353] = {.lex_state = 48}, @@ -9293,11 +9302,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1355] = {.lex_state = 48}, [1356] = {.lex_state = 48}, [1357] = {.lex_state = 48}, - [1358] = {.lex_state = 0}, + [1358] = {.lex_state = 48}, [1359] = {.lex_state = 48}, [1360] = {.lex_state = 48}, [1361] = {.lex_state = 48}, - [1362] = {.lex_state = 48}, + [1362] = {.lex_state = 0}, [1363] = {.lex_state = 48}, [1364] = {.lex_state = 48}, [1365] = {.lex_state = 48}, @@ -9310,7 +9319,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1372] = {.lex_state = 0}, [1373] = {.lex_state = 48}, [1374] = {.lex_state = 48}, - [1375] = {.lex_state = 0}, + [1375] = {.lex_state = 48}, [1376] = {.lex_state = 48}, [1377] = {.lex_state = 48}, [1378] = {.lex_state = 48}, @@ -9318,86 +9327,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1380] = {.lex_state = 48}, [1381] = {.lex_state = 48}, [1382] = {.lex_state = 48}, - [1383] = {.lex_state = 0}, + [1383] = {.lex_state = 48}, [1384] = {.lex_state = 48}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 48}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, + [1385] = {.lex_state = 48}, + [1386] = {.lex_state = 0}, + [1387] = {.lex_state = 48}, + [1388] = {.lex_state = 48}, [1389] = {.lex_state = 48}, - [1390] = {.lex_state = 0}, + [1390] = {.lex_state = 48}, [1391] = {.lex_state = 48}, [1392] = {.lex_state = 48}, [1393] = {.lex_state = 48}, [1394] = {.lex_state = 48}, [1395] = {.lex_state = 48}, [1396] = {.lex_state = 48}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 48}, + [1397] = {.lex_state = 48}, + [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 48}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, + [1400] = {.lex_state = 0}, + [1401] = {.lex_state = 48}, + [1402] = {.lex_state = 48}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 48}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 48}, [1406] = {.lex_state = 48}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 48}, - [1410] = {.lex_state = 48}, + [1407] = {.lex_state = 48}, + [1408] = {.lex_state = 48}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, [1411] = {.lex_state = 48}, - [1412] = {.lex_state = 48}, - [1413] = {.lex_state = 48}, + [1412] = {.lex_state = 0}, + [1413] = {.lex_state = 0}, [1414] = {.lex_state = 48}, [1415] = {.lex_state = 48}, [1416] = {.lex_state = 48}, [1417] = {.lex_state = 48}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 48}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 48}, - [1421] = {.lex_state = 48}, + [1421] = {.lex_state = 0}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 48}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 48}, - [1425] = {.lex_state = 0}, + [1425] = {.lex_state = 48}, [1426] = {.lex_state = 48}, [1427] = {.lex_state = 48}, [1428] = {.lex_state = 48}, [1429] = {.lex_state = 0}, [1430] = {.lex_state = 48}, - [1431] = {.lex_state = 48}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 48}, - [1434] = {.lex_state = 48}, - [1435] = {.lex_state = 48}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 48}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 0}, + [1435] = {.lex_state = 0}, [1436] = {.lex_state = 48}, [1437] = {.lex_state = 48}, - [1438] = {.lex_state = 48}, - [1439] = {.lex_state = 48}, + [1438] = {.lex_state = 0}, + [1439] = {.lex_state = 0}, [1440] = {.lex_state = 48}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, + [1442] = {.lex_state = 48}, [1443] = {.lex_state = 48}, [1444] = {.lex_state = 48}, [1445] = {.lex_state = 48}, [1446] = {.lex_state = 48}, - [1447] = {.lex_state = 0}, + [1447] = {.lex_state = 48}, [1448] = {.lex_state = 48}, [1449] = {.lex_state = 48}, [1450] = {.lex_state = 48}, - [1451] = {.lex_state = 48}, + [1451] = {.lex_state = 0}, [1452] = {.lex_state = 48}, [1453] = {.lex_state = 48}, [1454] = {.lex_state = 48}, - [1455] = {.lex_state = 0}, + [1455] = {.lex_state = 48}, [1456] = {.lex_state = 48}, - [1457] = {.lex_state = 48}, + [1457] = {.lex_state = 0}, [1458] = {.lex_state = 48}, [1459] = {.lex_state = 48}, - [1460] = {.lex_state = 48}, - [1461] = {.lex_state = 48}, - [1462] = {.lex_state = 48}, + [1460] = {.lex_state = 0}, + [1461] = {.lex_state = 0}, + [1462] = {.lex_state = 0}, [1463] = {.lex_state = 48}, [1464] = {.lex_state = 48}, [1465] = {.lex_state = 48}, @@ -9405,16 +9414,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 48}, [1468] = {.lex_state = 48}, [1469] = {.lex_state = 48}, - [1470] = {.lex_state = 48}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 0}, [1472] = {.lex_state = 48}, - [1473] = {.lex_state = 0}, + [1473] = {.lex_state = 48}, [1474] = {.lex_state = 48}, [1475] = {.lex_state = 48}, - [1476] = {.lex_state = 0}, + [1476] = {.lex_state = 48}, [1477] = {.lex_state = 48}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, + [1478] = {.lex_state = 48}, + [1479] = {.lex_state = 48}, [1480] = {.lex_state = 48}, [1481] = {.lex_state = 48}, [1482] = {.lex_state = 48}, @@ -9430,10 +9439,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1492] = {.lex_state = 48}, [1493] = {.lex_state = 48}, [1494] = {.lex_state = 48}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, + [1495] = {.lex_state = 48}, + [1496] = {.lex_state = 48}, [1497] = {.lex_state = 48}, - [1498] = {.lex_state = 0}, + [1498] = {.lex_state = 48}, [1499] = {.lex_state = 48}, [1500] = {.lex_state = 48}, [1501] = {.lex_state = 48}, @@ -9443,25 +9452,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1505] = {.lex_state = 48}, [1506] = {.lex_state = 48}, [1507] = {.lex_state = 48}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 48}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 48}, + [1508] = {.lex_state = 48}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 48}, + [1511] = {.lex_state = 0}, [1512] = {.lex_state = 48}, - [1513] = {.lex_state = 48}, - [1514] = {.lex_state = 48}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, [1515] = {.lex_state = 48}, [1516] = {.lex_state = 48}, [1517] = {.lex_state = 48}, [1518] = {.lex_state = 48}, [1519] = {.lex_state = 48}, [1520] = {.lex_state = 48}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, + [1521] = {.lex_state = 48}, + [1522] = {.lex_state = 48}, [1523] = {.lex_state = 48}, [1524] = {.lex_state = 48}, [1525] = {.lex_state = 48}, - [1526] = {.lex_state = 0}, + [1526] = {.lex_state = 48}, [1527] = {.lex_state = 48}, [1528] = {.lex_state = 48}, [1529] = {.lex_state = 48}, @@ -9469,8 +9478,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1531] = {.lex_state = 48}, [1532] = {.lex_state = 48}, [1533] = {.lex_state = 48}, - [1534] = {.lex_state = 48}, - [1535] = {.lex_state = 48}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0}, [1536] = {.lex_state = 48}, [1537] = {.lex_state = 48}, [1538] = {.lex_state = 48}, @@ -9484,92 +9493,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 48}, [1547] = {.lex_state = 48}, [1548] = {.lex_state = 48}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 48}, - [1552] = {.lex_state = 48}, - [1553] = {.lex_state = 48}, + [1549] = {.lex_state = 48}, + [1550] = {.lex_state = 48}, + [1551] = {.lex_state = 0}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, + [1555] = {.lex_state = 48}, [1556] = {.lex_state = 48}, - [1557] = {.lex_state = 48}, + [1557] = {.lex_state = 0}, [1558] = {.lex_state = 0}, [1559] = {.lex_state = 48}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 48}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 48}, - [1564] = {.lex_state = 48}, - [1565] = {.lex_state = 48}, + [1560] = {.lex_state = 48}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 48}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, [1566] = {.lex_state = 48}, [1567] = {.lex_state = 48}, [1568] = {.lex_state = 48}, [1569] = {.lex_state = 48}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 48}, - [1574] = {.lex_state = 48}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 48}, + [1570] = {.lex_state = 48}, + [1571] = {.lex_state = 48}, + [1572] = {.lex_state = 48}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 48}, + [1576] = {.lex_state = 0}, [1577] = {.lex_state = 48}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 48}, + [1578] = {.lex_state = 48}, + [1579] = {.lex_state = 0}, [1580] = {.lex_state = 48}, - [1581] = {.lex_state = 0}, + [1581] = {.lex_state = 48}, [1582] = {.lex_state = 48}, [1583] = {.lex_state = 48}, [1584] = {.lex_state = 48}, - [1585] = {.lex_state = 0}, + [1585] = {.lex_state = 48}, [1586] = {.lex_state = 48}, [1587] = {.lex_state = 48}, [1588] = {.lex_state = 48}, [1589] = {.lex_state = 48}, - [1590] = {.lex_state = 48}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 48}, - [1592] = {.lex_state = 0}, + [1592] = {.lex_state = 48}, [1593] = {.lex_state = 48}, - [1594] = {.lex_state = 0}, + [1594] = {.lex_state = 48}, [1595] = {.lex_state = 48}, [1596] = {.lex_state = 48}, - [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, + [1597] = {.lex_state = 48}, + [1598] = {.lex_state = 48}, [1599] = {.lex_state = 0}, [1600] = {.lex_state = 48}, [1601] = {.lex_state = 48}, [1602] = {.lex_state = 48}, [1603] = {.lex_state = 48}, - [1604] = {.lex_state = 48}, + [1604] = {.lex_state = 0}, [1605] = {.lex_state = 48}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 48}, + [1606] = {.lex_state = 48}, + [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 48}, + [1609] = {.lex_state = 0}, [1610] = {.lex_state = 48}, [1611] = {.lex_state = 0}, [1612] = {.lex_state = 48}, - [1613] = {.lex_state = 48}, - [1614] = {.lex_state = 48}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, [1615] = {.lex_state = 48}, [1616] = {.lex_state = 48}, [1617] = {.lex_state = 48}, [1618] = {.lex_state = 48}, [1619] = {.lex_state = 48}, - [1620] = {.lex_state = 0}, + [1620] = {.lex_state = 48}, [1621] = {.lex_state = 48}, - [1622] = {.lex_state = 0}, + [1622] = {.lex_state = 48}, [1623] = {.lex_state = 48}, [1624] = {.lex_state = 48}, [1625] = {.lex_state = 48}, [1626] = {.lex_state = 48}, - [1627] = {.lex_state = 48}, + [1627] = {.lex_state = 0}, [1628] = {.lex_state = 48}, - [1629] = {.lex_state = 0}, + [1629] = {.lex_state = 48}, [1630] = {.lex_state = 48}, [1631] = {.lex_state = 48}, - [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 48}, - [1634] = {.lex_state = 48}, + [1632] = {.lex_state = 48}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, [1635] = {.lex_state = 48}, [1636] = {.lex_state = 48}, [1637] = {.lex_state = 48}, @@ -9577,25 +9586,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1639] = {.lex_state = 48}, [1640] = {.lex_state = 0}, [1641] = {.lex_state = 48}, - [1642] = {.lex_state = 48}, + [1642] = {.lex_state = 0}, [1643] = {.lex_state = 48}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 48}, + [1644] = {.lex_state = 48}, + [1645] = {.lex_state = 0}, [1646] = {.lex_state = 48}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 48}, + [1647] = {.lex_state = 48}, + [1648] = {.lex_state = 0}, [1649] = {.lex_state = 0}, [1650] = {.lex_state = 48}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, + [1651] = {.lex_state = 48}, + [1652] = {.lex_state = 48}, + [1653] = {.lex_state = 48}, [1654] = {.lex_state = 48}, [1655] = {.lex_state = 48}, [1656] = {.lex_state = 48}, [1657] = {.lex_state = 48}, [1658] = {.lex_state = 48}, [1659] = {.lex_state = 48}, - [1660] = {.lex_state = 48}, + [1660] = {.lex_state = 0}, [1661] = {.lex_state = 48}, [1662] = {.lex_state = 48}, [1663] = {.lex_state = 48}, @@ -9606,53 +9615,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1668] = {.lex_state = 48}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 48}, - [1671] = {.lex_state = 48}, - [1672] = {.lex_state = 48}, + [1671] = {.lex_state = 0}, + [1672] = {.lex_state = 0}, [1673] = {.lex_state = 48}, [1674] = {.lex_state = 48}, [1675] = {.lex_state = 48}, [1676] = {.lex_state = 48}, - [1677] = {.lex_state = 0}, + [1677] = {.lex_state = 48}, [1678] = {.lex_state = 48}, - [1679] = {.lex_state = 48}, - [1680] = {.lex_state = 48}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, [1681] = {.lex_state = 48}, [1682] = {.lex_state = 48}, [1683] = {.lex_state = 48}, [1684] = {.lex_state = 48}, [1685] = {.lex_state = 48}, - [1686] = {.lex_state = 0}, + [1686] = {.lex_state = 48}, [1687] = {.lex_state = 48}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, + [1688] = {.lex_state = 48}, + [1689] = {.lex_state = 48}, [1690] = {.lex_state = 48}, - [1691] = {.lex_state = 0}, + [1691] = {.lex_state = 48}, [1692] = {.lex_state = 48}, [1693] = {.lex_state = 48}, - [1694] = {.lex_state = 0}, + [1694] = {.lex_state = 48}, [1695] = {.lex_state = 48}, [1696] = {.lex_state = 48}, [1697] = {.lex_state = 0}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, + [1699] = {.lex_state = 48}, [1700] = {.lex_state = 48}, [1701] = {.lex_state = 48}, [1702] = {.lex_state = 48}, [1703] = {.lex_state = 48}, [1704] = {.lex_state = 48}, - [1705] = {.lex_state = 0}, + [1705] = {.lex_state = 48}, [1706] = {.lex_state = 48}, - [1707] = {.lex_state = 0}, + [1707] = {.lex_state = 48}, [1708] = {.lex_state = 48}, [1709] = {.lex_state = 48}, - [1710] = {.lex_state = 0}, + [1710] = {.lex_state = 48}, [1711] = {.lex_state = 0}, [1712] = {.lex_state = 48}, [1713] = {.lex_state = 48}, [1714] = {.lex_state = 48}, [1715] = {.lex_state = 48}, [1716] = {.lex_state = 48}, - [1717] = {.lex_state = 0}, + [1717] = {.lex_state = 48}, [1718] = {.lex_state = 48}, [1719] = {.lex_state = 48}, [1720] = {.lex_state = 48}, @@ -9662,53 +9671,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1724] = {.lex_state = 48}, [1725] = {.lex_state = 48}, [1726] = {.lex_state = 48}, - [1727] = {.lex_state = 48}, - [1728] = {.lex_state = 0}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 48}, [1729] = {.lex_state = 48}, [1730] = {.lex_state = 48}, [1731] = {.lex_state = 48}, [1732] = {.lex_state = 48}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, + [1733] = {.lex_state = 48}, + [1734] = {.lex_state = 48}, [1735] = {.lex_state = 48}, [1736] = {.lex_state = 48}, - [1737] = {.lex_state = 48}, + [1737] = {.lex_state = 0}, [1738] = {.lex_state = 48}, [1739] = {.lex_state = 48}, [1740] = {.lex_state = 48}, [1741] = {.lex_state = 48}, - [1742] = {.lex_state = 48}, + [1742] = {.lex_state = 0}, [1743] = {.lex_state = 48}, [1744] = {.lex_state = 48}, [1745] = {.lex_state = 48}, [1746] = {.lex_state = 48}, [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 48}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 48}, + [1748] = {.lex_state = 0}, + [1749] = {.lex_state = 48}, + [1750] = {.lex_state = 0}, [1751] = {.lex_state = 48}, - [1752] = {.lex_state = 48}, + [1752] = {.lex_state = 0}, [1753] = {.lex_state = 48}, - [1754] = {.lex_state = 0}, + [1754] = {.lex_state = 48}, [1755] = {.lex_state = 48}, [1756] = {.lex_state = 48}, [1757] = {.lex_state = 48}, - [1758] = {.lex_state = 0}, + [1758] = {.lex_state = 48}, [1759] = {.lex_state = 48}, [1760] = {.lex_state = 48}, [1761] = {.lex_state = 0}, [1762] = {.lex_state = 48}, [1763] = {.lex_state = 48}, - [1764] = {.lex_state = 0}, + [1764] = {.lex_state = 48}, [1765] = {.lex_state = 48}, [1766] = {.lex_state = 48}, [1767] = {.lex_state = 48}, - [1768] = {.lex_state = 0}, + [1768] = {.lex_state = 48}, [1769] = {.lex_state = 48}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, + [1771] = {.lex_state = 48}, [1772] = {.lex_state = 48}, - [1773] = {.lex_state = 48}, + [1773] = {.lex_state = 0}, [1774] = {.lex_state = 48}, [1775] = {.lex_state = 48}, [1776] = {.lex_state = 48}, @@ -9719,19 +9728,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1781] = {.lex_state = 48}, [1782] = {.lex_state = 48}, [1783] = {.lex_state = 48}, - [1784] = {.lex_state = 0}, + [1784] = {.lex_state = 48}, [1785] = {.lex_state = 48}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 48}, - [1788] = {.lex_state = 48}, - [1789] = {.lex_state = 0}, + [1786] = {.lex_state = 48}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 48}, [1790] = {.lex_state = 48}, [1791] = {.lex_state = 48}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, + [1792] = {.lex_state = 48}, + [1793] = {.lex_state = 48}, [1794] = {.lex_state = 48}, - [1795] = {.lex_state = 48}, - [1796] = {.lex_state = 48}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 0}, [1797] = {.lex_state = 48}, [1798] = {.lex_state = 48}, [1799] = {.lex_state = 48}, @@ -9744,13 +9753,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1806] = {.lex_state = 48}, [1807] = {.lex_state = 48}, [1808] = {.lex_state = 48}, - [1809] = {.lex_state = 0}, + [1809] = {.lex_state = 48}, [1810] = {.lex_state = 48}, [1811] = {.lex_state = 48}, [1812] = {.lex_state = 48}, [1813] = {.lex_state = 48}, [1814] = {.lex_state = 48}, - [1815] = {.lex_state = 0}, + [1815] = {.lex_state = 48}, [1816] = {.lex_state = 48}, [1817] = {.lex_state = 48}, [1818] = {.lex_state = 48}, @@ -9766,65 +9775,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1828] = {.lex_state = 48}, [1829] = {.lex_state = 48}, [1830] = {.lex_state = 48}, - [1831] = {.lex_state = 0}, + [1831] = {.lex_state = 48}, [1832] = {.lex_state = 48}, [1833] = {.lex_state = 48}, - [1834] = {.lex_state = 0}, + [1834] = {.lex_state = 48}, [1835] = {.lex_state = 48}, [1836] = {.lex_state = 48}, [1837] = {.lex_state = 48}, [1838] = {.lex_state = 48}, - [1839] = {.lex_state = 48}, + [1839] = {.lex_state = 0}, [1840] = {.lex_state = 48}, [1841] = {.lex_state = 48}, - [1842] = {.lex_state = 0}, + [1842] = {.lex_state = 48}, [1843] = {.lex_state = 48}, [1844] = {.lex_state = 48}, - [1845] = {.lex_state = 48}, + [1845] = {.lex_state = 0}, [1846] = {.lex_state = 48}, - [1847] = {.lex_state = 48}, + [1847] = {.lex_state = 0}, [1848] = {.lex_state = 48}, [1849] = {.lex_state = 48}, - [1850] = {.lex_state = 48}, + [1850] = {.lex_state = 0}, [1851] = {.lex_state = 48}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 48}, + [1852] = {.lex_state = 48}, + [1853] = {.lex_state = 0}, [1854] = {.lex_state = 48}, [1855] = {.lex_state = 48}, [1856] = {.lex_state = 48}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, + [1857] = {.lex_state = 48}, + [1858] = {.lex_state = 48}, [1859] = {.lex_state = 48}, [1860] = {.lex_state = 48}, [1861] = {.lex_state = 0}, [1862] = {.lex_state = 48}, [1863] = {.lex_state = 48}, - [1864] = {.lex_state = 48}, + [1864] = {.lex_state = 0}, [1865] = {.lex_state = 48}, [1866] = {.lex_state = 0}, [1867] = {.lex_state = 48}, [1868] = {.lex_state = 48}, [1869] = {.lex_state = 48}, [1870] = {.lex_state = 48}, - [1871] = {.lex_state = 0}, + [1871] = {.lex_state = 48}, [1872] = {.lex_state = 48}, [1873] = {.lex_state = 48}, - [1874] = {.lex_state = 48}, + [1874] = {.lex_state = 0}, [1875] = {.lex_state = 48}, [1876] = {.lex_state = 48}, [1877] = {.lex_state = 48}, - [1878] = {.lex_state = 0}, + [1878] = {.lex_state = 48}, [1879] = {.lex_state = 48}, [1880] = {.lex_state = 48}, - [1881] = {.lex_state = 48}, + [1881] = {.lex_state = 0}, [1882] = {.lex_state = 48}, [1883] = {.lex_state = 48}, - [1884] = {.lex_state = 48}, + [1884] = {.lex_state = 0}, [1885] = {.lex_state = 48}, [1886] = {.lex_state = 48}, [1887] = {.lex_state = 48}, - [1888] = {.lex_state = 48}, - [1889] = {.lex_state = 48}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 0}, [1890] = {.lex_state = 48}, [1891] = {.lex_state = 48}, [1892] = {.lex_state = 48}, @@ -9836,9 +9845,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1898] = {.lex_state = 48}, [1899] = {.lex_state = 48}, [1900] = {.lex_state = 48}, - [1901] = {.lex_state = 48}, + [1901] = {.lex_state = 0}, [1902] = {.lex_state = 48}, - [1903] = {.lex_state = 48}, + [1903] = {.lex_state = 0}, [1904] = {.lex_state = 48}, [1905] = {.lex_state = 48}, [1906] = {.lex_state = 48}, @@ -9851,16 +9860,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1913] = {.lex_state = 48}, [1914] = {.lex_state = 48}, [1915] = {.lex_state = 48}, - [1916] = {.lex_state = 48}, + [1916] = {.lex_state = 0}, [1917] = {.lex_state = 48}, [1918] = {.lex_state = 48}, [1919] = {.lex_state = 48}, - [1920] = {.lex_state = 48}, + [1920] = {.lex_state = 0}, [1921] = {.lex_state = 48}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 48}, + [1922] = {.lex_state = 48}, + [1923] = {.lex_state = 0}, [1924] = {.lex_state = 48}, - [1925] = {.lex_state = 48}, + [1925] = {.lex_state = 0}, [1926] = {.lex_state = 48}, [1927] = {.lex_state = 48}, [1928] = {.lex_state = 48}, @@ -9868,7 +9877,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1930] = {.lex_state = 48}, [1931] = {.lex_state = 48}, [1932] = {.lex_state = 48}, - [1933] = {.lex_state = 48}, + [1933] = {.lex_state = 0}, [1934] = {.lex_state = 48}, [1935] = {.lex_state = 48}, [1936] = {.lex_state = 48}, @@ -9879,14 +9888,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1941] = {.lex_state = 48}, [1942] = {.lex_state = 48}, [1943] = {.lex_state = 48}, - [1944] = {.lex_state = 48}, + [1944] = {.lex_state = 0}, [1945] = {.lex_state = 48}, [1946] = {.lex_state = 48}, [1947] = {.lex_state = 48}, [1948] = {.lex_state = 48}, [1949] = {.lex_state = 48}, [1950] = {.lex_state = 48}, - [1951] = {.lex_state = 48}, + [1951] = {.lex_state = 0}, [1952] = {.lex_state = 48}, [1953] = {.lex_state = 48}, [1954] = {.lex_state = 48}, @@ -9895,10 +9904,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1957] = {.lex_state = 48}, [1958] = {.lex_state = 48}, [1959] = {.lex_state = 48}, - [1960] = {.lex_state = 0}, + [1960] = {.lex_state = 48}, [1961] = {.lex_state = 48}, - [1962] = {.lex_state = 48}, - [1963] = {.lex_state = 0}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 7}, [1964] = {.lex_state = 48}, [1965] = {.lex_state = 48}, [1966] = {.lex_state = 48}, @@ -9919,13 +9928,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1981] = {.lex_state = 48}, [1982] = {.lex_state = 48}, [1983] = {.lex_state = 48}, - [1984] = {.lex_state = 48}, + [1984] = {.lex_state = 0}, [1985] = {.lex_state = 48}, [1986] = {.lex_state = 48}, [1987] = {.lex_state = 48}, [1988] = {.lex_state = 48}, [1989] = {.lex_state = 48}, - [1990] = {.lex_state = 48}, + [1990] = {.lex_state = 0}, [1991] = {.lex_state = 48}, [1992] = {.lex_state = 48}, [1993] = {.lex_state = 48}, @@ -9956,7 +9965,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2018] = {.lex_state = 48}, [2019] = {.lex_state = 48}, [2020] = {.lex_state = 48}, - [2021] = {.lex_state = 0}, + [2021] = {.lex_state = 48}, [2022] = {.lex_state = 48}, [2023] = {.lex_state = 48}, [2024] = {.lex_state = 48}, @@ -9965,13 +9974,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2027] = {.lex_state = 48}, [2028] = {.lex_state = 48}, [2029] = {.lex_state = 48}, - [2030] = {.lex_state = 48}, + [2030] = {.lex_state = 0}, [2031] = {.lex_state = 48}, [2032] = {.lex_state = 48}, [2033] = {.lex_state = 48}, - [2034] = {.lex_state = 48}, + [2034] = {.lex_state = 0}, [2035] = {.lex_state = 48}, - [2036] = {.lex_state = 0}, + [2036] = {.lex_state = 48}, [2037] = {.lex_state = 48}, [2038] = {.lex_state = 48}, [2039] = {.lex_state = 48}, @@ -9980,10 +9989,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2042] = {.lex_state = 48}, [2043] = {.lex_state = 48}, [2044] = {.lex_state = 48}, - [2045] = {.lex_state = 0}, + [2045] = {.lex_state = 48}, [2046] = {.lex_state = 48}, - [2047] = {.lex_state = 48}, - [2048] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 48}, [2049] = {.lex_state = 48}, [2050] = {.lex_state = 48}, [2051] = {.lex_state = 48}, @@ -9992,64 +10001,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2054] = {.lex_state = 48}, [2055] = {.lex_state = 48}, [2056] = {.lex_state = 48}, - [2057] = {.lex_state = 48}, - [2058] = {.lex_state = 48}, - [2059] = {.lex_state = 48}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, [2060] = {.lex_state = 48}, - [2061] = {.lex_state = 48}, - [2062] = {.lex_state = 0}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 48}, [2063] = {.lex_state = 48}, [2064] = {.lex_state = 48}, [2065] = {.lex_state = 0}, [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 48}, + [2067] = {.lex_state = 48}, + [2068] = {.lex_state = 0}, [2069] = {.lex_state = 48}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 48}, [2072] = {.lex_state = 48}, [2073] = {.lex_state = 48}, - [2074] = {.lex_state = 0}, + [2074] = {.lex_state = 48}, [2075] = {.lex_state = 48}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, + [2076] = {.lex_state = 48}, + [2077] = {.lex_state = 48}, [2078] = {.lex_state = 48}, [2079] = {.lex_state = 48}, [2080] = {.lex_state = 48}, - [2081] = {.lex_state = 48}, + [2081] = {.lex_state = 0}, [2082] = {.lex_state = 48}, [2083] = {.lex_state = 48}, [2084] = {.lex_state = 48}, [2085] = {.lex_state = 48}, - [2086] = {.lex_state = 0}, + [2086] = {.lex_state = 48}, [2087] = {.lex_state = 48}, [2088] = {.lex_state = 48}, [2089] = {.lex_state = 48}, [2090] = {.lex_state = 48}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 0}, + [2091] = {.lex_state = 48}, + [2092] = {.lex_state = 48}, [2093] = {.lex_state = 48}, [2094] = {.lex_state = 48}, - [2095] = {.lex_state = 0}, + [2095] = {.lex_state = 48}, [2096] = {.lex_state = 48}, [2097] = {.lex_state = 48}, [2098] = {.lex_state = 48}, - [2099] = {.lex_state = 0}, + [2099] = {.lex_state = 48}, [2100] = {.lex_state = 48}, [2101] = {.lex_state = 48}, - [2102] = {.lex_state = 48}, - [2103] = {.lex_state = 48}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, [2104] = {.lex_state = 48}, [2105] = {.lex_state = 48}, - [2106] = {.lex_state = 0}, + [2106] = {.lex_state = 48}, [2107] = {.lex_state = 48}, [2108] = {.lex_state = 48}, [2109] = {.lex_state = 48}, - [2110] = {.lex_state = 48}, + [2110] = {.lex_state = 0}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 48}, [2113] = {.lex_state = 48}, - [2114] = {.lex_state = 48}, + [2114] = {.lex_state = 0}, [2115] = {.lex_state = 48}, [2116] = {.lex_state = 48}, [2117] = {.lex_state = 48}, @@ -10058,23 +10067,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2120] = {.lex_state = 48}, [2121] = {.lex_state = 48}, [2122] = {.lex_state = 48}, - [2123] = {.lex_state = 48}, + [2123] = {.lex_state = 0}, [2124] = {.lex_state = 48}, [2125] = {.lex_state = 48}, - [2126] = {.lex_state = 48}, + [2126] = {.lex_state = 0}, [2127] = {.lex_state = 48}, - [2128] = {.lex_state = 0}, + [2128] = {.lex_state = 48}, [2129] = {.lex_state = 48}, [2130] = {.lex_state = 48}, - [2131] = {.lex_state = 48}, + [2131] = {.lex_state = 0}, [2132] = {.lex_state = 48}, [2133] = {.lex_state = 48}, - [2134] = {.lex_state = 48}, + [2134] = {.lex_state = 0}, [2135] = {.lex_state = 48}, - [2136] = {.lex_state = 0}, + [2136] = {.lex_state = 48}, [2137] = {.lex_state = 48}, [2138] = {.lex_state = 48}, - [2139] = {.lex_state = 0}, + [2139] = {.lex_state = 48}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 48}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10202,105 +10213,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(2076), - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym__defining_identifier_list] = STATE(2067), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(524), - [sym__basic_declarative_item] = STATE(524), - [sym__basic_declaration] = STATE(524), - [sym_package_declaration] = STATE(524), + [sym_compilation] = STATE(2070), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym__defining_identifier_list] = STATE(2066), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_compilation_unit] = STATE(3), + [sym__declarative_item] = STATE(523), + [sym__basic_declarative_item] = STATE(523), + [sym__basic_declaration] = STATE(523), + [sym_package_declaration] = STATE(523), [sym__package_specification] = STATE(2063), - [sym_with_clause] = STATE(524), - [sym_use_clause] = STATE(524), - [sym_subunit] = STATE(524), - [sym__proper_body] = STATE(524), - [sym_subprogram_body] = STATE(524), - [sym_package_body] = STATE(524), - [sym__type_declaration] = STATE(524), - [sym_full_type_declaration] = STATE(524), - [sym_private_type_declaration] = STATE(524), - [sym_private_extension_declaration] = STATE(524), - [sym_incomplete_type_declaration] = STATE(524), - [sym__aspect_clause] = STATE(524), - [sym_at_clause] = STATE(524), - [sym_attribute_definition_clause] = STATE(524), - [sym_body_stub] = STATE(524), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(524), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(524), - [sym_protected_body_stub] = STATE(454), - [sym_entry_declaration] = STATE(524), - [sym_enumeration_representation_clause] = STATE(524), - [sym_exception_declaration] = STATE(524), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(524), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(524), - [sym_generic_package_declaration] = STATE(524), - [sym_generic_instantiation] = STATE(524), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_procedure_declaration] = STATE(524), - [sym_null_statement] = STATE(524), - [sym_number_declaration] = STATE(524), - [sym_object_declaration] = STATE(524), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1013), - [sym_pragma_g] = STATE(524), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(524), - [sym__renaming_declaration] = STATE(524), - [sym_object_renaming_declaration] = STATE(524), - [sym_exception_renaming_declaration] = STATE(524), - [sym_package_renaming_declaration] = STATE(524), - [sym_subprogram_renaming_declaration] = STATE(524), - [sym_generic_renaming_declaration] = STATE(524), - [sym__simple_statement] = STATE(524), - [sym__statement] = STATE(524), - [sym__compound_statement] = STATE(524), - [sym__select_statement] = STATE(524), - [sym_asynchronous_select] = STATE(524), - [sym_conditional_entry_call] = STATE(524), - [sym_timed_entry_call] = STATE(524), - [sym_selective_accept] = STATE(524), - [sym_abort_statement] = STATE(524), - [sym_requeue_statement] = STATE(524), - [sym_accept_statement] = STATE(524), - [sym_case_statement] = STATE(524), - [sym_block_statement] = STATE(524), - [sym_if_statement] = STATE(524), - [sym_gnatprep_if_statement] = STATE(524), - [sym_exit_statement] = STATE(524), - [sym_goto_statement] = STATE(524), - [sym__delay_statement] = STATE(524), - [sym_delay_until_statement] = STATE(524), - [sym_delay_relative_statement] = STATE(524), - [sym_simple_return_statement] = STATE(524), - [sym_extended_return_statement] = STATE(524), - [sym_procedure_call_statement] = STATE(524), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(524), - [sym_loop_statement] = STATE(524), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(524), - [sym_subprogram_declaration] = STATE(524), - [sym_expression_function_declaration] = STATE(524), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(524), - [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), + [sym_with_clause] = STATE(523), + [sym_use_clause] = STATE(523), + [sym_subunit] = STATE(523), + [sym__proper_body] = STATE(523), + [sym_subprogram_body] = STATE(523), + [sym_package_body] = STATE(523), + [sym__type_declaration] = STATE(523), + [sym_full_type_declaration] = STATE(523), + [sym_private_type_declaration] = STATE(523), + [sym_private_extension_declaration] = STATE(523), + [sym_incomplete_type_declaration] = STATE(523), + [sym__aspect_clause] = STATE(523), + [sym_at_clause] = STATE(523), + [sym_attribute_definition_clause] = STATE(523), + [sym_body_stub] = STATE(523), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(523), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(523), + [sym_protected_body_stub] = STATE(316), + [sym_entry_declaration] = STATE(523), + [sym_enumeration_representation_clause] = STATE(523), + [sym_exception_declaration] = STATE(523), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(523), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(523), + [sym_generic_package_declaration] = STATE(523), + [sym_generic_instantiation] = STATE(523), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_procedure_declaration] = STATE(523), + [sym_null_statement] = STATE(523), + [sym_number_declaration] = STATE(523), + [sym_object_declaration] = STATE(523), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1047), + [sym_pragma_g] = STATE(523), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(523), + [sym__renaming_declaration] = STATE(523), + [sym_object_renaming_declaration] = STATE(523), + [sym_exception_renaming_declaration] = STATE(523), + [sym_package_renaming_declaration] = STATE(523), + [sym_subprogram_renaming_declaration] = STATE(523), + [sym_generic_renaming_declaration] = STATE(523), + [sym__simple_statement] = STATE(523), + [sym__statement] = STATE(523), + [sym__compound_statement] = STATE(523), + [sym__select_statement] = STATE(523), + [sym_asynchronous_select] = STATE(523), + [sym_conditional_entry_call] = STATE(523), + [sym_timed_entry_call] = STATE(523), + [sym_selective_accept] = STATE(523), + [sym_abort_statement] = STATE(523), + [sym_requeue_statement] = STATE(523), + [sym_accept_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_block_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_gnatprep_if_statement] = STATE(523), + [sym_exit_statement] = STATE(523), + [sym_goto_statement] = STATE(523), + [sym__delay_statement] = STATE(523), + [sym_delay_until_statement] = STATE(523), + [sym_delay_relative_statement] = STATE(523), + [sym_simple_return_statement] = STATE(523), + [sym_extended_return_statement] = STATE(523), + [sym_procedure_call_statement] = STATE(523), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(523), + [sym_loop_statement] = STATE(523), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(523), + [sym_subprogram_declaration] = STATE(523), + [sym_expression_function_declaration] = STATE(523), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(523), + [aux_sym_compilation_repeat1] = STATE(3), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), @@ -10347,105 +10358,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [2] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym__defining_identifier_list] = STATE(2067), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(524), - [sym__basic_declarative_item] = STATE(524), - [sym__basic_declaration] = STATE(524), - [sym_package_declaration] = STATE(524), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym__defining_identifier_list] = STATE(2066), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_compilation_unit] = STATE(2), + [sym__declarative_item] = STATE(523), + [sym__basic_declarative_item] = STATE(523), + [sym__basic_declaration] = STATE(523), + [sym_package_declaration] = STATE(523), [sym__package_specification] = STATE(2063), - [sym_with_clause] = STATE(524), - [sym_use_clause] = STATE(524), - [sym_subunit] = STATE(524), - [sym__proper_body] = STATE(524), - [sym_subprogram_body] = STATE(524), - [sym_package_body] = STATE(524), - [sym__type_declaration] = STATE(524), - [sym_full_type_declaration] = STATE(524), - [sym_private_type_declaration] = STATE(524), - [sym_private_extension_declaration] = STATE(524), - [sym_incomplete_type_declaration] = STATE(524), - [sym__aspect_clause] = STATE(524), - [sym_at_clause] = STATE(524), - [sym_attribute_definition_clause] = STATE(524), - [sym_body_stub] = STATE(524), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(524), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(524), - [sym_protected_body_stub] = STATE(454), - [sym_entry_declaration] = STATE(524), - [sym_enumeration_representation_clause] = STATE(524), - [sym_exception_declaration] = STATE(524), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(524), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(524), - [sym_generic_package_declaration] = STATE(524), - [sym_generic_instantiation] = STATE(524), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_procedure_declaration] = STATE(524), - [sym_null_statement] = STATE(524), - [sym_number_declaration] = STATE(524), - [sym_object_declaration] = STATE(524), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1013), - [sym_pragma_g] = STATE(524), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(524), - [sym__renaming_declaration] = STATE(524), - [sym_object_renaming_declaration] = STATE(524), - [sym_exception_renaming_declaration] = STATE(524), - [sym_package_renaming_declaration] = STATE(524), - [sym_subprogram_renaming_declaration] = STATE(524), - [sym_generic_renaming_declaration] = STATE(524), - [sym__simple_statement] = STATE(524), - [sym__statement] = STATE(524), - [sym__compound_statement] = STATE(524), - [sym__select_statement] = STATE(524), - [sym_asynchronous_select] = STATE(524), - [sym_conditional_entry_call] = STATE(524), - [sym_timed_entry_call] = STATE(524), - [sym_selective_accept] = STATE(524), - [sym_abort_statement] = STATE(524), - [sym_requeue_statement] = STATE(524), - [sym_accept_statement] = STATE(524), - [sym_case_statement] = STATE(524), - [sym_block_statement] = STATE(524), - [sym_if_statement] = STATE(524), - [sym_gnatprep_if_statement] = STATE(524), - [sym_exit_statement] = STATE(524), - [sym_goto_statement] = STATE(524), - [sym__delay_statement] = STATE(524), - [sym_delay_until_statement] = STATE(524), - [sym_delay_relative_statement] = STATE(524), - [sym_simple_return_statement] = STATE(524), - [sym_extended_return_statement] = STATE(524), - [sym_procedure_call_statement] = STATE(524), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(524), - [sym_loop_statement] = STATE(524), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(524), - [sym_subprogram_declaration] = STATE(524), - [sym_expression_function_declaration] = STATE(524), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(524), - [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), + [sym_with_clause] = STATE(523), + [sym_use_clause] = STATE(523), + [sym_subunit] = STATE(523), + [sym__proper_body] = STATE(523), + [sym_subprogram_body] = STATE(523), + [sym_package_body] = STATE(523), + [sym__type_declaration] = STATE(523), + [sym_full_type_declaration] = STATE(523), + [sym_private_type_declaration] = STATE(523), + [sym_private_extension_declaration] = STATE(523), + [sym_incomplete_type_declaration] = STATE(523), + [sym__aspect_clause] = STATE(523), + [sym_at_clause] = STATE(523), + [sym_attribute_definition_clause] = STATE(523), + [sym_body_stub] = STATE(523), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(523), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(523), + [sym_protected_body_stub] = STATE(316), + [sym_entry_declaration] = STATE(523), + [sym_enumeration_representation_clause] = STATE(523), + [sym_exception_declaration] = STATE(523), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(523), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(523), + [sym_generic_package_declaration] = STATE(523), + [sym_generic_instantiation] = STATE(523), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_procedure_declaration] = STATE(523), + [sym_null_statement] = STATE(523), + [sym_number_declaration] = STATE(523), + [sym_object_declaration] = STATE(523), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1047), + [sym_pragma_g] = STATE(523), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(523), + [sym__renaming_declaration] = STATE(523), + [sym_object_renaming_declaration] = STATE(523), + [sym_exception_renaming_declaration] = STATE(523), + [sym_package_renaming_declaration] = STATE(523), + [sym_subprogram_renaming_declaration] = STATE(523), + [sym_generic_renaming_declaration] = STATE(523), + [sym__simple_statement] = STATE(523), + [sym__statement] = STATE(523), + [sym__compound_statement] = STATE(523), + [sym__select_statement] = STATE(523), + [sym_asynchronous_select] = STATE(523), + [sym_conditional_entry_call] = STATE(523), + [sym_timed_entry_call] = STATE(523), + [sym_selective_accept] = STATE(523), + [sym_abort_statement] = STATE(523), + [sym_requeue_statement] = STATE(523), + [sym_accept_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_block_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_gnatprep_if_statement] = STATE(523), + [sym_exit_statement] = STATE(523), + [sym_goto_statement] = STATE(523), + [sym__delay_statement] = STATE(523), + [sym_delay_until_statement] = STATE(523), + [sym_delay_relative_statement] = STATE(523), + [sym_simple_return_statement] = STATE(523), + [sym_extended_return_statement] = STATE(523), + [sym_procedure_call_statement] = STATE(523), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(523), + [sym_loop_statement] = STATE(523), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(523), + [sym_subprogram_declaration] = STATE(523), + [sym_expression_function_declaration] = STATE(523), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(523), + [aux_sym_compilation_repeat1] = STATE(2), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), [ts_builtin_sym_end] = ACTIONS(85), + [sym_identifier] = ACTIONS(87), + [sym_gnatprep_identifier] = ACTIONS(90), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(90), + [sym_character_literal] = ACTIONS(90), + [sym_target_name] = ACTIONS(90), + [anon_sym_LBRACK] = ACTIONS(93), + [aux_sym_iterated_element_association_token1] = ACTIONS(96), + [aux_sym_iterated_element_association_token2] = ACTIONS(99), + [aux_sym_compilation_unit_token1] = ACTIONS(102), + [aux_sym__package_specification_token1] = ACTIONS(105), + [aux_sym_with_clause_token1] = ACTIONS(108), + [aux_sym_with_clause_token2] = ACTIONS(111), + [aux_sym_use_clause_token2] = ACTIONS(114), + [aux_sym_subunit_token1] = ACTIONS(117), + [aux_sym_subprogram_body_token1] = ACTIONS(120), + [aux_sym_relation_membership_token1] = ACTIONS(123), + [aux_sym_raise_expression_token1] = ACTIONS(126), + [aux_sym_primary_null_token1] = ACTIONS(129), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(132), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(135), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(138), + [aux_sym_declare_expression_token1] = ACTIONS(141), + [aux_sym_case_expression_token1] = ACTIONS(144), + [aux_sym_interface_type_definition_token1] = ACTIONS(147), + [aux_sym_entry_declaration_token1] = ACTIONS(150), + [aux_sym_generic_formal_part_token1] = ACTIONS(153), + [aux_sym_global_mode_token1] = ACTIONS(156), + [anon_sym_LT_LT] = ACTIONS(159), + [aux_sym_pragma_g_token1] = ACTIONS(162), + [aux_sym_if_expression_token1] = ACTIONS(165), + [aux_sym_result_profile_token1] = ACTIONS(168), + [aux_sym_asynchronous_select_token1] = ACTIONS(171), + [aux_sym_asynchronous_select_token2] = ACTIONS(174), + [aux_sym_requeue_statement_token1] = ACTIONS(177), + [aux_sym_accept_statement_token1] = ACTIONS(180), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(183), + [aux_sym_exit_statement_token1] = ACTIONS(186), + [aux_sym_goto_statement_token1] = ACTIONS(189), + [aux_sym_delay_until_statement_token1] = ACTIONS(192), + [aux_sym_loop_statement_token1] = ACTIONS(195), + [aux_sym_iteration_scheme_token1] = ACTIONS(198), + [aux_sym_subtype_declaration_token1] = ACTIONS(201), + }, + [3] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym__defining_identifier_list] = STATE(2066), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_compilation_unit] = STATE(2), + [sym__declarative_item] = STATE(523), + [sym__basic_declarative_item] = STATE(523), + [sym__basic_declaration] = STATE(523), + [sym_package_declaration] = STATE(523), + [sym__package_specification] = STATE(2063), + [sym_with_clause] = STATE(523), + [sym_use_clause] = STATE(523), + [sym_subunit] = STATE(523), + [sym__proper_body] = STATE(523), + [sym_subprogram_body] = STATE(523), + [sym_package_body] = STATE(523), + [sym__type_declaration] = STATE(523), + [sym_full_type_declaration] = STATE(523), + [sym_private_type_declaration] = STATE(523), + [sym_private_extension_declaration] = STATE(523), + [sym_incomplete_type_declaration] = STATE(523), + [sym__aspect_clause] = STATE(523), + [sym_at_clause] = STATE(523), + [sym_attribute_definition_clause] = STATE(523), + [sym_body_stub] = STATE(523), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(523), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(523), + [sym_protected_body_stub] = STATE(316), + [sym_entry_declaration] = STATE(523), + [sym_enumeration_representation_clause] = STATE(523), + [sym_exception_declaration] = STATE(523), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(523), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(523), + [sym_generic_package_declaration] = STATE(523), + [sym_generic_instantiation] = STATE(523), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_procedure_declaration] = STATE(523), + [sym_null_statement] = STATE(523), + [sym_number_declaration] = STATE(523), + [sym_object_declaration] = STATE(523), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1047), + [sym_pragma_g] = STATE(523), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(523), + [sym__renaming_declaration] = STATE(523), + [sym_object_renaming_declaration] = STATE(523), + [sym_exception_renaming_declaration] = STATE(523), + [sym_package_renaming_declaration] = STATE(523), + [sym_subprogram_renaming_declaration] = STATE(523), + [sym_generic_renaming_declaration] = STATE(523), + [sym__simple_statement] = STATE(523), + [sym__statement] = STATE(523), + [sym__compound_statement] = STATE(523), + [sym__select_statement] = STATE(523), + [sym_asynchronous_select] = STATE(523), + [sym_conditional_entry_call] = STATE(523), + [sym_timed_entry_call] = STATE(523), + [sym_selective_accept] = STATE(523), + [sym_abort_statement] = STATE(523), + [sym_requeue_statement] = STATE(523), + [sym_accept_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_block_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_gnatprep_if_statement] = STATE(523), + [sym_exit_statement] = STATE(523), + [sym_goto_statement] = STATE(523), + [sym__delay_statement] = STATE(523), + [sym_delay_until_statement] = STATE(523), + [sym_delay_relative_statement] = STATE(523), + [sym_simple_return_statement] = STATE(523), + [sym_extended_return_statement] = STATE(523), + [sym_procedure_call_statement] = STATE(523), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(523), + [sym_loop_statement] = STATE(523), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(523), + [sym_subprogram_declaration] = STATE(523), + [sym_expression_function_declaration] = STATE(523), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(523), + [aux_sym_compilation_repeat1] = STATE(2), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(204), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -10490,160 +10645,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [3] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym__defining_identifier_list] = STATE(2067), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(524), - [sym__basic_declarative_item] = STATE(524), - [sym__basic_declaration] = STATE(524), - [sym_package_declaration] = STATE(524), - [sym__package_specification] = STATE(2063), - [sym_with_clause] = STATE(524), - [sym_use_clause] = STATE(524), - [sym_subunit] = STATE(524), - [sym__proper_body] = STATE(524), - [sym_subprogram_body] = STATE(524), - [sym_package_body] = STATE(524), - [sym__type_declaration] = STATE(524), - [sym_full_type_declaration] = STATE(524), - [sym_private_type_declaration] = STATE(524), - [sym_private_extension_declaration] = STATE(524), - [sym_incomplete_type_declaration] = STATE(524), - [sym__aspect_clause] = STATE(524), - [sym_at_clause] = STATE(524), - [sym_attribute_definition_clause] = STATE(524), - [sym_body_stub] = STATE(524), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(524), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(524), - [sym_protected_body_stub] = STATE(454), - [sym_entry_declaration] = STATE(524), - [sym_enumeration_representation_clause] = STATE(524), - [sym_exception_declaration] = STATE(524), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(524), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(524), - [sym_generic_package_declaration] = STATE(524), - [sym_generic_instantiation] = STATE(524), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_procedure_declaration] = STATE(524), - [sym_null_statement] = STATE(524), - [sym_number_declaration] = STATE(524), - [sym_object_declaration] = STATE(524), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1013), - [sym_pragma_g] = STATE(524), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(524), - [sym__renaming_declaration] = STATE(524), - [sym_object_renaming_declaration] = STATE(524), - [sym_exception_renaming_declaration] = STATE(524), - [sym_package_renaming_declaration] = STATE(524), - [sym_subprogram_renaming_declaration] = STATE(524), - [sym_generic_renaming_declaration] = STATE(524), - [sym__simple_statement] = STATE(524), - [sym__statement] = STATE(524), - [sym__compound_statement] = STATE(524), - [sym__select_statement] = STATE(524), - [sym_asynchronous_select] = STATE(524), - [sym_conditional_entry_call] = STATE(524), - [sym_timed_entry_call] = STATE(524), - [sym_selective_accept] = STATE(524), - [sym_abort_statement] = STATE(524), - [sym_requeue_statement] = STATE(524), - [sym_accept_statement] = STATE(524), - [sym_case_statement] = STATE(524), - [sym_block_statement] = STATE(524), - [sym_if_statement] = STATE(524), - [sym_gnatprep_if_statement] = STATE(524), - [sym_exit_statement] = STATE(524), - [sym_goto_statement] = STATE(524), - [sym__delay_statement] = STATE(524), - [sym_delay_until_statement] = STATE(524), - [sym_delay_relative_statement] = STATE(524), - [sym_simple_return_statement] = STATE(524), - [sym_extended_return_statement] = STATE(524), - [sym_procedure_call_statement] = STATE(524), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(524), - [sym_loop_statement] = STATE(524), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(524), - [sym_subprogram_declaration] = STATE(524), - [sym_expression_function_declaration] = STATE(524), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(524), - [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [ts_builtin_sym_end] = ACTIONS(87), - [sym_identifier] = ACTIONS(89), - [sym_gnatprep_identifier] = ACTIONS(92), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(92), - [sym_character_literal] = ACTIONS(92), - [sym_target_name] = ACTIONS(92), - [anon_sym_LBRACK] = ACTIONS(95), - [aux_sym_iterated_element_association_token1] = ACTIONS(98), - [aux_sym_iterated_element_association_token2] = ACTIONS(101), - [aux_sym_compilation_unit_token1] = ACTIONS(104), - [aux_sym__package_specification_token1] = ACTIONS(107), - [aux_sym_with_clause_token1] = ACTIONS(110), - [aux_sym_with_clause_token2] = ACTIONS(113), - [aux_sym_use_clause_token2] = ACTIONS(116), - [aux_sym_subunit_token1] = ACTIONS(119), - [aux_sym_subprogram_body_token1] = ACTIONS(122), - [aux_sym_relation_membership_token1] = ACTIONS(125), - [aux_sym_raise_expression_token1] = ACTIONS(128), - [aux_sym_primary_null_token1] = ACTIONS(131), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(134), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(137), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(140), - [aux_sym_declare_expression_token1] = ACTIONS(143), - [aux_sym_case_expression_token1] = ACTIONS(146), - [aux_sym_interface_type_definition_token1] = ACTIONS(149), - [aux_sym_entry_declaration_token1] = ACTIONS(152), - [aux_sym_generic_formal_part_token1] = ACTIONS(155), - [aux_sym_global_mode_token1] = ACTIONS(158), - [anon_sym_LT_LT] = ACTIONS(161), - [aux_sym_pragma_g_token1] = ACTIONS(164), - [aux_sym_if_expression_token1] = ACTIONS(167), - [aux_sym_result_profile_token1] = ACTIONS(170), - [aux_sym_asynchronous_select_token1] = ACTIONS(173), - [aux_sym_asynchronous_select_token2] = ACTIONS(176), - [aux_sym_requeue_statement_token1] = ACTIONS(179), - [aux_sym_accept_statement_token1] = ACTIONS(182), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(185), - [aux_sym_exit_statement_token1] = ACTIONS(188), - [aux_sym_goto_statement_token1] = ACTIONS(191), - [aux_sym_delay_until_statement_token1] = ACTIONS(194), - [aux_sym_loop_statement_token1] = ACTIONS(197), - [aux_sym_iteration_scheme_token1] = ACTIONS(200), - [aux_sym_subtype_declaration_token1] = ACTIONS(203), - }, [4] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -10669,13 +10680,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), [sym_identifier] = ACTIONS(206), [sym_gnatprep_identifier] = ACTIONS(209), [sym_comment] = ACTIONS(3), @@ -10715,7 +10726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(274), }, [5] = { - [sym__defining_identifier_list] = STATE(2067), + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), @@ -10734,31 +10745,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -10769,7 +10780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), [sym_identifier] = ACTIONS(277), @@ -10795,143 +10806,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(321), }, [6] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym_package_declaration] = STATE(5), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1671), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1220), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(328), - [aux_sym_subprogram_body_token1] = ACTIONS(330), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(332), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(330), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(332), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(334), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [7] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(5), - [sym__basic_declarative_item] = STATE(5), - [sym__basic_declaration] = STATE(5), - [sym_package_declaration] = STATE(5), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(6), + [sym__basic_declarative_item] = STATE(6), + [sym__basic_declaration] = STATE(6), + [sym_package_declaration] = STATE(6), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(5), - [sym__proper_body] = STATE(5), - [sym_subprogram_body] = STATE(5), - [sym_package_body] = STATE(5), - [sym__type_declaration] = STATE(5), - [sym_full_type_declaration] = STATE(5), - [sym_private_type_declaration] = STATE(5), - [sym_private_extension_declaration] = STATE(5), - [sym_incomplete_type_declaration] = STATE(5), - [sym__aspect_clause] = STATE(5), - [sym_at_clause] = STATE(5), - [sym_attribute_definition_clause] = STATE(5), - [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(5), - [sym_enumeration_representation_clause] = STATE(5), - [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(5), - [sym_generic_package_declaration] = STATE(5), - [sym_generic_instantiation] = STATE(5), - [sym_null_procedure_declaration] = STATE(5), - [sym_number_declaration] = STATE(5), - [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(5), - [sym__renaming_declaration] = STATE(5), - [sym_object_renaming_declaration] = STATE(5), - [sym_exception_renaming_declaration] = STATE(5), - [sym_package_renaming_declaration] = STATE(5), - [sym_subprogram_renaming_declaration] = STATE(5), - [sym_generic_renaming_declaration] = STATE(5), - [sym_gnatprep_declarative_if_statement] = STATE(5), - [sym_subprogram_declaration] = STATE(5), - [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(5), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), - [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1231), + [sym_use_clause] = STATE(6), + [sym__proper_body] = STATE(6), + [sym_subprogram_body] = STATE(6), + [sym_package_body] = STATE(6), + [sym__type_declaration] = STATE(6), + [sym_full_type_declaration] = STATE(6), + [sym_private_type_declaration] = STATE(6), + [sym_private_extension_declaration] = STATE(6), + [sym_incomplete_type_declaration] = STATE(6), + [sym__aspect_clause] = STATE(6), + [sym_at_clause] = STATE(6), + [sym_attribute_definition_clause] = STATE(6), + [sym_body_stub] = STATE(6), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(6), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(6), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(6), + [sym_enumeration_representation_clause] = STATE(6), + [sym_exception_declaration] = STATE(6), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(6), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(6), + [sym_generic_package_declaration] = STATE(6), + [sym_generic_instantiation] = STATE(6), + [sym_null_procedure_declaration] = STATE(6), + [sym_number_declaration] = STATE(6), + [sym_object_declaration] = STATE(6), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(6), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(6), + [sym__renaming_declaration] = STATE(6), + [sym_object_renaming_declaration] = STATE(6), + [sym_exception_renaming_declaration] = STATE(6), + [sym_package_renaming_declaration] = STATE(6), + [sym_subprogram_renaming_declaration] = STATE(6), + [sym_generic_renaming_declaration] = STATE(6), + [sym_gnatprep_declarative_if_statement] = STATE(6), + [sym_subprogram_declaration] = STATE(6), + [sym_expression_function_declaration] = STATE(6), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(6), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(6), + [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1145), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -10946,234 +10957,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(336), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(338), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(340), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(330), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(336), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(338), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [8] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2010), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1776), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(342), - [aux_sym_subprogram_body_token1] = ACTIONS(344), + [aux_sym_subunit_token1] = ACTIONS(340), + [aux_sym_subprogram_body_token1] = ACTIONS(342), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(346), + [aux_sym_private_type_declaration_token1] = ACTIONS(344), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [9] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(7), - [sym__basic_declarative_item] = STATE(7), - [sym__basic_declaration] = STATE(7), - [sym_package_declaration] = STATE(7), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(7), - [sym__proper_body] = STATE(7), - [sym_subprogram_body] = STATE(7), - [sym_package_body] = STATE(7), - [sym__type_declaration] = STATE(7), - [sym_full_type_declaration] = STATE(7), - [sym_private_type_declaration] = STATE(7), - [sym_private_extension_declaration] = STATE(7), - [sym_incomplete_type_declaration] = STATE(7), - [sym__aspect_clause] = STATE(7), - [sym_at_clause] = STATE(7), - [sym_attribute_definition_clause] = STATE(7), - [sym_body_stub] = STATE(7), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(7), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(7), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(7), - [sym_enumeration_representation_clause] = STATE(7), - [sym_exception_declaration] = STATE(7), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(7), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(7), - [sym_generic_package_declaration] = STATE(7), - [sym_generic_instantiation] = STATE(7), - [sym_null_procedure_declaration] = STATE(7), - [sym_number_declaration] = STATE(7), - [sym_object_declaration] = STATE(7), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(7), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(7), - [sym__renaming_declaration] = STATE(7), - [sym_object_renaming_declaration] = STATE(7), - [sym_exception_renaming_declaration] = STATE(7), - [sym_package_renaming_declaration] = STATE(7), - [sym_subprogram_renaming_declaration] = STATE(7), - [sym_generic_renaming_declaration] = STATE(7), - [sym_gnatprep_declarative_if_statement] = STATE(7), - [sym_subprogram_declaration] = STATE(7), - [sym_expression_function_declaration] = STATE(7), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(7), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(7), - [aux_sym_gnatprep_declarative_if_statement_repeat1] = STATE(1218), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1792), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(346), + [aux_sym_subprogram_body_token1] = ACTIONS(348), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(350), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(336), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(348), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(350), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [10] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(14), - [sym__basic_declarative_item] = STATE(14), - [sym__basic_declaration] = STATE(14), - [sym_package_declaration] = STATE(14), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(14), - [sym__proper_body] = STATE(14), - [sym_subprogram_body] = STATE(14), - [sym_package_body] = STATE(14), - [sym__type_declaration] = STATE(14), - [sym_full_type_declaration] = STATE(14), - [sym_private_type_declaration] = STATE(14), - [sym_private_extension_declaration] = STATE(14), - [sym_incomplete_type_declaration] = STATE(14), - [sym__aspect_clause] = STATE(14), - [sym_at_clause] = STATE(14), - [sym_attribute_definition_clause] = STATE(14), - [sym_body_stub] = STATE(14), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(14), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(14), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(14), - [sym_enumeration_representation_clause] = STATE(14), - [sym_exception_declaration] = STATE(14), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(14), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(14), - [sym_generic_package_declaration] = STATE(14), - [sym_generic_instantiation] = STATE(14), - [sym_null_procedure_declaration] = STATE(14), - [sym_number_declaration] = STATE(14), - [sym_object_declaration] = STATE(14), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(14), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(14), - [sym__renaming_declaration] = STATE(14), - [sym_object_renaming_declaration] = STATE(14), - [sym_exception_renaming_declaration] = STATE(14), - [sym_package_renaming_declaration] = STATE(14), - [sym_subprogram_renaming_declaration] = STATE(14), - [sym_generic_renaming_declaration] = STATE(14), - [sym_gnatprep_declarative_if_statement] = STATE(14), - [sym_subprogram_declaration] = STATE(14), - [sym_expression_function_declaration] = STATE(14), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(14), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(14), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2032), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subunit_token1] = ACTIONS(352), + [aux_sym_subprogram_body_token1] = ACTIONS(354), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -11182,248 +11196,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(352), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(352), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(352), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [11] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1671), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1776), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(330), + [aux_sym_subprogram_body_token1] = ACTIONS(342), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(332), + [aux_sym_private_type_declaration_token1] = ACTIONS(344), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [12] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1987), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), + [sym_unary_adding_operator] = STATE(551), + [sym__name] = STATE(537), + [sym_selected_component] = STATE(528), + [sym_slice] = STATE(528), + [sym__attribute_reference] = STATE(528), + [sym__reduction_attribute_reference] = STATE(528), + [sym_value_sequence] = STATE(2065), + [sym_iterated_element_association] = STATE(1279), + [sym_qualified_expression] = STATE(528), + [sym__subtype_indication] = STATE(1576), + [sym_range_g] = STATE(1579), + [sym_expression] = STATE(1039), + [sym__relation] = STATE(616), + [sym_relation_membership] = STATE(616), + [sym_raise_expression] = STATE(616), + [sym__simple_expression] = STATE(675), + [sym_term] = STATE(570), + [sym__factor] = STATE(541), + [sym_factor_power] = STATE(541), + [sym_factor_abs] = STATE(541), + [sym_factor_not] = STATE(541), + [sym__parenthesized_expression] = STATE(555), + [sym__primary] = STATE(555), + [sym_primary_null] = STATE(555), + [sym_allocator] = STATE(555), + [sym__conditional_expression] = STATE(1750), + [sym_quantified_expression] = STATE(1750), + [sym_declare_expression] = STATE(1750), + [sym_case_expression] = STATE(1750), + [sym_component_choice_list] = STATE(1747), + [sym__aggregate] = STATE(555), + [sym__delta_aggregate] = STATE(555), + [sym_extension_aggregate] = STATE(555), + [sym_record_delta_aggregate] = STATE(555), + [sym_array_delta_aggregate] = STATE(555), + [sym_record_aggregate] = STATE(555), + [sym_record_component_association_list] = STATE(1742), + [sym__named_record_component_association] = STATE(1253), + [sym_null_exclusion] = STATE(826), + [sym__array_aggregate] = STATE(555), + [sym_positional_array_aggregate] = STATE(555), + [sym_null_array_aggregate] = STATE(555), + [sym_named_array_aggregate] = STATE(555), + [sym__array_component_association_list] = STATE(1737), + [sym_array_component_association] = STATE(1190), + [sym_discrete_choice_list] = STATE(1727), + [sym_discrete_choice] = STATE(1261), + [sym_global_aspect_element] = STATE(1418), + [sym_global_mode] = STATE(792), + [sym_non_empty_mode] = STATE(878), + [sym_if_expression] = STATE(1750), + [sym_function_call] = STATE(537), + [sym_identifier] = ACTIONS(356), + [sym_gnatprep_identifier] = ACTIONS(358), [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subunit_token1] = ACTIONS(354), - [aux_sym_subprogram_body_token1] = ACTIONS(356), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), + [sym_string_literal] = ACTIONS(360), + [sym_character_literal] = ACTIONS(358), + [sym_numeric_literal] = ACTIONS(362), + [anon_sym_PLUS] = ACTIONS(364), + [anon_sym_DASH] = ACTIONS(366), + [sym_target_name] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [aux_sym_chunk_specification_token1] = ACTIONS(372), + [aux_sym_iterated_element_association_token1] = ACTIONS(374), + [aux_sym_relation_membership_token1] = ACTIONS(376), + [aux_sym_raise_expression_token1] = ACTIONS(378), + [aux_sym_factor_abs_token1] = ACTIONS(380), + [aux_sym_primary_null_token1] = ACTIONS(382), + [aux_sym_allocator_token1] = ACTIONS(384), + [aux_sym_declare_expression_token1] = ACTIONS(386), + [aux_sym_case_expression_token1] = ACTIONS(388), + [aux_sym_component_choice_list_token1] = ACTIONS(390), + [aux_sym_global_mode_token1] = ACTIONS(392), + [aux_sym_non_empty_mode_token1] = ACTIONS(394), + [aux_sym_if_expression_token1] = ACTIONS(396), }, [13] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1524), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1792), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym__package_specification_token3] = ACTIONS(358), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(360), + [aux_sym_subprogram_body_token1] = ACTIONS(348), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_private_type_declaration_token1] = ACTIONS(350), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [14] = { - [sym__defining_identifier_list] = STATE(2067), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1536), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym__package_specification_token3] = ACTIONS(398), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(400), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [15] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(16), + [sym__basic_declarative_item] = STATE(16), + [sym__basic_declaration] = STATE(16), + [sym_package_declaration] = STATE(16), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(16), + [sym__proper_body] = STATE(16), + [sym_subprogram_body] = STATE(16), + [sym_package_body] = STATE(16), + [sym__type_declaration] = STATE(16), + [sym_full_type_declaration] = STATE(16), + [sym_private_type_declaration] = STATE(16), + [sym_private_extension_declaration] = STATE(16), + [sym_incomplete_type_declaration] = STATE(16), + [sym__aspect_clause] = STATE(16), + [sym_at_clause] = STATE(16), + [sym_attribute_definition_clause] = STATE(16), + [sym_body_stub] = STATE(16), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(16), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(16), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(16), + [sym_enumeration_representation_clause] = STATE(16), + [sym_exception_declaration] = STATE(16), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(16), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(16), + [sym_generic_package_declaration] = STATE(16), + [sym_generic_instantiation] = STATE(16), + [sym_null_procedure_declaration] = STATE(16), + [sym_number_declaration] = STATE(16), + [sym_object_declaration] = STATE(16), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(16), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(16), + [sym__renaming_declaration] = STATE(16), + [sym_object_renaming_declaration] = STATE(16), + [sym_exception_renaming_declaration] = STATE(16), + [sym_package_renaming_declaration] = STATE(16), + [sym_subprogram_renaming_declaration] = STATE(16), + [sym_generic_renaming_declaration] = STATE(16), + [sym_gnatprep_declarative_if_statement] = STATE(16), + [sym_subprogram_declaration] = STATE(16), + [sym_expression_function_declaration] = STATE(16), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(16), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(402), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(402), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(402), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [16] = { + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), @@ -11442,31 +11609,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -11477,7 +11644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), [sym_identifier] = ACTIONS(324), @@ -11494,227 +11661,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(362), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(362), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(362), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [15] = { - [sym_unary_adding_operator] = STATE(546), - [sym__name] = STATE(535), - [sym_selected_component] = STATE(518), - [sym_slice] = STATE(518), - [sym__attribute_reference] = STATE(518), - [sym__reduction_attribute_reference] = STATE(518), - [sym_value_sequence] = STATE(2066), - [sym_iterated_element_association] = STATE(1372), - [sym_qualified_expression] = STATE(518), - [sym__subtype_indication] = STATE(1495), - [sym_range_g] = STATE(1496), - [sym_expression] = STATE(1042), - [sym__relation] = STATE(610), - [sym_relation_membership] = STATE(610), - [sym_raise_expression] = STATE(610), - [sym__simple_expression] = STATE(676), - [sym_term] = STATE(562), - [sym__factor] = STATE(538), - [sym_factor_power] = STATE(538), - [sym_factor_abs] = STATE(538), - [sym_factor_not] = STATE(538), - [sym__parenthesized_expression] = STATE(551), - [sym__primary] = STATE(551), - [sym_primary_null] = STATE(551), - [sym_allocator] = STATE(551), - [sym__conditional_expression] = STATE(1761), - [sym_quantified_expression] = STATE(1761), - [sym_declare_expression] = STATE(1761), - [sym_case_expression] = STATE(1761), - [sym_component_choice_list] = STATE(1640), - [sym__aggregate] = STATE(551), - [sym__delta_aggregate] = STATE(551), - [sym_extension_aggregate] = STATE(551), - [sym_record_delta_aggregate] = STATE(551), - [sym_array_delta_aggregate] = STATE(551), - [sym_record_aggregate] = STATE(551), - [sym_record_component_association_list] = STATE(1754), - [sym__named_record_component_association] = STATE(1354), - [sym_null_exclusion] = STATE(843), - [sym__array_aggregate] = STATE(551), - [sym_positional_array_aggregate] = STATE(551), - [sym_null_array_aggregate] = STATE(551), - [sym_named_array_aggregate] = STATE(551), - [sym__array_component_association_list] = STATE(1749), - [sym_array_component_association] = STATE(1170), - [sym_discrete_choice_list] = STATE(1747), - [sym_discrete_choice] = STATE(1350), - [sym_global_aspect_element] = STATE(1429), - [sym_global_mode] = STATE(771), - [sym_non_empty_mode] = STATE(876), - [sym_if_expression] = STATE(1761), - [sym_function_call] = STATE(535), - [sym_identifier] = ACTIONS(364), - [sym_gnatprep_identifier] = ACTIONS(366), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(368), - [sym_character_literal] = ACTIONS(366), - [sym_numeric_literal] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(374), - [sym_target_name] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(378), - [aux_sym_chunk_specification_token1] = ACTIONS(380), - [aux_sym_iterated_element_association_token1] = ACTIONS(382), - [aux_sym_relation_membership_token1] = ACTIONS(384), - [aux_sym_raise_expression_token1] = ACTIONS(386), - [aux_sym_factor_abs_token1] = ACTIONS(388), - [aux_sym_primary_null_token1] = ACTIONS(390), - [aux_sym_allocator_token1] = ACTIONS(392), - [aux_sym_declare_expression_token1] = ACTIONS(394), - [aux_sym_case_expression_token1] = ACTIONS(396), - [aux_sym_component_choice_list_token1] = ACTIONS(398), - [aux_sym_global_mode_token1] = ACTIONS(400), - [aux_sym_non_empty_mode_token1] = ACTIONS(402), - [aux_sym_if_expression_token1] = ACTIONS(404), - }, - [16] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2010), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(344), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_private_type_declaration_token1] = ACTIONS(346), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(404), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(404), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(404), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [17] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1523), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1544), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -11731,68 +11742,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [18] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1638), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1776), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(342), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [19] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1792), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(348), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [20] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1972), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -11808,11 +11973,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [19] = { - [sym__defining_identifier_list] = STATE(2067), + [21] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2087), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(412), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [22] = { + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), @@ -11831,31 +12073,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -11866,7 +12108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), [sym_identifier] = ACTIONS(324), @@ -11874,84 +12116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym__package_specification_token3] = ACTIONS(412), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(412), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [20] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2068), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym__package_specification_token3] = ACTIONS(414), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(414), [aux_sym_relation_membership_token1] = ACTIONS(31), @@ -11962,68 +12127,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [21] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [23] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1982), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2071), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -12039,68 +12204,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [22] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [24] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1993), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1908), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -12116,68 +12281,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [23] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [25] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2101), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1877), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -12193,68 +12358,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [24] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [26] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2039), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1996), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -12270,68 +12435,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [25] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [27] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2084), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1992), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -12347,557 +12512,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [26] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1989), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(426), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [27] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2088), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(428), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [28] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1905), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(430), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [29] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1626), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(432), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [30] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2046), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(434), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [31] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1671), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(330), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [32] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(1987), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(356), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [33] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), [sym_label] = STATE(43), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), @@ -12924,36 +12550,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), [aux_sym__sequence_of_statements_repeat2] = STATE(43), - [sym_identifier] = ACTIONS(436), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_iterator_filter_token1] = ACTIONS(440), - [aux_sym__package_specification_token3] = ACTIONS(440), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_iterator_filter_token1] = ACTIONS(430), + [aux_sym__package_specification_token3] = ACTIONS(430), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(440), - [aux_sym_expression_token3] = ACTIONS(440), - [aux_sym_expression_token4] = ACTIONS(440), + [aux_sym_expression_token2] = ACTIONS(430), + [aux_sym_expression_token3] = ACTIONS(430), + [aux_sym_expression_token4] = ACTIONS(430), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), [aux_sym_declare_expression_token1] = ACTIONS(43), [aux_sym_case_expression_token1] = ACTIONS(45), - [aux_sym_exception_declaration_token1] = ACTIONS(440), + [aux_sym_exception_declaration_token1] = ACTIONS(430), [anon_sym_LT_LT] = ACTIONS(55), [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_elsif_expression_item_token1] = ACTIONS(440), + [aux_sym_elsif_expression_item_token1] = ACTIONS(430), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -12966,72 +12592,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [34] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(19), - [sym__basic_declarative_item] = STATE(19), - [sym__basic_declaration] = STATE(19), - [sym_package_declaration] = STATE(19), + [29] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(19), - [sym__proper_body] = STATE(19), - [sym_subprogram_body] = STATE(19), - [sym_package_body] = STATE(19), - [sym__type_declaration] = STATE(19), - [sym_full_type_declaration] = STATE(19), - [sym_private_type_declaration] = STATE(19), - [sym_private_extension_declaration] = STATE(19), - [sym_incomplete_type_declaration] = STATE(19), - [sym__aspect_clause] = STATE(19), - [sym_at_clause] = STATE(19), - [sym_attribute_definition_clause] = STATE(19), - [sym_body_stub] = STATE(19), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(19), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(19), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(19), - [sym_non_empty_declarative_part] = STATE(2010), - [sym_enumeration_representation_clause] = STATE(19), - [sym_exception_declaration] = STATE(19), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(19), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(19), - [sym_generic_package_declaration] = STATE(19), - [sym_generic_instantiation] = STATE(19), - [sym_null_procedure_declaration] = STATE(19), - [sym_number_declaration] = STATE(19), - [sym_object_declaration] = STATE(19), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(19), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(19), - [sym__renaming_declaration] = STATE(19), - [sym_object_renaming_declaration] = STATE(19), - [sym_exception_renaming_declaration] = STATE(19), - [sym_package_renaming_declaration] = STATE(19), - [sym_subprogram_renaming_declaration] = STATE(19), - [sym_generic_renaming_declaration] = STATE(19), - [sym_gnatprep_declarative_if_statement] = STATE(19), - [sym_subprogram_declaration] = STATE(19), - [sym_expression_function_declaration] = STATE(19), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(19), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(19), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2104), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym__package_specification_token1] = ACTIONS(19), [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(344), + [aux_sym_subprogram_body_token1] = ACTIONS(432), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), @@ -13040,11 +12666,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [30] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2049), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(434), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [31] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2032), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(354), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [32] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(2091), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(436), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [33] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1721), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(438), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [34] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(22), + [sym__basic_declarative_item] = STATE(22), + [sym__basic_declaration] = STATE(22), + [sym_package_declaration] = STATE(22), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(22), + [sym__proper_body] = STATE(22), + [sym_subprogram_body] = STATE(22), + [sym_package_body] = STATE(22), + [sym__type_declaration] = STATE(22), + [sym_full_type_declaration] = STATE(22), + [sym_private_type_declaration] = STATE(22), + [sym_private_extension_declaration] = STATE(22), + [sym_incomplete_type_declaration] = STATE(22), + [sym__aspect_clause] = STATE(22), + [sym_at_clause] = STATE(22), + [sym_attribute_definition_clause] = STATE(22), + [sym_body_stub] = STATE(22), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1862), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(22), + [sym_generic_package_declaration] = STATE(22), + [sym_generic_instantiation] = STATE(22), + [sym_null_procedure_declaration] = STATE(22), + [sym_number_declaration] = STATE(22), + [sym_object_declaration] = STATE(22), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(22), + [sym__renaming_declaration] = STATE(22), + [sym_object_renaming_declaration] = STATE(22), + [sym_exception_renaming_declaration] = STATE(22), + [sym_package_renaming_declaration] = STATE(22), + [sym_subprogram_renaming_declaration] = STATE(22), + [sym_generic_renaming_declaration] = STATE(22), + [sym_gnatprep_declarative_if_statement] = STATE(22), + [sym_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_subprogram_body_token1] = ACTIONS(440), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [35] = { - [sym__defining_identifier_list] = STATE(2067), + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), @@ -13063,31 +13074,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -13098,7 +13109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), [sym_identifier] = ACTIONS(324), @@ -13115,164 +13126,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(442), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [36] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(41), - [sym__basic_declarative_item] = STATE(41), - [sym__basic_declaration] = STATE(41), - [sym_package_declaration] = STATE(41), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(41), - [sym__proper_body] = STATE(41), - [sym_subprogram_body] = STATE(41), - [sym_package_body] = STATE(41), - [sym__type_declaration] = STATE(41), - [sym_full_type_declaration] = STATE(41), - [sym_private_type_declaration] = STATE(41), - [sym_private_extension_declaration] = STATE(41), - [sym_incomplete_type_declaration] = STATE(41), - [sym__aspect_clause] = STATE(41), - [sym_at_clause] = STATE(41), - [sym_attribute_definition_clause] = STATE(41), - [sym_body_stub] = STATE(41), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(41), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(41), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(41), - [sym_enumeration_representation_clause] = STATE(41), - [sym_exception_declaration] = STATE(41), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(41), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(41), - [sym_generic_package_declaration] = STATE(41), - [sym_generic_instantiation] = STATE(41), - [sym_null_procedure_declaration] = STATE(41), - [sym_number_declaration] = STATE(41), - [sym_object_declaration] = STATE(41), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(41), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(41), - [sym__renaming_declaration] = STATE(41), - [sym_object_renaming_declaration] = STATE(41), - [sym_exception_renaming_declaration] = STATE(41), - [sym_package_renaming_declaration] = STATE(41), - [sym_subprogram_renaming_declaration] = STATE(41), - [sym_generic_renaming_declaration] = STATE(41), - [sym_gnatprep_declarative_if_statement] = STATE(41), - [sym_subprogram_declaration] = STATE(41), - [sym_expression_function_declaration] = STATE(41), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(41), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(41), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(444), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [37] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(39), - [sym__basic_declarative_item] = STATE(39), - [sym__basic_declaration] = STATE(39), - [sym_package_declaration] = STATE(39), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(39), - [sym__proper_body] = STATE(39), - [sym_subprogram_body] = STATE(39), - [sym_package_body] = STATE(39), - [sym__type_declaration] = STATE(39), - [sym_full_type_declaration] = STATE(39), - [sym_private_type_declaration] = STATE(39), - [sym_private_extension_declaration] = STATE(39), - [sym_incomplete_type_declaration] = STATE(39), - [sym__aspect_clause] = STATE(39), - [sym_at_clause] = STATE(39), - [sym_attribute_definition_clause] = STATE(39), - [sym_body_stub] = STATE(39), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(39), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(39), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(39), - [sym_enumeration_representation_clause] = STATE(39), - [sym_exception_declaration] = STATE(39), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(39), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(39), - [sym_generic_package_declaration] = STATE(39), - [sym_generic_instantiation] = STATE(39), - [sym_null_procedure_declaration] = STATE(39), - [sym_number_declaration] = STATE(39), - [sym_object_declaration] = STATE(39), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(39), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(39), - [sym__renaming_declaration] = STATE(39), - [sym_object_renaming_declaration] = STATE(39), - [sym_exception_renaming_declaration] = STATE(39), - [sym_package_renaming_declaration] = STATE(39), - [sym_subprogram_renaming_declaration] = STATE(39), - [sym_generic_renaming_declaration] = STATE(39), - [sym_gnatprep_declarative_if_statement] = STATE(39), - [sym_subprogram_declaration] = STATE(39), - [sym_expression_function_declaration] = STATE(39), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(39), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(39), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(446), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [38] = { - [sym__defining_identifier_list] = STATE(2067), + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(40), [sym__basic_declarative_item] = STATE(40), [sym__basic_declaration] = STATE(40), @@ -13291,31 +13150,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(40), [sym_attribute_definition_clause] = STATE(40), [sym_body_stub] = STATE(40), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(40), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(40), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(40), [sym_enumeration_representation_clause] = STATE(40), [sym_exception_declaration] = STATE(40), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(40), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(40), [sym_generic_package_declaration] = STATE(40), [sym_generic_instantiation] = STATE(40), [sym_null_procedure_declaration] = STATE(40), [sym_number_declaration] = STATE(40), [sym_object_declaration] = STATE(40), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(40), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(40), [sym__renaming_declaration] = STATE(40), [sym_object_renaming_declaration] = STATE(40), @@ -13326,7 +13185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(40), [sym_subprogram_declaration] = STATE(40), [sym_expression_function_declaration] = STATE(40), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(40), [aux_sym_non_empty_declarative_part_repeat1] = STATE(40), [sym_identifier] = ACTIONS(324), @@ -13343,164 +13202,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(340), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [39] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(5), - [sym__basic_declarative_item] = STATE(5), - [sym__basic_declaration] = STATE(5), - [sym_package_declaration] = STATE(5), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(5), - [sym__proper_body] = STATE(5), - [sym_subprogram_body] = STATE(5), - [sym_package_body] = STATE(5), - [sym__type_declaration] = STATE(5), - [sym_full_type_declaration] = STATE(5), - [sym_private_type_declaration] = STATE(5), - [sym_private_extension_declaration] = STATE(5), - [sym_incomplete_type_declaration] = STATE(5), - [sym__aspect_clause] = STATE(5), - [sym_at_clause] = STATE(5), - [sym_attribute_definition_clause] = STATE(5), - [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(5), - [sym_enumeration_representation_clause] = STATE(5), - [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(5), - [sym_generic_package_declaration] = STATE(5), - [sym_generic_instantiation] = STATE(5), - [sym_null_procedure_declaration] = STATE(5), - [sym_number_declaration] = STATE(5), - [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(5), - [sym__renaming_declaration] = STATE(5), - [sym_object_renaming_declaration] = STATE(5), - [sym_exception_renaming_declaration] = STATE(5), - [sym_package_renaming_declaration] = STATE(5), - [sym_subprogram_renaming_declaration] = STATE(5), - [sym_generic_renaming_declaration] = STATE(5), - [sym_gnatprep_declarative_if_statement] = STATE(5), - [sym_subprogram_declaration] = STATE(5), - [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(5), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(448), - [aux_sym_subtype_declaration_token1] = ACTIONS(83), - }, - [40] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(5), - [sym__basic_declarative_item] = STATE(5), - [sym__basic_declaration] = STATE(5), - [sym_package_declaration] = STATE(5), - [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(5), - [sym__proper_body] = STATE(5), - [sym_subprogram_body] = STATE(5), - [sym_package_body] = STATE(5), - [sym__type_declaration] = STATE(5), - [sym_full_type_declaration] = STATE(5), - [sym_private_type_declaration] = STATE(5), - [sym_private_extension_declaration] = STATE(5), - [sym_incomplete_type_declaration] = STATE(5), - [sym__aspect_clause] = STATE(5), - [sym_at_clause] = STATE(5), - [sym_attribute_definition_clause] = STATE(5), - [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), - [sym__declarative_item_pragma] = STATE(5), - [sym_enumeration_representation_clause] = STATE(5), - [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(5), - [sym_generic_package_declaration] = STATE(5), - [sym_generic_instantiation] = STATE(5), - [sym_null_procedure_declaration] = STATE(5), - [sym_number_declaration] = STATE(5), - [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(5), - [sym__renaming_declaration] = STATE(5), - [sym_object_renaming_declaration] = STATE(5), - [sym_exception_renaming_declaration] = STATE(5), - [sym_package_renaming_declaration] = STATE(5), - [sym_subprogram_renaming_declaration] = STATE(5), - [sym_generic_renaming_declaration] = STATE(5), - [sym_gnatprep_declarative_if_statement] = STATE(5), - [sym_subprogram_declaration] = STATE(5), - [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(5), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), - [sym_identifier] = ACTIONS(324), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(326), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym__package_specification_token1] = ACTIONS(19), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_relation_membership_token1] = ACTIONS(31), - [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), - [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), - [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), - [aux_sym_interface_type_definition_token1] = ACTIONS(47), - [aux_sym_generic_formal_part_token1] = ACTIONS(51), - [aux_sym_global_mode_token1] = ACTIONS(53), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(444), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [41] = { - [sym__defining_identifier_list] = STATE(2067), + [37] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(42), + [sym__basic_declarative_item] = STATE(42), + [sym__basic_declaration] = STATE(42), + [sym_package_declaration] = STATE(42), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(42), + [sym__proper_body] = STATE(42), + [sym_subprogram_body] = STATE(42), + [sym_package_body] = STATE(42), + [sym__type_declaration] = STATE(42), + [sym_full_type_declaration] = STATE(42), + [sym_private_type_declaration] = STATE(42), + [sym_private_extension_declaration] = STATE(42), + [sym_incomplete_type_declaration] = STATE(42), + [sym__aspect_clause] = STATE(42), + [sym_at_clause] = STATE(42), + [sym_attribute_definition_clause] = STATE(42), + [sym_body_stub] = STATE(42), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(42), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(42), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(42), + [sym_enumeration_representation_clause] = STATE(42), + [sym_exception_declaration] = STATE(42), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(42), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(42), + [sym_generic_package_declaration] = STATE(42), + [sym_generic_instantiation] = STATE(42), + [sym_null_procedure_declaration] = STATE(42), + [sym_number_declaration] = STATE(42), + [sym_object_declaration] = STATE(42), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(42), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(42), + [sym__renaming_declaration] = STATE(42), + [sym_object_renaming_declaration] = STATE(42), + [sym_exception_renaming_declaration] = STATE(42), + [sym_package_renaming_declaration] = STATE(42), + [sym_subprogram_renaming_declaration] = STATE(42), + [sym_generic_renaming_declaration] = STATE(42), + [sym_gnatprep_declarative_if_statement] = STATE(42), + [sym_subprogram_declaration] = STATE(42), + [sym_expression_function_declaration] = STATE(42), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(42), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(446), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [38] = { + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(5), [sym__basic_declarative_item] = STATE(5), [sym__basic_declaration] = STATE(5), @@ -13519,31 +13302,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(5), [sym_attribute_definition_clause] = STATE(5), [sym_body_stub] = STATE(5), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(5), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(5), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(5), [sym_enumeration_representation_clause] = STATE(5), [sym_exception_declaration] = STATE(5), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(5), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(5), [sym_generic_package_declaration] = STATE(5), [sym_generic_instantiation] = STATE(5), [sym_null_procedure_declaration] = STATE(5), [sym_number_declaration] = STATE(5), [sym_object_declaration] = STATE(5), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(5), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(5), [sym__renaming_declaration] = STATE(5), [sym_object_renaming_declaration] = STATE(5), @@ -13554,7 +13337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(5), [sym_subprogram_declaration] = STATE(5), [sym_expression_function_declaration] = STATE(5), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(5), [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), [sym_identifier] = ACTIONS(324), @@ -13571,12 +13354,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(450), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(446), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, - [42] = { - [sym__defining_identifier_list] = STATE(2067), + [39] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(38), + [sym__basic_declarative_item] = STATE(38), + [sym__basic_declaration] = STATE(38), + [sym_package_declaration] = STATE(38), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(38), + [sym__proper_body] = STATE(38), + [sym_subprogram_body] = STATE(38), + [sym_package_body] = STATE(38), + [sym__type_declaration] = STATE(38), + [sym_full_type_declaration] = STATE(38), + [sym_private_type_declaration] = STATE(38), + [sym_private_extension_declaration] = STATE(38), + [sym_incomplete_type_declaration] = STATE(38), + [sym__aspect_clause] = STATE(38), + [sym_at_clause] = STATE(38), + [sym_attribute_definition_clause] = STATE(38), + [sym_body_stub] = STATE(38), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(38), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(38), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(38), + [sym_enumeration_representation_clause] = STATE(38), + [sym_exception_declaration] = STATE(38), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(38), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(38), + [sym_generic_package_declaration] = STATE(38), + [sym_generic_instantiation] = STATE(38), + [sym_null_procedure_declaration] = STATE(38), + [sym_number_declaration] = STATE(38), + [sym_object_declaration] = STATE(38), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(38), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(38), + [sym__renaming_declaration] = STATE(38), + [sym_object_renaming_declaration] = STATE(38), + [sym_exception_renaming_declaration] = STATE(38), + [sym_package_renaming_declaration] = STATE(38), + [sym_subprogram_renaming_declaration] = STATE(38), + [sym_generic_renaming_declaration] = STATE(38), + [sym_gnatprep_declarative_if_statement] = STATE(38), + [sym_subprogram_declaration] = STATE(38), + [sym_expression_function_declaration] = STATE(38), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(38), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(334), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [40] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym_package_declaration] = STATE(5), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(448), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [41] = { + [sym__defining_identifier_list] = STATE(2066), [sym__declarative_item] = STATE(35), [sym__basic_declarative_item] = STATE(35), [sym__basic_declaration] = STATE(35), @@ -13595,31 +13530,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_at_clause] = STATE(35), [sym_attribute_definition_clause] = STATE(35), [sym_body_stub] = STATE(35), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), [sym_task_body] = STATE(35), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), [sym_protected_body] = STATE(35), - [sym_protected_body_stub] = STATE(454), + [sym_protected_body_stub] = STATE(316), [sym__declarative_item_pragma] = STATE(35), [sym_enumeration_representation_clause] = STATE(35), [sym_exception_declaration] = STATE(35), - [sym_function_specification] = STATE(1228), + [sym_function_specification] = STATE(1135), [sym__generic_declaration] = STATE(35), - [sym_generic_formal_part] = STATE(938), + [sym_generic_formal_part] = STATE(947), [sym_generic_subprogram_declaration] = STATE(35), [sym_generic_package_declaration] = STATE(35), [sym_generic_instantiation] = STATE(35), [sym_null_procedure_declaration] = STATE(35), [sym_number_declaration] = STATE(35), [sym_object_declaration] = STATE(35), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), [sym_pragma_g] = STATE(35), - [sym_procedure_specification] = STATE(1225), + [sym_procedure_specification] = STATE(1175), [sym_record_representation_clause] = STATE(35), [sym__renaming_declaration] = STATE(35), [sym_object_renaming_declaration] = STATE(35), @@ -13630,7 +13565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_gnatprep_declarative_if_statement] = STATE(35), [sym_subprogram_declaration] = STATE(35), [sym_expression_function_declaration] = STATE(35), - [sym__subprogram_specification] = STATE(1124), + [sym__subprogram_specification] = STATE(1092), [sym_subtype_declaration] = STATE(35), [aux_sym_non_empty_declarative_part_repeat1] = STATE(35), [sym_identifier] = ACTIONS(324), @@ -13647,20 +13582,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(334), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(450), + [aux_sym_subtype_declaration_token1] = ACTIONS(83), + }, + [42] = { + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(5), + [sym__basic_declarative_item] = STATE(5), + [sym__basic_declaration] = STATE(5), + [sym_package_declaration] = STATE(5), + [sym__package_specification] = STATE(2063), + [sym_use_clause] = STATE(5), + [sym__proper_body] = STATE(5), + [sym_subprogram_body] = STATE(5), + [sym_package_body] = STATE(5), + [sym__type_declaration] = STATE(5), + [sym_full_type_declaration] = STATE(5), + [sym_private_type_declaration] = STATE(5), + [sym_private_extension_declaration] = STATE(5), + [sym_incomplete_type_declaration] = STATE(5), + [sym__aspect_clause] = STATE(5), + [sym_at_clause] = STATE(5), + [sym_attribute_definition_clause] = STATE(5), + [sym_body_stub] = STATE(5), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(5), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(5), + [sym_protected_body_stub] = STATE(316), + [sym__declarative_item_pragma] = STATE(5), + [sym_enumeration_representation_clause] = STATE(5), + [sym_exception_declaration] = STATE(5), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(5), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(5), + [sym_generic_package_declaration] = STATE(5), + [sym_generic_instantiation] = STATE(5), + [sym_null_procedure_declaration] = STATE(5), + [sym_number_declaration] = STATE(5), + [sym_object_declaration] = STATE(5), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_pragma_g] = STATE(5), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(5), + [sym__renaming_declaration] = STATE(5), + [sym_object_renaming_declaration] = STATE(5), + [sym_exception_renaming_declaration] = STATE(5), + [sym_package_renaming_declaration] = STATE(5), + [sym_subprogram_renaming_declaration] = STATE(5), + [sym_generic_renaming_declaration] = STATE(5), + [sym_gnatprep_declarative_if_statement] = STATE(5), + [sym_subprogram_declaration] = STATE(5), + [sym_expression_function_declaration] = STATE(5), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(5), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(5), + [sym_identifier] = ACTIONS(324), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(326), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym__package_specification_token1] = ACTIONS(19), + [aux_sym_use_clause_token2] = ACTIONS(25), + [aux_sym_relation_membership_token1] = ACTIONS(31), + [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), + [aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39), + [aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41), + [aux_sym_interface_type_definition_token1] = ACTIONS(47), + [aux_sym_generic_formal_part_token1] = ACTIONS(51), + [aux_sym_global_mode_token1] = ACTIONS(53), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(328), [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(452), [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [43] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(565), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(573), [sym_null_statement] = STATE(195), [sym_pragma_g] = STATE(195), [sym__simple_statement] = STATE(195), @@ -13685,20 +13696,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(195), [sym_extended_return_statement] = STATE(195), [sym_procedure_call_statement] = STATE(195), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(195), [sym_loop_statement] = STATE(195), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(195), - [aux_sym__sequence_of_statements_repeat2] = STATE(565), - [sym_identifier] = ACTIONS(436), + [aux_sym__sequence_of_statements_repeat2] = STATE(573), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_iterator_filter_token1] = ACTIONS(454), [aux_sym__package_specification_token3] = ACTIONS(454), [aux_sym_subprogram_body_token1] = ACTIONS(29), @@ -13727,56 +13738,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [44] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1145), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1233), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym__package_specification_token3] = ACTIONS(456), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_expression_token2] = ACTIONS(458), @@ -13802,130 +13813,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [45] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1281), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(46), + [sym_pragma_g] = STATE(46), + [sym__simple_statement] = STATE(46), + [sym__statement] = STATE(46), + [sym__compound_statement] = STATE(46), + [sym__select_statement] = STATE(46), + [sym_asynchronous_select] = STATE(46), + [sym_conditional_entry_call] = STATE(46), + [sym_timed_entry_call] = STATE(46), + [sym_selective_accept] = STATE(46), + [sym_abort_statement] = STATE(46), + [sym_requeue_statement] = STATE(46), + [sym_accept_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_block_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_gnatprep_if_statement] = STATE(46), + [sym_exit_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__delay_statement] = STATE(46), + [sym_delay_until_statement] = STATE(46), + [sym_delay_relative_statement] = STATE(46), + [sym_simple_return_statement] = STATE(46), + [sym_extended_return_statement] = STATE(46), + [sym_procedure_call_statement] = STATE(46), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(46), + [sym_loop_statement] = STATE(46), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(46), + [aux_sym__sequence_of_statements_repeat1] = STATE(46), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [aux_sym_gnatprep_if_statement_repeat1] = STATE(1207), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym__package_specification_token3] = ACTIONS(456), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(456), - [aux_sym_expression_token4] = ACTIONS(456), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [46] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(49), - [sym_pragma_g] = STATE(49), - [sym__simple_statement] = STATE(49), - [sym__statement] = STATE(49), - [sym__compound_statement] = STATE(49), - [sym__select_statement] = STATE(49), - [sym_asynchronous_select] = STATE(49), - [sym_conditional_entry_call] = STATE(49), - [sym_timed_entry_call] = STATE(49), - [sym_selective_accept] = STATE(49), - [sym_abort_statement] = STATE(49), - [sym_requeue_statement] = STATE(49), - [sym_accept_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_block_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_gnatprep_if_statement] = STATE(49), - [sym_exit_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__delay_statement] = STATE(49), - [sym_delay_until_statement] = STATE(49), - [sym_delay_relative_statement] = STATE(49), - [sym_simple_return_statement] = STATE(49), - [sym_extended_return_statement] = STATE(49), - [sym_procedure_call_statement] = STATE(49), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(49), - [sym_loop_statement] = STATE(49), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(49), - [aux_sym__sequence_of_statements_repeat1] = STATE(49), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [aux_sym_gnatprep_if_statement_repeat1] = STATE(1223), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -13949,164 +13886,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [47] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1278), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(458), - [aux_sym_expression_token3] = ACTIONS(466), - [aux_sym_expression_token4] = ACTIONS(466), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [48] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1284), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym__package_specification_token3] = ACTIONS(468), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(468), - [aux_sym_expression_token4] = ACTIONS(468), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [49] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), + [46] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -14132,22 +13921,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [aux_sym_gnatprep_if_statement_repeat1] = STATE(1183), - [sym_identifier] = ACTIONS(436), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [aux_sym_gnatprep_if_statement_repeat1] = STATE(1224), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14163,8 +13952,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), [aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(460), - [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(470), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(472), + [aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(466), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(468), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [47] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1272), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(458), + [aux_sym_expression_token3] = ACTIONS(470), + [aux_sym_expression_token4] = ACTIONS(470), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [48] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1269), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym__package_specification_token3] = ACTIONS(472), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(472), + [aux_sym_expression_token4] = ACTIONS(472), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [49] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1313), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym__package_specification_token3] = ACTIONS(456), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(456), + [aux_sym_expression_token4] = ACTIONS(456), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -14172,55 +14183,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [50] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(51), - [sym_pragma_g] = STATE(51), - [sym__simple_statement] = STATE(51), - [sym__statement] = STATE(51), - [sym__compound_statement] = STATE(51), - [sym__select_statement] = STATE(51), - [sym_asynchronous_select] = STATE(51), - [sym_conditional_entry_call] = STATE(51), - [sym_timed_entry_call] = STATE(51), - [sym_selective_accept] = STATE(51), - [sym_abort_statement] = STATE(51), - [sym_requeue_statement] = STATE(51), - [sym_accept_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_block_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_gnatprep_if_statement] = STATE(51), - [sym_exit_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__delay_statement] = STATE(51), - [sym_delay_until_statement] = STATE(51), - [sym_delay_relative_statement] = STATE(51), - [sym_simple_return_statement] = STATE(51), - [sym_extended_return_statement] = STATE(51), - [sym_procedure_call_statement] = STATE(51), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(51), - [sym_loop_statement] = STATE(51), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(51), - [aux_sym__sequence_of_statements_repeat1] = STATE(51), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(4), + [sym_pragma_g] = STATE(4), + [sym__simple_statement] = STATE(4), + [sym__statement] = STATE(4), + [sym__compound_statement] = STATE(4), + [sym__select_statement] = STATE(4), + [sym_asynchronous_select] = STATE(4), + [sym_conditional_entry_call] = STATE(4), + [sym_timed_entry_call] = STATE(4), + [sym_selective_accept] = STATE(4), + [sym_abort_statement] = STATE(4), + [sym_requeue_statement] = STATE(4), + [sym_accept_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_block_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_gnatprep_if_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__delay_statement] = STATE(4), + [sym_delay_until_statement] = STATE(4), + [sym_delay_relative_statement] = STATE(4), + [sym_simple_return_statement] = STATE(4), + [sym_extended_return_statement] = STATE(4), + [sym_procedure_call_statement] = STATE(4), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(4), + [aux_sym__sequence_of_statements_repeat1] = STATE(4), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14245,55 +14256,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [51] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(50), + [sym_pragma_g] = STATE(50), + [sym__simple_statement] = STATE(50), + [sym__statement] = STATE(50), + [sym__compound_statement] = STATE(50), + [sym__select_statement] = STATE(50), + [sym_asynchronous_select] = STATE(50), + [sym_conditional_entry_call] = STATE(50), + [sym_timed_entry_call] = STATE(50), + [sym_selective_accept] = STATE(50), + [sym_abort_statement] = STATE(50), + [sym_requeue_statement] = STATE(50), + [sym_accept_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_block_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_gnatprep_if_statement] = STATE(50), + [sym_exit_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym__delay_statement] = STATE(50), + [sym_delay_until_statement] = STATE(50), + [sym_delay_relative_statement] = STATE(50), + [sym_simple_return_statement] = STATE(50), + [sym_extended_return_statement] = STATE(50), + [sym_procedure_call_statement] = STATE(50), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(50), + [sym_loop_statement] = STATE(50), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(50), + [aux_sym__sequence_of_statements_repeat1] = STATE(50), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14318,57 +14329,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [52] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1841), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1616), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14390,57 +14401,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [53] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), [sym_handled_sequence_of_statements] = STATE(2112), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14462,57 +14473,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [54] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2085), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2094), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14534,57 +14545,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [55] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1790), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2124), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14606,57 +14617,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [56] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1835), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1712), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14678,57 +14689,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [57] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1823), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1693), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14750,57 +14761,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [58] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1666), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2115), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14822,57 +14833,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [59] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1990), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1872), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14894,57 +14905,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [60] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1736), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1674), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -14966,57 +14977,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [61] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2075), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2078), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15038,57 +15049,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [62] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2121), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2075), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15110,57 +15121,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [63] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2000), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1826), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15182,57 +15193,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [64] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1703), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1895), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15254,57 +15265,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [65] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2072), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1655), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15326,57 +15337,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [66] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1646), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2000), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15398,57 +15409,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [67] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2093), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2105), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15470,57 +15481,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [68] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1832), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2100), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15542,57 +15553,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [69] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2103), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1815), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15614,129 +15625,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [70] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2109), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), + [sym_unary_adding_operator] = STATE(551), + [sym__name] = STATE(537), + [sym_selected_component] = STATE(528), + [sym_slice] = STATE(528), + [sym__attribute_reference] = STATE(528), + [sym__reduction_attribute_reference] = STATE(528), + [sym_value_sequence] = STATE(2065), + [sym_iterated_element_association] = STATE(1279), + [sym_qualified_expression] = STATE(528), + [sym__subtype_indication] = STATE(1576), + [sym_range_g] = STATE(1579), + [sym_expression] = STATE(1039), + [sym__relation] = STATE(616), + [sym_relation_membership] = STATE(616), + [sym_raise_expression] = STATE(616), + [sym__simple_expression] = STATE(675), + [sym_term] = STATE(570), + [sym__factor] = STATE(541), + [sym_factor_power] = STATE(541), + [sym_factor_abs] = STATE(541), + [sym_factor_not] = STATE(541), + [sym__parenthesized_expression] = STATE(555), + [sym__primary] = STATE(555), + [sym_primary_null] = STATE(555), + [sym_allocator] = STATE(555), + [sym__conditional_expression] = STATE(1750), + [sym_quantified_expression] = STATE(1750), + [sym_declare_expression] = STATE(1750), + [sym_case_expression] = STATE(1750), + [sym_component_choice_list] = STATE(1747), + [sym__aggregate] = STATE(555), + [sym__delta_aggregate] = STATE(555), + [sym_extension_aggregate] = STATE(555), + [sym_record_delta_aggregate] = STATE(555), + [sym_array_delta_aggregate] = STATE(555), + [sym_record_aggregate] = STATE(555), + [sym_record_component_association_list] = STATE(1742), + [sym__named_record_component_association] = STATE(1253), + [sym_null_exclusion] = STATE(826), + [sym__array_aggregate] = STATE(555), + [sym_positional_array_aggregate] = STATE(555), + [sym_null_array_aggregate] = STATE(555), + [sym_named_array_aggregate] = STATE(555), + [sym__array_component_association_list] = STATE(1737), + [sym_array_component_association] = STATE(1190), + [sym_discrete_choice_list] = STATE(1727), + [sym_discrete_choice] = STATE(1261), + [sym_if_expression] = STATE(1750), + [sym_function_call] = STATE(537), + [sym_identifier] = ACTIONS(356), + [sym_gnatprep_identifier] = ACTIONS(358), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), + [sym_string_literal] = ACTIONS(360), + [sym_character_literal] = ACTIONS(358), + [sym_numeric_literal] = ACTIONS(362), + [anon_sym_PLUS] = ACTIONS(364), + [anon_sym_DASH] = ACTIONS(366), + [sym_target_name] = ACTIONS(358), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [aux_sym_iterated_element_association_token1] = ACTIONS(374), + [aux_sym_relation_membership_token1] = ACTIONS(376), + [aux_sym_raise_expression_token1] = ACTIONS(378), + [aux_sym_factor_abs_token1] = ACTIONS(380), + [aux_sym_primary_null_token1] = ACTIONS(382), + [aux_sym_allocator_token1] = ACTIONS(384), + [aux_sym_declare_expression_token1] = ACTIONS(386), + [aux_sym_case_expression_token1] = ACTIONS(388), + [aux_sym_component_choice_list_token1] = ACTIONS(390), + [aux_sym_if_expression_token1] = ACTIONS(396), }, [71] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1673), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1716), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15758,129 +15769,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [72] = { - [sym_unary_adding_operator] = STATE(546), - [sym__name] = STATE(535), - [sym_selected_component] = STATE(518), - [sym_slice] = STATE(518), - [sym__attribute_reference] = STATE(518), - [sym__reduction_attribute_reference] = STATE(518), - [sym_value_sequence] = STATE(2066), - [sym_iterated_element_association] = STATE(1372), - [sym_qualified_expression] = STATE(518), - [sym__subtype_indication] = STATE(1495), - [sym_range_g] = STATE(1496), - [sym_expression] = STATE(1042), - [sym__relation] = STATE(610), - [sym_relation_membership] = STATE(610), - [sym_raise_expression] = STATE(610), - [sym__simple_expression] = STATE(676), - [sym_term] = STATE(562), - [sym__factor] = STATE(538), - [sym_factor_power] = STATE(538), - [sym_factor_abs] = STATE(538), - [sym_factor_not] = STATE(538), - [sym__parenthesized_expression] = STATE(551), - [sym__primary] = STATE(551), - [sym_primary_null] = STATE(551), - [sym_allocator] = STATE(551), - [sym__conditional_expression] = STATE(1761), - [sym_quantified_expression] = STATE(1761), - [sym_declare_expression] = STATE(1761), - [sym_case_expression] = STATE(1761), - [sym_component_choice_list] = STATE(1640), - [sym__aggregate] = STATE(551), - [sym__delta_aggregate] = STATE(551), - [sym_extension_aggregate] = STATE(551), - [sym_record_delta_aggregate] = STATE(551), - [sym_array_delta_aggregate] = STATE(551), - [sym_record_aggregate] = STATE(551), - [sym_record_component_association_list] = STATE(1754), - [sym__named_record_component_association] = STATE(1354), - [sym_null_exclusion] = STATE(843), - [sym__array_aggregate] = STATE(551), - [sym_positional_array_aggregate] = STATE(551), - [sym_null_array_aggregate] = STATE(551), - [sym_named_array_aggregate] = STATE(551), - [sym__array_component_association_list] = STATE(1749), - [sym_array_component_association] = STATE(1170), - [sym_discrete_choice_list] = STATE(1747), - [sym_discrete_choice] = STATE(1350), - [sym_if_expression] = STATE(1761), - [sym_function_call] = STATE(535), - [sym_identifier] = ACTIONS(364), - [sym_gnatprep_identifier] = ACTIONS(366), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(368), - [sym_character_literal] = ACTIONS(366), - [sym_numeric_literal] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(374), - [sym_target_name] = ACTIONS(366), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(378), - [aux_sym_iterated_element_association_token1] = ACTIONS(382), - [aux_sym_relation_membership_token1] = ACTIONS(384), - [aux_sym_raise_expression_token1] = ACTIONS(386), - [aux_sym_factor_abs_token1] = ACTIONS(388), - [aux_sym_primary_null_token1] = ACTIONS(390), - [aux_sym_allocator_token1] = ACTIONS(392), - [aux_sym_declare_expression_token1] = ACTIONS(394), - [aux_sym_case_expression_token1] = ACTIONS(396), - [aux_sym_component_choice_list_token1] = ACTIONS(398), - [aux_sym_if_expression_token1] = ACTIONS(404), - }, - [73] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2043), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1961), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [73] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2088), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15902,57 +15913,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [74] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2102), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1700), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -15974,57 +15985,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [75] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1783), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1838), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16046,57 +16057,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [76] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2097), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2128), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16118,57 +16129,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [77] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1804), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2029), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16190,57 +16201,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [78] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1709), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1772), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16262,57 +16273,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [79] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2042), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2096), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16334,57 +16345,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [80] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2047), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1807), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16406,57 +16417,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [81] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1995), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2045), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16478,57 +16489,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [82] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(2055), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(2050), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16550,57 +16561,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [83] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_handled_sequence_of_statements] = STATE(1690), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1552), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_handled_sequence_of_statements] = STATE(1993), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1491), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16622,55 +16633,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [84] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(100), - [sym_pragma_g] = STATE(100), - [sym__simple_statement] = STATE(100), - [sym__statement] = STATE(100), - [sym__compound_statement] = STATE(100), - [sym__select_statement] = STATE(100), - [sym_asynchronous_select] = STATE(100), - [sym_conditional_entry_call] = STATE(100), - [sym_timed_entry_call] = STATE(100), - [sym_selective_accept] = STATE(100), - [sym_abort_statement] = STATE(100), - [sym_requeue_statement] = STATE(100), - [sym_accept_statement] = STATE(100), - [sym_case_statement] = STATE(100), - [sym_block_statement] = STATE(100), - [sym_if_statement] = STATE(100), - [sym_gnatprep_if_statement] = STATE(100), - [sym_exit_statement] = STATE(100), - [sym_goto_statement] = STATE(100), - [sym__delay_statement] = STATE(100), - [sym_delay_until_statement] = STATE(100), - [sym_delay_relative_statement] = STATE(100), - [sym_simple_return_statement] = STATE(100), - [sym_extended_return_statement] = STATE(100), - [sym_procedure_call_statement] = STATE(100), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(100), - [sym_loop_statement] = STATE(100), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(100), - [aux_sym__sequence_of_statements_repeat1] = STATE(100), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1054), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16685,7 +16697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(472), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -16693,55 +16704,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [85] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(88), - [sym_pragma_g] = STATE(88), - [sym__simple_statement] = STATE(88), - [sym__statement] = STATE(88), - [sym__compound_statement] = STATE(88), - [sym__select_statement] = STATE(88), - [sym_asynchronous_select] = STATE(88), - [sym_conditional_entry_call] = STATE(88), - [sym_timed_entry_call] = STATE(88), - [sym_selective_accept] = STATE(88), - [sym_abort_statement] = STATE(88), - [sym_requeue_statement] = STATE(88), - [sym_accept_statement] = STATE(88), - [sym_case_statement] = STATE(88), - [sym_block_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_gnatprep_if_statement] = STATE(88), - [sym_exit_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__delay_statement] = STATE(88), - [sym_delay_until_statement] = STATE(88), - [sym_delay_relative_statement] = STATE(88), - [sym_simple_return_statement] = STATE(88), - [sym_extended_return_statement] = STATE(88), - [sym_procedure_call_statement] = STATE(88), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(88), - [sym_loop_statement] = STATE(88), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(88), - [aux_sym__sequence_of_statements_repeat1] = STATE(88), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1831), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [86] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1302), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [87] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(4), + [sym_pragma_g] = STATE(4), + [sym__simple_statement] = STATE(4), + [sym__statement] = STATE(4), + [sym__compound_statement] = STATE(4), + [sym__select_statement] = STATE(4), + [sym_asynchronous_select] = STATE(4), + [sym_conditional_entry_call] = STATE(4), + [sym_timed_entry_call] = STATE(4), + [sym_selective_accept] = STATE(4), + [sym_abort_statement] = STATE(4), + [sym_requeue_statement] = STATE(4), + [sym_accept_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_block_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_gnatprep_if_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__delay_statement] = STATE(4), + [sym_delay_until_statement] = STATE(4), + [sym_delay_relative_statement] = STATE(4), + [sym_simple_return_statement] = STATE(4), + [sym_extended_return_statement] = STATE(4), + [sym_procedure_call_statement] = STATE(4), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(4), + [aux_sym__sequence_of_statements_repeat1] = STATE(4), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16763,56 +16916,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [86] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(90), - [sym_pragma_g] = STATE(90), - [sym__simple_statement] = STATE(90), - [sym__statement] = STATE(90), - [sym__compound_statement] = STATE(90), - [sym__select_statement] = STATE(90), - [sym_asynchronous_select] = STATE(90), - [sym_conditional_entry_call] = STATE(90), - [sym_timed_entry_call] = STATE(90), - [sym_selective_accept] = STATE(90), - [sym_abort_statement] = STATE(90), - [sym_requeue_statement] = STATE(90), - [sym_accept_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_block_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_gnatprep_if_statement] = STATE(90), - [sym_exit_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__delay_statement] = STATE(90), - [sym_delay_until_statement] = STATE(90), - [sym_delay_relative_statement] = STATE(90), - [sym_simple_return_statement] = STATE(90), - [sym_extended_return_statement] = STATE(90), - [sym_procedure_call_statement] = STATE(90), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(90), - [sym_loop_statement] = STATE(90), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(90), - [aux_sym__sequence_of_statements_repeat1] = STATE(90), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [88] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(106), + [sym_pragma_g] = STATE(106), + [sym__simple_statement] = STATE(106), + [sym__statement] = STATE(106), + [sym__compound_statement] = STATE(106), + [sym__select_statement] = STATE(106), + [sym_asynchronous_select] = STATE(106), + [sym_conditional_entry_call] = STATE(106), + [sym_timed_entry_call] = STATE(106), + [sym_selective_accept] = STATE(106), + [sym_abort_statement] = STATE(106), + [sym_requeue_statement] = STATE(106), + [sym_accept_statement] = STATE(106), + [sym_case_statement] = STATE(106), + [sym_block_statement] = STATE(106), + [sym_if_statement] = STATE(106), + [sym_gnatprep_if_statement] = STATE(106), + [sym_exit_statement] = STATE(106), + [sym_goto_statement] = STATE(106), + [sym__delay_statement] = STATE(106), + [sym_delay_until_statement] = STATE(106), + [sym_delay_relative_statement] = STATE(106), + [sym_simple_return_statement] = STATE(106), + [sym_extended_return_statement] = STATE(106), + [sym_procedure_call_statement] = STATE(106), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(106), + [sym_loop_statement] = STATE(106), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(106), + [aux_sym__sequence_of_statements_repeat1] = STATE(106), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -16834,199 +16987,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [87] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1918), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [88] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(482), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, [89] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1066), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1518), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17048,15 +17059,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [90] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(87), + [sym_pragma_g] = STATE(87), + [sym__simple_statement] = STATE(87), + [sym__statement] = STATE(87), + [sym__compound_statement] = STATE(87), + [sym__select_statement] = STATE(87), + [sym_asynchronous_select] = STATE(87), + [sym_conditional_entry_call] = STATE(87), + [sym_timed_entry_call] = STATE(87), + [sym_selective_accept] = STATE(87), + [sym_abort_statement] = STATE(87), + [sym_requeue_statement] = STATE(87), + [sym_accept_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_block_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_gnatprep_if_statement] = STATE(87), + [sym_exit_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__delay_statement] = STATE(87), + [sym_delay_until_statement] = STATE(87), + [sym_delay_relative_statement] = STATE(87), + [sym_simple_return_statement] = STATE(87), + [sym_extended_return_statement] = STATE(87), + [sym_procedure_call_statement] = STATE(87), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(87), + [sym_loop_statement] = STATE(87), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(87), + [aux_sym__sequence_of_statements_repeat1] = STATE(87), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(482), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [91] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -17082,21 +17164,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17118,128 +17200,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [91] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1507), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, [92] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(2071), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1676), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17261,56 +17272,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [93] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1427), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1749), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17332,56 +17343,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [94] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1845), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1647), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17403,126 +17414,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [95] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1953), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(91), + [sym_pragma_g] = STATE(91), + [sym__simple_statement] = STATE(91), + [sym__statement] = STATE(91), + [sym__compound_statement] = STATE(91), + [sym__select_statement] = STATE(91), + [sym_asynchronous_select] = STATE(91), + [sym_conditional_entry_call] = STATE(91), + [sym_timed_entry_call] = STATE(91), + [sym_selective_accept] = STATE(91), + [sym_abort_statement] = STATE(91), + [sym_requeue_statement] = STATE(91), + [sym_accept_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_block_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_gnatprep_if_statement] = STATE(91), + [sym_exit_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__delay_statement] = STATE(91), + [sym_delay_until_statement] = STATE(91), + [sym_delay_relative_statement] = STATE(91), + [sym_simple_return_statement] = STATE(91), + [sym_extended_return_statement] = STATE(91), + [sym_procedure_call_statement] = STATE(91), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(91), + [sym_loop_statement] = STATE(91), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(91), + [aux_sym__sequence_of_statements_repeat1] = STATE(91), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [96] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17544,57 +17484,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, - [97] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1634), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [96] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1976), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [97] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1510), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17616,157 +17627,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [98] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(96), - [sym_pragma_g] = STATE(96), - [sym__simple_statement] = STATE(96), - [sym__statement] = STATE(96), - [sym__compound_statement] = STATE(96), - [sym__select_statement] = STATE(96), - [sym_asynchronous_select] = STATE(96), - [sym_conditional_entry_call] = STATE(96), - [sym_timed_entry_call] = STATE(96), - [sym_selective_accept] = STATE(96), - [sym_abort_statement] = STATE(96), - [sym_requeue_statement] = STATE(96), - [sym_accept_statement] = STATE(96), - [sym_case_statement] = STATE(96), - [sym_block_statement] = STATE(96), - [sym_if_statement] = STATE(96), - [sym_gnatprep_if_statement] = STATE(96), - [sym_exit_statement] = STATE(96), - [sym_goto_statement] = STATE(96), - [sym__delay_statement] = STATE(96), - [sym_delay_until_statement] = STATE(96), - [sym_delay_relative_statement] = STATE(96), - [sym_simple_return_statement] = STATE(96), - [sym_extended_return_statement] = STATE(96), - [sym_procedure_call_statement] = STATE(96), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(96), - [sym_loop_statement] = STATE(96), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(96), - [aux_sym__sequence_of_statements_repeat1] = STATE(96), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(488), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [99] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1920), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [100] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -17792,21 +17661,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(4), [sym_extended_return_statement] = STATE(4), [sym_procedure_call_statement] = STATE(4), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(4), [sym_loop_statement] = STATE(4), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(486), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [99] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1582), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [100] = { + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1726), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17821,7 +17833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(488), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -17829,56 +17840,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [101] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1850), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1910), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17900,56 +17911,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [102] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1579), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1969), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -17971,56 +17982,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [103] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1437), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1943), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -18042,56 +18053,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [104] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(2133), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(98), + [sym_pragma_g] = STATE(98), + [sym__simple_statement] = STATE(98), + [sym__statement] = STATE(98), + [sym__compound_statement] = STATE(98), + [sym__select_statement] = STATE(98), + [sym_asynchronous_select] = STATE(98), + [sym_conditional_entry_call] = STATE(98), + [sym_timed_entry_call] = STATE(98), + [sym_selective_accept] = STATE(98), + [sym_abort_statement] = STATE(98), + [sym_requeue_statement] = STATE(98), + [sym_accept_statement] = STATE(98), + [sym_case_statement] = STATE(98), + [sym_block_statement] = STATE(98), + [sym_if_statement] = STATE(98), + [sym_gnatprep_if_statement] = STATE(98), + [sym_exit_statement] = STATE(98), + [sym_goto_statement] = STATE(98), + [sym__delay_statement] = STATE(98), + [sym_delay_until_statement] = STATE(98), + [sym_delay_relative_statement] = STATE(98), + [sym_simple_return_statement] = STATE(98), + [sym_extended_return_statement] = STATE(98), + [sym_procedure_call_statement] = STATE(98), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(98), + [sym_loop_statement] = STATE(98), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(98), + [aux_sym__sequence_of_statements_repeat1] = STATE(98), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -18106,6 +18116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(468), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -18113,56 +18124,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [105] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(2096), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(28), + [sym_pragma_g] = STATE(28), + [sym__sequence_of_statements] = STATE(1695), + [sym__simple_statement] = STATE(28), + [sym__statement] = STATE(28), + [sym__compound_statement] = STATE(28), + [sym__select_statement] = STATE(28), + [sym_asynchronous_select] = STATE(28), + [sym_conditional_entry_call] = STATE(28), + [sym_timed_entry_call] = STATE(28), + [sym_selective_accept] = STATE(28), + [sym_abort_statement] = STATE(28), + [sym_requeue_statement] = STATE(28), + [sym_accept_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_block_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_gnatprep_if_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__delay_statement] = STATE(28), + [sym_delay_until_statement] = STATE(28), + [sym_delay_relative_statement] = STATE(28), + [sym_simple_return_statement] = STATE(28), + [sym_extended_return_statement] = STATE(28), + [sym_procedure_call_statement] = STATE(28), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(28), + [aux_sym__sequence_of_statements_repeat1] = STATE(28), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -18184,56 +18195,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [106] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(110), - [sym_null_statement] = STATE(33), - [sym_pragma_g] = STATE(33), - [sym__sequence_of_statements] = STATE(1663), - [sym__simple_statement] = STATE(33), - [sym__statement] = STATE(33), - [sym__compound_statement] = STATE(33), - [sym__select_statement] = STATE(33), - [sym_asynchronous_select] = STATE(33), - [sym_conditional_entry_call] = STATE(33), - [sym_timed_entry_call] = STATE(33), - [sym_selective_accept] = STATE(33), - [sym_abort_statement] = STATE(33), - [sym_requeue_statement] = STATE(33), - [sym_accept_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_block_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_gnatprep_if_statement] = STATE(33), - [sym_exit_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__delay_statement] = STATE(33), - [sym_delay_until_statement] = STATE(33), - [sym_delay_relative_statement] = STATE(33), - [sym_simple_return_statement] = STATE(33), - [sym_extended_return_statement] = STATE(33), - [sym_procedure_call_statement] = STATE(33), - [sym_function_call] = STATE(1024), - [sym_raise_statement] = STATE(33), - [sym_loop_statement] = STATE(33), - [sym_iteration_scheme] = STATE(2051), - [sym_assignment_statement] = STATE(33), - [aux_sym__sequence_of_statements_repeat1] = STATE(33), - [aux_sym__sequence_of_statements_repeat2] = STATE(110), - [sym_identifier] = ACTIONS(436), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(109), + [sym_null_statement] = STATE(4), + [sym_pragma_g] = STATE(4), + [sym__simple_statement] = STATE(4), + [sym__statement] = STATE(4), + [sym__compound_statement] = STATE(4), + [sym__select_statement] = STATE(4), + [sym_asynchronous_select] = STATE(4), + [sym_conditional_entry_call] = STATE(4), + [sym_timed_entry_call] = STATE(4), + [sym_selective_accept] = STATE(4), + [sym_abort_statement] = STATE(4), + [sym_requeue_statement] = STATE(4), + [sym_accept_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_block_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_gnatprep_if_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__delay_statement] = STATE(4), + [sym_delay_until_statement] = STATE(4), + [sym_delay_relative_statement] = STATE(4), + [sym_simple_return_statement] = STATE(4), + [sym_extended_return_statement] = STATE(4), + [sym_procedure_call_statement] = STATE(4), + [sym_function_call] = STATE(1038), + [sym_raise_statement] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_iteration_scheme] = STATE(2052), + [sym_assignment_statement] = STATE(4), + [aux_sym__sequence_of_statements_repeat1] = STATE(4), + [aux_sym__sequence_of_statements_repeat2] = STATE(109), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -18248,6 +18258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(488), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -18255,59 +18266,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, [107] = { - [sym__defining_identifier_list] = STATE(2067), - [sym__declarative_item] = STATE(523), - [sym__basic_declarative_item] = STATE(523), - [sym__basic_declaration] = STATE(523), - [sym_package_declaration] = STATE(523), + [sym__defining_identifier_list] = STATE(2066), + [sym__declarative_item] = STATE(520), + [sym__basic_declarative_item] = STATE(520), + [sym__basic_declaration] = STATE(520), + [sym_package_declaration] = STATE(520), [sym__package_specification] = STATE(2063), - [sym_use_clause] = STATE(523), - [sym__proper_body] = STATE(523), - [sym_subprogram_body] = STATE(523), - [sym_package_body] = STATE(523), - [sym__type_declaration] = STATE(523), - [sym_full_type_declaration] = STATE(523), - [sym_private_type_declaration] = STATE(523), - [sym_private_extension_declaration] = STATE(523), - [sym_incomplete_type_declaration] = STATE(523), - [sym__aspect_clause] = STATE(523), - [sym_at_clause] = STATE(523), - [sym_attribute_definition_clause] = STATE(523), - [sym_body_stub] = STATE(523), - [sym_subprogram_body_stub] = STATE(454), - [sym_package_body_stub] = STATE(454), - [sym_task_body] = STATE(523), - [sym_task_body_stub] = STATE(454), - [sym_protected_type_declaration] = STATE(453), - [sym_single_protected_declaration] = STATE(452), - [sym_protected_body] = STATE(523), - [sym_protected_body_stub] = STATE(454), - [sym_enumeration_representation_clause] = STATE(523), - [sym_exception_declaration] = STATE(523), - [sym_function_specification] = STATE(1228), - [sym__generic_declaration] = STATE(523), - [sym_generic_formal_part] = STATE(938), - [sym_generic_subprogram_declaration] = STATE(523), - [sym_generic_package_declaration] = STATE(523), - [sym_generic_instantiation] = STATE(523), - [sym_null_procedure_declaration] = STATE(523), - [sym_number_declaration] = STATE(523), - [sym_object_declaration] = STATE(523), - [sym_single_task_declaration] = STATE(452), - [sym_task_type_declaration] = STATE(453), - [sym_overriding_indicator] = STATE(1117), - [sym_procedure_specification] = STATE(1225), - [sym_record_representation_clause] = STATE(523), - [sym__renaming_declaration] = STATE(523), - [sym_object_renaming_declaration] = STATE(523), - [sym_exception_renaming_declaration] = STATE(523), - [sym_package_renaming_declaration] = STATE(523), - [sym_subprogram_renaming_declaration] = STATE(523), - [sym_generic_renaming_declaration] = STATE(523), - [sym_subprogram_declaration] = STATE(523), - [sym_expression_function_declaration] = STATE(523), - [sym__subprogram_specification] = STATE(1124), - [sym_subtype_declaration] = STATE(523), + [sym_use_clause] = STATE(520), + [sym__proper_body] = STATE(520), + [sym_subprogram_body] = STATE(520), + [sym_package_body] = STATE(520), + [sym__type_declaration] = STATE(520), + [sym_full_type_declaration] = STATE(520), + [sym_private_type_declaration] = STATE(520), + [sym_private_extension_declaration] = STATE(520), + [sym_incomplete_type_declaration] = STATE(520), + [sym__aspect_clause] = STATE(520), + [sym_at_clause] = STATE(520), + [sym_attribute_definition_clause] = STATE(520), + [sym_body_stub] = STATE(520), + [sym_subprogram_body_stub] = STATE(316), + [sym_package_body_stub] = STATE(316), + [sym_task_body] = STATE(520), + [sym_task_body_stub] = STATE(316), + [sym_protected_type_declaration] = STATE(322), + [sym_single_protected_declaration] = STATE(325), + [sym_protected_body] = STATE(520), + [sym_protected_body_stub] = STATE(316), + [sym_enumeration_representation_clause] = STATE(520), + [sym_exception_declaration] = STATE(520), + [sym_function_specification] = STATE(1135), + [sym__generic_declaration] = STATE(520), + [sym_generic_formal_part] = STATE(947), + [sym_generic_subprogram_declaration] = STATE(520), + [sym_generic_package_declaration] = STATE(520), + [sym_generic_instantiation] = STATE(520), + [sym_null_procedure_declaration] = STATE(520), + [sym_number_declaration] = STATE(520), + [sym_object_declaration] = STATE(520), + [sym_single_task_declaration] = STATE(325), + [sym_task_type_declaration] = STATE(322), + [sym_overriding_indicator] = STATE(1051), + [sym_procedure_specification] = STATE(1175), + [sym_record_representation_clause] = STATE(520), + [sym__renaming_declaration] = STATE(520), + [sym_object_renaming_declaration] = STATE(520), + [sym_exception_renaming_declaration] = STATE(520), + [sym_package_renaming_declaration] = STATE(520), + [sym_subprogram_renaming_declaration] = STATE(520), + [sym_generic_renaming_declaration] = STATE(520), + [sym_subprogram_declaration] = STATE(520), + [sym_expression_function_declaration] = STATE(520), + [sym__subprogram_specification] = STATE(1092), + [sym_subtype_declaration] = STATE(520), [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(326), @@ -18325,151 +18336,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [108] = { - [sym_unary_adding_operator] = STATE(546), - [sym__name] = STATE(535), - [sym_selected_component] = STATE(535), - [sym__defining_identifier_list] = STATE(1831), - [sym_slice] = STATE(535), - [sym__attribute_reference] = STATE(535), - [sym__reduction_attribute_reference] = STATE(535), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(535), - [sym_range_g] = STATE(1649), - [sym_expression] = STATE(1598), - [sym__relation] = STATE(610), - [sym_relation_membership] = STATE(610), - [sym_raise_expression] = STATE(610), - [sym__simple_expression] = STATE(676), - [sym_term] = STATE(562), - [sym__factor] = STATE(538), - [sym_factor_power] = STATE(538), - [sym_factor_abs] = STATE(538), - [sym_factor_not] = STATE(538), - [sym__parenthesized_expression] = STATE(551), - [sym__primary] = STATE(551), - [sym_primary_null] = STATE(551), - [sym_allocator] = STATE(551), - [sym_parameter_association] = STATE(1254), - [sym__conditional_expression] = STATE(1647), - [sym_quantified_expression] = STATE(1647), - [sym_declare_expression] = STATE(1647), - [sym_case_expression] = STATE(1647), - [sym_component_choice_list] = STATE(1644), - [sym__aggregate] = STATE(551), - [sym__delta_aggregate] = STATE(551), - [sym_extension_aggregate] = STATE(551), - [sym_record_delta_aggregate] = STATE(551), - [sym_array_delta_aggregate] = STATE(551), - [sym_record_aggregate] = STATE(551), - [sym__array_aggregate] = STATE(551), - [sym_positional_array_aggregate] = STATE(551), - [sym_null_array_aggregate] = STATE(551), - [sym_named_array_aggregate] = STATE(551), - [sym_parameter_specification] = STATE(1423), - [sym__parameter_specification_list] = STATE(1834), - [sym_if_expression] = STATE(1647), - [sym_function_call] = STATE(535), + [sym_unary_adding_operator] = STATE(551), + [sym__name] = STATE(537), + [sym_selected_component] = STATE(537), + [sym__defining_identifier_list] = STATE(2057), + [sym_slice] = STATE(537), + [sym__attribute_reference] = STATE(537), + [sym__reduction_attribute_reference] = STATE(537), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(537), + [sym_range_g] = STATE(1645), + [sym_expression] = STATE(1609), + [sym__relation] = STATE(616), + [sym_relation_membership] = STATE(616), + [sym_raise_expression] = STATE(616), + [sym__simple_expression] = STATE(675), + [sym_term] = STATE(570), + [sym__factor] = STATE(541), + [sym_factor_power] = STATE(541), + [sym_factor_abs] = STATE(541), + [sym_factor_not] = STATE(541), + [sym__parenthesized_expression] = STATE(555), + [sym__primary] = STATE(555), + [sym_primary_null] = STATE(555), + [sym_allocator] = STATE(555), + [sym_parameter_association] = STATE(1281), + [sym__conditional_expression] = STATE(1962), + [sym_quantified_expression] = STATE(1962), + [sym_declare_expression] = STATE(1962), + [sym_case_expression] = STATE(1962), + [sym_component_choice_list] = STATE(1634), + [sym__aggregate] = STATE(555), + [sym__delta_aggregate] = STATE(555), + [sym_extension_aggregate] = STATE(555), + [sym_record_delta_aggregate] = STATE(555), + [sym_array_delta_aggregate] = STATE(555), + [sym_record_aggregate] = STATE(555), + [sym__array_aggregate] = STATE(555), + [sym_positional_array_aggregate] = STATE(555), + [sym_null_array_aggregate] = STATE(555), + [sym_named_array_aggregate] = STATE(555), + [sym_parameter_specification] = STATE(1396), + [sym__parameter_specification_list] = STATE(2030), + [sym_if_expression] = STATE(1962), + [sym_function_call] = STATE(537), [sym_identifier] = ACTIONS(492), [sym_gnatprep_identifier] = ACTIONS(494), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(496), [sym_character_literal] = ACTIONS(494), - [sym_numeric_literal] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(374), + [sym_numeric_literal] = ACTIONS(362), + [anon_sym_PLUS] = ACTIONS(364), + [anon_sym_DASH] = ACTIONS(366), [sym_target_name] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), [aux_sym_iterated_element_association_token1] = ACTIONS(498), [aux_sym_relation_membership_token1] = ACTIONS(500), - [aux_sym_raise_expression_token1] = ACTIONS(386), - [aux_sym_factor_abs_token1] = ACTIONS(388), + [aux_sym_raise_expression_token1] = ACTIONS(378), + [aux_sym_factor_abs_token1] = ACTIONS(380), [aux_sym_primary_null_token1] = ACTIONS(502), - [aux_sym_allocator_token1] = ACTIONS(392), + [aux_sym_allocator_token1] = ACTIONS(384), [anon_sym_LT_GT] = ACTIONS(504), - [aux_sym_declare_expression_token1] = ACTIONS(394), - [aux_sym_case_expression_token1] = ACTIONS(396), + [aux_sym_declare_expression_token1] = ACTIONS(386), + [aux_sym_case_expression_token1] = ACTIONS(388), [aux_sym_component_choice_list_token1] = ACTIONS(506), - [aux_sym_if_expression_token1] = ACTIONS(404), + [aux_sym_if_expression_token1] = ACTIONS(396), }, [109] = { - [sym_unary_adding_operator] = STATE(546), - [sym__name] = STATE(535), - [sym_selected_component] = STATE(563), - [sym_slice] = STATE(563), - [sym__attribute_reference] = STATE(563), - [sym__reduction_attribute_reference] = STATE(563), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(563), - [sym__subtype_indication] = STATE(1560), - [sym_range_g] = STATE(1578), - [sym_expression] = STATE(1598), - [sym__relation] = STATE(610), - [sym_relation_membership] = STATE(610), - [sym_raise_expression] = STATE(610), - [sym__simple_expression] = STATE(676), - [sym_term] = STATE(562), - [sym__factor] = STATE(538), - [sym_factor_power] = STATE(538), - [sym_factor_abs] = STATE(538), - [sym_factor_not] = STATE(538), - [sym__parenthesized_expression] = STATE(551), - [sym__primary] = STATE(551), - [sym_primary_null] = STATE(551), - [sym_allocator] = STATE(551), - [sym_parameter_association] = STATE(1254), - [sym__conditional_expression] = STATE(1647), - [sym_quantified_expression] = STATE(1647), - [sym_declare_expression] = STATE(1647), - [sym_case_expression] = STATE(1647), - [sym_component_choice_list] = STATE(1644), - [sym__aggregate] = STATE(551), - [sym__delta_aggregate] = STATE(551), - [sym_extension_aggregate] = STATE(551), - [sym_record_delta_aggregate] = STATE(551), - [sym_array_delta_aggregate] = STATE(551), - [sym_record_aggregate] = STATE(551), - [sym_null_exclusion] = STATE(843), - [sym__discrete_range] = STATE(1290), - [sym__array_aggregate] = STATE(551), - [sym_positional_array_aggregate] = STATE(551), - [sym_null_array_aggregate] = STATE(551), - [sym_named_array_aggregate] = STATE(551), - [sym_if_expression] = STATE(1647), - [sym_function_call] = STATE(535), - [sym_identifier] = ACTIONS(508), - [sym_gnatprep_identifier] = ACTIONS(510), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(512), - [sym_character_literal] = ACTIONS(510), - [sym_numeric_literal] = ACTIONS(370), - [anon_sym_PLUS] = ACTIONS(372), - [anon_sym_DASH] = ACTIONS(374), - [sym_target_name] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_LBRACK] = ACTIONS(378), - [aux_sym_iterated_element_association_token1] = ACTIONS(498), - [aux_sym_relation_membership_token1] = ACTIONS(384), - [aux_sym_raise_expression_token1] = ACTIONS(386), - [aux_sym_factor_abs_token1] = ACTIONS(388), - [aux_sym_primary_null_token1] = ACTIONS(502), - [aux_sym_allocator_token1] = ACTIONS(392), - [anon_sym_LT_GT] = ACTIONS(504), - [aux_sym_declare_expression_token1] = ACTIONS(394), - [aux_sym_case_expression_token1] = ACTIONS(396), - [aux_sym_component_choice_list_token1] = ACTIONS(506), - [aux_sym_if_expression_token1] = ACTIONS(404), - }, - [110] = { - [sym__name] = STATE(1024), - [sym_selected_component] = STATE(1116), - [sym_slice] = STATE(1116), - [sym__attribute_reference] = STATE(1116), - [sym__reduction_attribute_reference] = STATE(1116), - [sym_value_sequence] = STATE(2066), - [sym_qualified_expression] = STATE(1116), - [sym_loop_label] = STATE(1026), - [sym_label] = STATE(565), + [sym__name] = STATE(1038), + [sym_selected_component] = STATE(1106), + [sym_slice] = STATE(1106), + [sym__attribute_reference] = STATE(1106), + [sym__reduction_attribute_reference] = STATE(1106), + [sym_value_sequence] = STATE(2065), + [sym_qualified_expression] = STATE(1106), + [sym_loop_label] = STATE(1049), + [sym_label] = STATE(573), [sym_null_statement] = STATE(195), [sym_pragma_g] = STATE(195), [sym__simple_statement] = STATE(195), @@ -18494,20 +18437,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(195), [sym_extended_return_statement] = STATE(195), [sym_procedure_call_statement] = STATE(195), - [sym_function_call] = STATE(1024), + [sym_function_call] = STATE(1038), [sym_raise_statement] = STATE(195), [sym_loop_statement] = STATE(195), - [sym_iteration_scheme] = STATE(2051), + [sym_iteration_scheme] = STATE(2052), [sym_assignment_statement] = STATE(195), - [aux_sym__sequence_of_statements_repeat2] = STATE(565), - [sym_identifier] = ACTIONS(436), + [aux_sym__sequence_of_statements_repeat2] = STATE(573), + [sym_identifier] = ACTIONS(426), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), [sym_character_literal] = ACTIONS(9), [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(438), + [aux_sym_iterated_element_association_token1] = ACTIONS(428), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_raise_expression_token1] = ACTIONS(33), [aux_sym_primary_null_token1] = ACTIONS(35), @@ -18531,104 +18474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(394), 1, - aux_sym_declare_expression_token1, - ACTIONS(396), 1, - aux_sym_case_expression_token1, - ACTIONS(404), 1, - aux_sym_if_expression_token1, - ACTIONS(496), 1, - sym_string_literal, - ACTIONS(498), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(504), 1, - anon_sym_LT_GT, - ACTIONS(506), 1, - aux_sym_component_choice_list_token1, - ACTIONS(514), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(676), 1, - sym__simple_expression, - STATE(1254), 1, - sym_parameter_association, - STATE(1598), 1, - sym_expression, - STATE(1644), 1, - sym_component_choice_list, - STATE(1649), 1, - sym_range_g, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(494), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1647), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(535), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [130] = 28, + [0] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -18653,39 +18499,39 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(516), 1, + ACTIONS(508), 1, aux_sym_compilation_unit_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(520), 1, + ACTIONS(512), 1, aux_sym__package_specification_token3, - ACTIONS(522), 1, + ACTIONS(514), 1, aux_sym_allocator_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(117), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(114), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18720,93 +18566,190 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [250] = 37, + [120] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(364), 1, - sym_identifier, - ACTIONS(368), 1, - sym_string_literal, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(390), 1, - aux_sym_primary_null_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, - ACTIONS(398), 1, - aux_sym_component_choice_list_token1, - ACTIONS(528), 1, + ACTIONS(386), 1, + aux_sym_declare_expression_token1, + ACTIONS(388), 1, + aux_sym_case_expression_token1, + ACTIONS(396), 1, + aux_sym_if_expression_token1, + ACTIONS(498), 1, aux_sym_iterated_element_association_token1, - STATE(546), 1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(520), 1, + sym_identifier, + ACTIONS(524), 1, + sym_string_literal, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1170), 1, - sym_array_component_association, - STATE(1222), 1, - sym_expression, - STATE(1350), 1, - sym_discrete_choice, - STATE(1354), 1, - sym__named_record_component_association, - STATE(1372), 1, - sym_iterated_element_association, - STATE(1495), 1, + STATE(1435), 1, + sym_discriminant_association, + STATE(1438), 1, sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1640), 1, - sym_component_choice_list, - STATE(1747), 1, - sym_discrete_choice_list, - STATE(2066), 1, + STATE(1439), 1, + sym_expression, + STATE(2065), 1, sym_value_sequence, - STATE(2091), 1, - sym__array_component_association_list, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(2092), 2, - sym_record_component_association_list, - sym__record_component_association_list_or_expression, - ACTIONS(366), 3, + STATE(1433), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(522), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(565), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(1750), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [250] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(356), 1, + sym_identifier, + ACTIONS(360), 1, + sym_string_literal, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(382), 1, + aux_sym_primary_null_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(390), 1, + aux_sym_component_choice_list_token1, + ACTIONS(526), 1, + aux_sym_iterated_element_association_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(675), 1, + sym__simple_expression, + STATE(826), 1, + sym_null_exclusion, + STATE(1190), 1, + sym_array_component_association, + STATE(1235), 1, + sym_expression, + STATE(1253), 1, + sym__named_record_component_association, + STATE(1261), 1, + sym_discrete_choice, + STATE(1279), 1, + sym_iterated_element_association, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1660), 1, + sym__array_component_association_list, + STATE(1727), 1, + sym_discrete_choice_list, + STATE(1747), 1, + sym_component_choice_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1642), 2, + sym_record_component_association_list, + sym__record_component_association_list_or_expression, + ACTIONS(358), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18824,86 +18767,86 @@ static const uint16_t ts_small_parse_table[] = { [388] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, - ACTIONS(394), 1, + ACTIONS(386), 1, aux_sym_declare_expression_token1, - ACTIONS(396), 1, + ACTIONS(388), 1, aux_sym_case_expression_token1, - ACTIONS(404), 1, + ACTIONS(396), 1, aux_sym_if_expression_token1, + ACTIONS(496), 1, + sym_string_literal, ACTIONS(498), 1, aux_sym_iterated_element_association_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(530), 1, + ACTIONS(504), 1, + anon_sym_LT_GT, + ACTIONS(506), 1, + aux_sym_component_choice_list_token1, + ACTIONS(528), 1, sym_identifier, - ACTIONS(532), 1, - sym_string_literal, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, - sym_null_exclusion, - STATE(1303), 1, - sym_discriminant_association, - STATE(1560), 1, - sym__subtype_indication, - STATE(1572), 1, + STATE(1281), 1, + sym_parameter_association, + STATE(1609), 1, sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(1290), 2, + STATE(1634), 1, + sym_component_choice_list, + STATE(1645), 1, sym_range_g, - sym__discrete_range, - ACTIONS(510), 3, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(494), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(563), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(1761), 5, + STATE(1962), 5, sym__conditional_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(551), 14, + STATE(537), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18943,37 +18886,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(534), 1, + ACTIONS(530), 1, aux_sym_compilation_unit_token1, - ACTIONS(536), 1, + ACTIONS(532), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(116), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19011,58 +18954,58 @@ static const uint16_t ts_small_parse_table[] = { [635] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(538), 1, + ACTIONS(534), 1, sym_identifier, - ACTIONS(541), 1, + ACTIONS(537), 1, aux_sym_iterated_element_association_token1, - ACTIONS(544), 1, + ACTIONS(540), 1, aux_sym_iterated_element_association_token2, - ACTIONS(549), 1, + ACTIONS(545), 1, aux_sym__package_specification_token1, - ACTIONS(552), 1, + ACTIONS(548), 1, aux_sym_use_clause_token2, - ACTIONS(555), 1, + ACTIONS(551), 1, aux_sym_relation_membership_token1, - ACTIONS(558), 1, + ACTIONS(554), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(561), 1, + ACTIONS(557), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(564), 1, + ACTIONS(560), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(567), 1, + ACTIONS(563), 1, aux_sym_interface_type_definition_token1, - ACTIONS(570), 1, + ACTIONS(566), 1, aux_sym_generic_formal_part_token1, - ACTIONS(573), 1, + ACTIONS(569), 1, aux_sym_global_mode_token1, - ACTIONS(576), 1, + ACTIONS(572), 1, aux_sym_pragma_g_token1, - ACTIONS(579), 1, + ACTIONS(575), 1, aux_sym_subtype_declaration_token1, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - ACTIONS(547), 2, + ACTIONS(543), 2, aux_sym_compilation_unit_token1, aux_sym__package_specification_token3, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(116), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19122,37 +19065,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(582), 1, + ACTIONS(578), 1, aux_sym_compilation_unit_token1, - ACTIONS(584), 1, + ACTIONS(580), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(116), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19212,37 +19155,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(582), 1, + ACTIONS(530), 1, aux_sym_compilation_unit_token1, - ACTIONS(584), 1, + ACTIONS(532), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(115), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(116), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19302,222 +19245,37 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(516), 1, + ACTIONS(508), 1, aux_sym_compilation_unit_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(520), 1, + ACTIONS(512), 1, aux_sym__package_specification_token3, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(117), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, - [1101] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(528), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, - sym_identifier, - ACTIONS(588), 1, - aux_sym_value_sequence_token1, - ACTIONS(590), 1, - anon_sym_RBRACK, - ACTIONS(592), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(676), 1, - sym__simple_expression, - STATE(843), 1, - sym_null_exclusion, - STATE(1045), 1, - sym_expression, - STATE(1170), 1, - sym_array_component_association, - STATE(1350), 1, - sym_discrete_choice, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1522), 1, - sym_iterated_element_association, - STATE(1734), 1, - sym__array_component_association_list, - STATE(1747), 1, - sym_discrete_choice_list, STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(366), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(518), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [1233] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, - aux_sym__package_specification_token1, - ACTIONS(524), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(536), 1, - aux_sym__package_specification_token3, - STATE(938), 1, - sym_generic_formal_part, - STATE(1085), 1, - sym__subprogram_specification, - STATE(1088), 1, - sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(2063), 1, - sym__package_specification, - STATE(2067), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(124), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(114), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19552,7 +19310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [1347] = 26, + [1101] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -19577,35 +19335,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(594), 1, + ACTIONS(582), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(127), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19640,7 +19398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [1461] = 26, + [1215] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -19665,35 +19423,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(536), 1, + ACTIONS(580), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(116), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -19728,206 +19486,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [1575] = 26, + [1329] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, - aux_sym__package_specification_token1, - ACTIONS(524), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(594), 1, - aux_sym__package_specification_token3, - STATE(938), 1, - sym_generic_formal_part, - STATE(1085), 1, - sym__subprogram_specification, - STATE(1088), 1, - sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(2063), 1, - sym__package_specification, - STATE(2067), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(116), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, - [1689] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, - aux_sym__package_specification_token1, - ACTIONS(524), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(584), 1, - aux_sym__package_specification_token3, - STATE(938), 1, - sym_generic_formal_part, - STATE(1085), 1, - sym__subprogram_specification, - STATE(1088), 1, - sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(2063), 1, - sym__package_specification, - STATE(2067), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(123), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, - [1803] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, - ACTIONS(394), 1, + ACTIONS(386), 1, aux_sym_declare_expression_token1, - ACTIONS(396), 1, + ACTIONS(388), 1, aux_sym_case_expression_token1, - ACTIONS(404), 1, + ACTIONS(396), 1, aux_sym_if_expression_token1, ACTIONS(498), 1, aux_sym_iterated_element_association_token1, @@ -19935,44 +19517,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(596), 1, + ACTIONS(584), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1295), 1, + STATE(1264), 1, sym_pragma_argument_association, - STATE(1597), 1, + STATE(1604), 1, sym_expression, - STATE(2048), 1, + STATE(1671), 1, sym__aspect_mark, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(2045), 6, + STATE(1669), 6, sym__conditional_expression, sym__conditional_quantified_declare_expression, sym_quantified_expression, sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -19980,7 +19562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19995,6 +19577,367 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, + [1449] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(526), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(590), 1, + aux_sym_value_sequence_token1, + ACTIONS(592), 1, + anon_sym_RBRACK, + ACTIONS(594), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(675), 1, + sym__simple_expression, + STATE(826), 1, + sym_null_exclusion, + STATE(1037), 1, + sym_expression, + STATE(1190), 1, + sym_array_component_association, + STATE(1261), 1, + sym_discrete_choice, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1590), 1, + sym_iterated_element_association, + STATE(1711), 1, + sym__array_component_association_list, + STATE(1727), 1, + sym_discrete_choice_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [1581] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(510), 1, + aux_sym__package_specification_token1, + ACTIONS(516), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(518), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(532), 1, + aux_sym__package_specification_token3, + STATE(947), 1, + sym_generic_formal_part, + STATE(1081), 1, + sym__subprogram_specification, + STATE(1086), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(2063), 1, + sym__package_specification, + STATE(2066), 1, + sym__defining_identifier_list, + STATE(322), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(120), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, + [1695] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(510), 1, + aux_sym__package_specification_token1, + ACTIONS(516), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(518), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(596), 1, + aux_sym__package_specification_token3, + STATE(947), 1, + sym_generic_formal_part, + STATE(1081), 1, + sym__subprogram_specification, + STATE(1086), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(2063), 1, + sym__package_specification, + STATE(2066), 1, + sym__defining_identifier_list, + STATE(322), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(119), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, + [1809] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(510), 1, + aux_sym__package_specification_token1, + ACTIONS(516), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(518), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(580), 1, + aux_sym__package_specification_token3, + STATE(947), 1, + sym_generic_formal_part, + STATE(1081), 1, + sym__subprogram_specification, + STATE(1086), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(2063), 1, + sym__package_specification, + STATE(2066), 1, + sym__defining_identifier_list, + STATE(322), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(126), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, [1923] = 26, ACTIONS(3), 1, sym_comment, @@ -20020,35 +19963,35 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(518), 1, + ACTIONS(510), 1, aux_sym__package_specification_token1, - ACTIONS(524), 1, + ACTIONS(516), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(526), 1, + ACTIONS(518), 1, aux_sym_interface_type_definition_token1, - ACTIONS(600), 1, + ACTIONS(596), 1, aux_sym__package_specification_token3, - STATE(938), 1, + STATE(947), 1, sym_generic_formal_part, - STATE(1085), 1, + STATE(1081), 1, sym__subprogram_specification, - STATE(1088), 1, + STATE(1086), 1, sym_overriding_indicator, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, STATE(2063), 1, sym__package_specification, - STATE(2067), 1, + STATE(2066), 1, sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(453), 2, + STATE(322), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(116), 34, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(115), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -20086,84 +20029,84 @@ static const uint16_t ts_small_parse_table[] = { [2037] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(526), 1, aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(590), 1, - anon_sym_RBRACK, ACTIONS(592), 1, + anon_sym_RBRACK, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1045), 1, + STATE(1037), 1, sym_expression, - STATE(1170), 1, + STATE(1190), 1, sym_array_component_association, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1372), 1, + STATE(1279), 1, sym_iterated_element_association, - STATE(1495), 1, + STATE(1576), 1, sym__subtype_indication, - STATE(1496), 1, + STATE(1579), 1, sym_range_g, - STATE(1734), 1, + STATE(1711), 1, sym__array_component_association_list, - STATE(1747), 1, + STATE(1727), 1, sym_discrete_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20181,84 +20124,84 @@ static const uint16_t ts_small_parse_table[] = { [2166] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(526), 1, aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(590), 1, - anon_sym_RBRACK, ACTIONS(592), 1, + anon_sym_RBRACK, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1063), 1, + STATE(1111), 1, sym_expression, - STATE(1170), 1, + STATE(1190), 1, sym_array_component_association, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1372), 1, + STATE(1279), 1, sym_iterated_element_association, - STATE(1495), 1, + STATE(1576), 1, sym__subtype_indication, - STATE(1496), 1, + STATE(1579), 1, sym_range_g, - STATE(1734), 1, + STATE(1711), 1, sym__array_component_association_list, - STATE(1747), 1, + STATE(1727), 1, sym_discrete_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20276,82 +20219,82 @@ static const uint16_t ts_small_parse_table[] = { [2295] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(526), 1, aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(592), 1, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1152), 1, + STATE(1161), 1, sym_expression, - STATE(1170), 1, + STATE(1190), 1, sym_array_component_association, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1372), 1, + STATE(1279), 1, sym_iterated_element_association, - STATE(1495), 1, + STATE(1576), 1, sym__subtype_indication, - STATE(1496), 1, + STATE(1579), 1, sym_range_g, - STATE(1747), 1, + STATE(1727), 1, sym_discrete_choice_list, - STATE(1749), 1, + STATE(1737), 1, sym__array_component_association_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20369,82 +20312,82 @@ static const uint16_t ts_small_parse_table[] = { [2421] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(526), 1, aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(592), 1, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1170), 1, + STATE(1190), 1, sym_array_component_association, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1372), 1, + STATE(1279), 1, sym_iterated_element_association, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1606), 1, + STATE(1461), 1, sym_expression, - STATE(1747), 1, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1727), 1, sym_discrete_choice_list, - STATE(2066), 1, - sym_value_sequence, - STATE(2077), 1, + STATE(1951), 1, sym__array_component_association_list, - STATE(535), 2, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20462,80 +20405,80 @@ static const uint16_t ts_small_parse_table[] = { [2547] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(528), 1, + ACTIONS(526), 1, aux_sym_iterated_element_association_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(592), 1, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1251), 1, - sym_array_component_association, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1372), 1, + STATE(1279), 1, sym_iterated_element_association, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1606), 1, + STATE(1413), 1, + sym_array_component_association, + STATE(1461), 1, sym_expression, - STATE(1747), 1, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1727), 1, sym_discrete_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20553,65 +20496,65 @@ static const uint16_t ts_small_parse_table[] = { [2670] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(372), 1, aux_sym_chunk_specification_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, - ACTIONS(400), 1, + ACTIONS(392), 1, aux_sym_global_mode_token1, - ACTIONS(402), 1, + ACTIONS(394), 1, aux_sym_non_empty_mode_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(604), 1, + ACTIONS(600), 1, anon_sym_LPAREN, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(876), 1, + STATE(878), 1, sym_non_empty_mode, - STATE(1022), 1, + STATE(1017), 1, sym_global_mode, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1020), 3, + STATE(1019), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -20619,7 +20562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20637,74 +20580,74 @@ static const uint16_t ts_small_parse_table[] = { [2781] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(592), 1, + ACTIONS(594), 1, aux_sym_component_choice_list_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(676), 1, + STATE(675), 1, sym__simple_expression, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1350), 1, + STATE(1261), 1, sym_discrete_choice, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1606), 1, + STATE(1461), 1, sym_expression, - STATE(1878), 1, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1787), 1, sym_discrete_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20719,196 +20662,26 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2895] = 29, + [2895] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(382), 1, + aux_sym_primary_null_token1, ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(586), 1, - sym_identifier, - ACTIONS(592), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(676), 1, - sym__simple_expression, - STATE(843), 1, - sym_null_exclusion, - STATE(1350), 1, - sym_discrete_choice, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1606), 1, - sym_expression, - STATE(2062), 1, - sym_discrete_choice_list, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(366), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(518), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3009] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(586), 1, - sym_identifier, - ACTIONS(592), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(676), 1, - sym__simple_expression, - STATE(843), 1, - sym_null_exclusion, - STATE(1350), 1, - sym_discrete_choice, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1606), 1, - sym_expression, - STATE(1697), 1, - sym_discrete_choice_list, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(366), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(518), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [3123] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(390), 1, - aux_sym_primary_null_token1, - ACTIONS(392), 1, aux_sym_allocator_token1, ACTIONS(496), 1, sym_string_literal, @@ -20916,41 +20689,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(506), 1, aux_sym_component_choice_list_token1, - ACTIONS(514), 1, + ACTIONS(528), 1, sym_identifier, - ACTIONS(606), 1, + ACTIONS(602), 1, aux_sym_attribute_designator_token2, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1354), 1, + STATE(1253), 1, sym__named_record_component_association, - STATE(1581), 1, + STATE(1451), 1, sym_expression, - STATE(1640), 1, + STATE(1747), 1, sym_component_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(2070), 2, + STATE(2114), 2, sym_record_component_association_list, sym__record_component_association_list_or_expression, - ACTIONS(598), 3, + ACTIONS(586), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -20958,7 +20731,177 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3007] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(594), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(675), 1, + sym__simple_expression, + STATE(826), 1, + sym_null_exclusion, + STATE(1261), 1, + sym_discrete_choice, + STATE(1461), 1, + sym_expression, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(2061), 1, + sym_discrete_choice_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3121] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(594), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(675), 1, + sym__simple_expression, + STATE(826), 1, + sym_null_exclusion, + STATE(1261), 1, + sym_discrete_choice, + STATE(1461), 1, + sym_expression, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(1881), 1, + sym_discrete_choice_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20974,6 +20917,64 @@ static const uint16_t ts_small_parse_table[] = { sym_null_array_aggregate, sym_named_array_aggregate, [3235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(606), 1, + sym_identifier, + ACTIONS(604), 52, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_exception_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [3296] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(610), 1, @@ -21031,7 +21032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3296] = 3, + [3357] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(614), 1, @@ -21089,7 +21090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3357] = 3, + [3418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(618), 1, @@ -21147,7 +21148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3418] = 3, + [3479] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(622), 1, @@ -21205,7 +21206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3479] = 3, + [3540] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(626), 1, @@ -21263,7 +21264,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3540] = 3, + [3601] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(630), 1, @@ -21321,7 +21322,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3601] = 3, + [3662] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(634), 1, @@ -21379,7 +21380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3662] = 3, + [3723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(638), 1, @@ -21437,7 +21438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3723] = 3, + [3784] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(642), 1, @@ -21495,7 +21496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3784] = 3, + [3845] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(646), 1, @@ -21553,7 +21554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3845] = 3, + [3906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(650), 1, @@ -21611,7 +21612,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3906] = 3, + [3967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(654), 1, @@ -21669,7 +21670,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [3967] = 3, + [4028] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(658), 1, @@ -21727,7 +21728,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4028] = 3, + [4089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(662), 1, @@ -21785,7 +21786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4089] = 3, + [4150] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(666), 1, @@ -21843,7 +21844,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4150] = 3, + [4211] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, @@ -21901,7 +21902,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4211] = 3, + [4272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(674), 1, @@ -21959,7 +21960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4272] = 3, + [4333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(678), 1, @@ -22017,7 +22018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4333] = 3, + [4394] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(682), 1, @@ -22075,7 +22076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4394] = 3, + [4455] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(686), 1, @@ -22133,7 +22134,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4455] = 3, + [4516] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(588), 1, + sym_identifier, + ACTIONS(594), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(675), 1, + sym__simple_expression, + STATE(826), 1, + sym_null_exclusion, + STATE(1461), 1, + sym_expression, + STATE(1462), 1, + sym_discrete_choice, + STATE(1576), 1, + sym__subtype_indication, + STATE(1579), 1, + sym_range_g, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [4627] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(690), 1, @@ -22191,7 +22275,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4516] = 3, + [4688] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(694), 1, @@ -22249,7 +22333,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4577] = 3, + [4749] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -22307,7 +22391,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4638] = 3, + [4810] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(702), 1, @@ -22365,7 +22449,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4699] = 3, + [4871] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(706), 1, @@ -22423,7 +22507,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4760] = 3, + [4932] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(710), 1, @@ -22481,7 +22565,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4821] = 3, + [4993] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(714), 1, @@ -22539,7 +22623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4882] = 3, + [5054] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(718), 1, @@ -22597,7 +22681,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4943] = 3, + [5115] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(722), 1, @@ -22655,7 +22739,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5004] = 3, + [5176] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(726), 1, @@ -22713,7 +22797,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5065] = 3, + [5237] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(730), 1, @@ -22771,7 +22855,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5126] = 3, + [5298] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(734), 1, @@ -22829,7 +22913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5187] = 3, + [5359] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(738), 1, @@ -22887,7 +22971,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5248] = 3, + [5420] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(742), 1, @@ -22945,7 +23029,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5309] = 3, + [5481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(746), 1, @@ -23003,7 +23087,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5370] = 3, + [5542] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(750), 1, @@ -23061,7 +23145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5431] = 3, + [5603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(754), 1, @@ -23119,7 +23203,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5492] = 3, + [5664] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(758), 1, @@ -23177,7 +23261,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5553] = 3, + [5725] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(762), 1, @@ -23235,7 +23319,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5614] = 3, + [5786] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(766), 1, @@ -23293,7 +23377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5675] = 3, + [5847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(770), 1, @@ -23351,7 +23435,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5736] = 3, + [5908] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(774), 1, @@ -23409,7 +23493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5797] = 3, + [5969] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(778), 1, @@ -23467,7 +23551,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5858] = 3, + [6030] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(782), 1, @@ -23525,7 +23609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5919] = 3, + [6091] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(786), 1, @@ -23583,7 +23667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5980] = 3, + [6152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(790), 1, @@ -23641,7 +23725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6041] = 3, + [6213] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(794), 1, @@ -23699,7 +23783,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6102] = 3, + [6274] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(798), 1, @@ -23757,7 +23841,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6163] = 3, + [6335] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(802), 1, @@ -23815,7 +23899,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6224] = 3, + [6396] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(806), 1, @@ -23873,7 +23957,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6285] = 3, + [6457] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(810), 1, @@ -23931,90 +24015,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6346] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(586), 1, - sym_identifier, - ACTIONS(592), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(676), 1, - sym__simple_expression, - STATE(843), 1, - sym_null_exclusion, - STATE(1495), 1, - sym__subtype_indication, - STATE(1496), 1, - sym_range_g, - STATE(1599), 1, - sym_discrete_choice, - STATE(1606), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(366), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(518), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [6457] = 3, + [6518] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(814), 1, @@ -24072,7 +24073,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6518] = 3, + [6579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(818), 1, @@ -24130,7 +24131,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6579] = 3, + [6640] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(822), 1, @@ -24188,7 +24189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6640] = 3, + [6701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(826), 1, @@ -24246,7 +24247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6701] = 3, + [6762] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(830), 1, @@ -24304,7 +24305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6762] = 3, + [6823] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(834), 1, @@ -24362,7 +24363,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6823] = 3, + [6884] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(838), 1, @@ -24420,7 +24421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6884] = 3, + [6945] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(842), 1, @@ -24478,7 +24479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6945] = 3, + [7006] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(846), 1, @@ -24536,7 +24537,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7006] = 3, + [7067] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(850), 1, @@ -24594,7 +24595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7067] = 3, + [7128] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(854), 1, @@ -24652,7 +24653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7128] = 3, + [7189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(858), 1, @@ -24710,7 +24711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7189] = 3, + [7250] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(862), 1, @@ -24768,7 +24769,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7250] = 3, + [7311] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(866), 1, @@ -24826,7 +24827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7311] = 3, + [7372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(870), 1, @@ -24884,7 +24885,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7372] = 3, + [7433] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(874), 1, @@ -24942,7 +24943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7433] = 3, + [7494] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(878), 1, @@ -25000,7 +25001,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7494] = 3, + [7555] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(882), 1, @@ -25058,7 +25059,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7555] = 3, + [7616] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(886), 1, @@ -25116,7 +25117,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7616] = 3, + [7677] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(890), 1, @@ -25174,82 +25175,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - sym_identifier, - ACTIONS(892), 52, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_exception_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, [7738] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(496), 1, sym_string_literal, @@ -25261,36 +25204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, ACTIONS(506), 1, aux_sym_component_choice_list_token1, - ACTIONS(514), 1, + ACTIONS(528), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1510), 1, + STATE(1509), 1, sym_parameter_association, - STATE(1598), 1, + STATE(1609), 1, sym_expression, - STATE(1644), 1, + STATE(1634), 1, sym_component_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 3, + ACTIONS(586), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25298,7 +25241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25313,62 +25256,141 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7846] = 25, + [7846] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(496), 1, + sym_string_literal, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(528), 1, + sym_identifier, + ACTIONS(892), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1170), 1, + sym_expression, + STATE(1422), 1, + sym__named_record_component_association, + STATE(1747), 1, + sym_component_choice_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [7951] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(896), 1, + ACTIONS(894), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1423), 1, + STATE(1396), 1, sym_parameter_specification, - STATE(1831), 1, - sym__defining_identifier_list, - STATE(1834), 1, + STATE(1697), 1, + sym_expression, + STATE(2030), 1, sym__parameter_specification_list, - STATE(2066), 1, + STATE(2057), 1, + sym__defining_identifier_list, + STATE(2065), 1, sym_value_sequence, - STATE(2099), 1, - sym_expression, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25376,7 +25398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25391,103 +25413,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7949] = 26, + [8054] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(496), 1, - sym_string_literal, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(514), 1, - sym_identifier, - ACTIONS(898), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1229), 1, - sym_expression, - STATE(1269), 1, - sym__named_record_component_association, - STATE(1640), 1, - sym_component_choice_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8054] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(496), 1, sym_string_literal, @@ -25497,36 +25440,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(506), 1, aux_sym_component_choice_list_token1, - ACTIONS(514), 1, + ACTIONS(528), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1570), 1, - sym_expression, - STATE(1571), 1, - sym__named_record_component_association, - STATE(1640), 1, + STATE(1747), 1, sym_component_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 3, + STATE(1422), 2, + sym_expression, + sym__named_record_component_association, + ACTIONS(586), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25534,7 +25476,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25549,24 +25491,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8159] = 25, + [8157] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(496), 1, sym_string_literal, @@ -25576,35 +25518,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(506), 1, aux_sym_component_choice_list_token1, - ACTIONS(514), 1, + ACTIONS(528), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1640), 1, + STATE(1747), 1, sym_component_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1571), 2, + STATE(1574), 2, sym_expression, sym__named_record_component_association, - ACTIONS(598), 3, + ACTIONS(586), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25612,7 +25554,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25627,24 +25569,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8262] = 25, + [8260] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(496), 1, sym_string_literal, @@ -25654,35 +25596,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(506), 1, aux_sym_component_choice_list_token1, - ACTIONS(514), 1, + ACTIONS(528), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1640), 1, - sym_component_choice_list, - STATE(2066), 1, - sym_value_sequence, - STATE(1269), 2, + STATE(1573), 1, sym_expression, + STATE(1574), 1, sym__named_record_component_association, - ACTIONS(598), 3, + STATE(1747), 1, + sym_component_choice_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 3, sym_gnatprep_identifier, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25690,7 +25633,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25708,48 +25651,126 @@ static const uint16_t ts_small_parse_table[] = { [8365] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, + ACTIONS(376), 1, aux_sym_relation_membership_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(896), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1396), 1, + sym_parameter_specification, + STATE(1889), 1, + sym__simple_expression, + STATE(2030), 1, + sym__parameter_specification_list, + STATE(2057), 1, + sym__defining_identifier_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1884), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8469] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, ACTIONS(900), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1002), 1, + STATE(996), 1, sym__subtype_indication, - STATE(1423), 1, - sym_parameter_specification, - STATE(1717), 1, + STATE(1342), 1, + sym_index_subtype_definition, + STATE(1889), 1, sym__simple_expression, - STATE(1831), 1, - sym__defining_identifier_list, - STATE(1834), 1, - sym__parameter_specification_list, - STATE(2066), 1, + STATE(1916), 1, + sym__index_subtype_definition_list, + STATE(1920), 1, + sym__discrete_subtype_definition_list, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(870), 2, sym__name, sym_function_call, - STATE(1699), 2, + STATE(1343), 2, sym__discrete_subtype_definition, sym_range_g, ACTIONS(902), 4, @@ -25757,18 +25778,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(570), 5, + STATE(601), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25783,60 +25804,138 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8469] = 24, + [8573] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(896), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1396), 1, + sym_parameter_specification, + STATE(1889), 1, + sym__simple_expression, + STATE(2030), 1, + sym__parameter_specification_list, + STATE(2057), 1, + sym__defining_identifier_list, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1633), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [8677] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(596), 1, + ACTIONS(584), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1521), 1, + STATE(1551), 1, sym_pragma_argument_association, - STATE(1597), 1, + STATE(1604), 1, sym_expression, - STATE(2048), 1, + STATE(1671), 1, sym__aspect_mark, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25844,7 +25943,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25859,138 +25958,60 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8569] = 26, + [8777] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, ACTIONS(904), 1, sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1335), 1, - sym_index_subtype_definition, - STATE(1717), 1, - sym__simple_expression, - STATE(1728), 1, - sym__index_subtype_definition_list, - STATE(1733), 1, - sym__discrete_subtype_definition_list, - STATE(2066), 1, - sym_value_sequence, - STATE(833), 2, - sym__name, - sym_function_call, - STATE(1340), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(906), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(590), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8673] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(908), 1, - sym_identifier, - ACTIONS(910), 1, + ACTIONS(906), 1, anon_sym_SEMI, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1516), 1, + STATE(1504), 1, sym_extended_return_object_declaration, - STATE(1954), 1, + STATE(1952), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -25998,85 +26019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [8773] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(900), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1423), 1, - sym_parameter_specification, - STATE(1717), 1, - sym__simple_expression, - STATE(1831), 1, - sym__defining_identifier_list, - STATE(1834), 1, - sym__parameter_specification_list, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(1963), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26094,55 +26037,55 @@ static const uint16_t ts_small_parse_table[] = { [8877] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(912), 1, + ACTIONS(908), 1, anon_sym_LT_GT, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1686), 1, + STATE(1795), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26150,7 +26093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26168,55 +26111,55 @@ static const uint16_t ts_small_parse_table[] = { [8974] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(914), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, + ACTIONS(910), 1, + anon_sym_LT_GT, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1268), 1, + STATE(1513), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26224,7 +26167,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26242,55 +26185,55 @@ static const uint16_t ts_small_parse_table[] = { [9071] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(916), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, + ACTIONS(912), 1, + anon_sym_LT_GT, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1268), 1, + STATE(1796), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26298,7 +26241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26316,55 +26259,55 @@ static const uint16_t ts_small_parse_table[] = { [9168] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(918), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, + ACTIONS(914), 1, + anon_sym_LT_GT, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1402), 1, + STATE(1770), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26372,7 +26315,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26390,55 +26333,55 @@ static const uint16_t ts_small_parse_table[] = { [9265] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(920), 1, - anon_sym_LT_GT, - STATE(546), 1, + ACTIONS(916), 1, + aux_sym_delay_until_statement_token2, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1611), 1, + STATE(1911), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26446,7 +26389,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26464,55 +26407,55 @@ static const uint16_t ts_small_parse_table[] = { [9362] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(922), 1, + ACTIONS(918), 1, anon_sym_LT_GT, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1689), 1, + STATE(1752), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26520,7 +26463,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26538,55 +26481,203 @@ static const uint16_t ts_small_parse_table[] = { [9459] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(920), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1409), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9556] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(922), 1, + anon_sym_LT_GT, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1412), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [9653] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, sym_identifier, ACTIONS(924), 1, - anon_sym_LT_GT, - STATE(546), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1471), 1, + STATE(1429), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26594,7 +26685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26609,59 +26700,58 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9556] = 24, + [9750] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(926), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(928), 1, - sym_string_literal, - STATE(546), 1, + ACTIONS(926), 1, + anon_sym_LT_GT, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1554), 1, - sym_discriminant_association, - STATE(1555), 1, + STATE(1457), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(538), 4, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26669,7 +26759,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26684,58 +26774,59 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9655] = 23, + [9847] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(928), 1, sym_identifier, ACTIONS(930), 1, - aux_sym_component_choice_list_token1, - STATE(546), 1, + sym_string_literal, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1268), 1, + STATE(1557), 1, + sym_discriminant_association, + STATE(1558), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + ACTIONS(586), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26743,155 +26834,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9752] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(932), 1, - aux_sym_delay_until_statement_token2, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1921), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [9849] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(934), 1, - anon_sym_LT_GT, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1792), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26909,55 +26852,55 @@ static const uint16_t ts_small_parse_table[] = { [9946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(936), 1, - anon_sym_LT_GT, - STATE(546), 1, + ACTIONS(932), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1252), 1, + STATE(1409), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -26965,7 +26908,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26983,55 +26926,55 @@ static const uint16_t ts_small_parse_table[] = { [10043] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(938), 1, - anon_sym_LT_GT, - STATE(546), 1, + ACTIONS(934), 1, + aux_sym_component_choice_list_token1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1793), 1, + STATE(1409), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27039,7 +26982,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27057,53 +27000,53 @@ static const uint16_t ts_small_parse_table[] = { [10140] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1498), 1, + STATE(1762), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27111,7 +27054,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27129,53 +27072,53 @@ static const uint16_t ts_small_parse_table[] = { [10234] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(2108), 1, + STATE(1423), 1, sym_expression, - STATE(610), 3, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27183,7 +27126,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27198,7 +27141,492 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10328] = 3, + [10328] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1692), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10422] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1672), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10516] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1053), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10610] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1512), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10704] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1144), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10798] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1349), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [10892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(938), 1, + sym_identifier, + ACTIONS(936), 47, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [10948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(942), 1, @@ -27251,56 +27679,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [10384] = 22, + [11004] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1478), 1, + STATE(1679), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27308,7 +27736,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27323,56 +27751,56 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10478] = 22, + [11098] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1781), 1, + STATE(1680), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27380,7 +27808,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27395,56 +27823,56 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10572] = 22, + [11192] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1677), 1, + STATE(1858), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -27452,7 +27880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27467,588 +27895,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10666] = 22, + [11286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(946), 1, sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(2095), 1, - sym_expression, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10760] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1283), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10854] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1789), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [10948] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1432), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11042] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1163), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11136] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1812), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11230] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1695), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11324] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(944), 1, - aux_sym_expression_token4, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(682), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(948), 1, - sym_identifier, - ACTIONS(946), 47, + ACTIONS(944), 47, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -28096,128 +27948,2053 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [11474] = 22, + [11342] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1303), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11436] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1789), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11530] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1839), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11624] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1925), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11718] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1514), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11812] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(2131), 1, + sym_expression, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [11906] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1365), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12000] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1554), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12094] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1971), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12188] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1657), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12282] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1565), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12376] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1851), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12470] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1614), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12564] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1656), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12658] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1953), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12752] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1790), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12846] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1921), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [12940] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1759), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13034] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1409), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13128] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1868), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13222] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1168), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13316] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1805), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13410] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1773), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13504] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1788), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13598] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1552), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13692] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1959), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13786] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1704), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [13880] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(950), 1, - aux_sym_expression_token2, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(695), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, + sym_identifier, + ACTIONS(948), 47, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11568] = 22, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [13936] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1782), 1, + STATE(1300), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -28225,7 +30002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28240,56 +30017,56 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11662] = 22, + [14030] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1144), 1, + STATE(1165), 1, sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -28297,7 +30074,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28312,79 +30089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11756] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1949), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [11850] = 3, + [14124] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(954), 1, @@ -28437,354 +30142,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [11906] = 22, + [14180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(958), 1, sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1922), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(956), 47, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12000] = 22, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(962), 1, sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1786), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(960), 47, + ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12094] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_iterator_filter_token1, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1917), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12188] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1787), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12282] = 24, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [14292] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(586), 1, + ACTIONS(588), 1, sym_identifier, - ACTIONS(956), 1, + ACTIONS(964), 1, aux_sym_loop_parameter_specification_token1, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1002), 1, + STATE(996), 1, sym__subtype_indication, - STATE(1717), 1, + STATE(1889), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(680), 2, + STATE(684), 2, sym__name, sym_function_call, - STATE(1126), 2, + STATE(1116), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(366), 4, + ACTIONS(358), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(518), 5, + STATE(528), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28799,1337 +30322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12380] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1925), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12474] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1385), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - sym_identifier, - ACTIONS(958), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [12624] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1549), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12718] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1691), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12812] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1548), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [12906] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1661), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13000] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1874), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13094] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1526), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13188] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1877), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13282] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1325), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(964), 1, - sym_identifier, - ACTIONS(962), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [13432] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1662), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13526] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1955), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13620] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1698), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13714] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1980), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13808] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1759), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13902] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(2125), 1, - sym_expression, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [13996] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1822), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14090] = 3, + [14390] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(968), 1, @@ -30182,56 +30375,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [14146] = 22, + [14446] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1803), 1, - sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(2121), 1, + sym_expression, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -30239,7 +30432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30254,56 +30447,56 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14240] = 22, + [14540] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(2106), 1, + STATE(1907), 1, sym_expression, - STATE(610), 3, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -30311,7 +30504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30326,56 +30519,56 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14334] = 22, + [14634] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, + ACTIONS(378), 1, aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1694), 1, - sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(2118), 1, + sym_expression, + STATE(616), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -30383,7 +30576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30398,109 +30591,200 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14428] = 3, + [14728] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1840), 1, + sym_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(616), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14822] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + ACTIONS(970), 1, + aux_sym_expression_token2, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(688), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [14916] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, ACTIONS(972), 1, - sym_identifier, - ACTIONS(970), 47, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [14484] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, + aux_sym_expression_token4, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(578), 1, + STATE(584), 1, sym__simple_expression, - STATE(1135), 1, - sym_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(610), 3, + STATE(685), 3, sym__relation, sym_relation_membership, sym_raise_expression, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -30508,7 +30792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30523,7 +30807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14578] = 3, + [15010] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(976), 1, @@ -30576,12 +30860,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [14634] = 3, + [15066] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(980), 1, sym_identifier, - ACTIONS(978), 47, + ACTIONS(978), 46, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -30590,7 +30874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - aux_sym_iterator_filter_token1, aux_sym_compilation_unit_token1, aux_sym__package_specification_token1, aux_sym__package_specification_token3, @@ -30629,560 +30912,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [14690] = 22, + [15121] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1800), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14784] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1072), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14878] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1268), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [14972] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(1243), 1, - sym_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - sym_identifier, - ACTIONS(982), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(988), 1, - sym_identifier, - ACTIONS(986), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 1, - sym_identifier, - ACTIONS(990), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - sym_identifier, - ACTIONS(994), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [15286] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(843), 1, + STATE(826), 1, sym_null_exclusion, - STATE(1560), 1, + STATE(1438), 1, sym__subtype_indication, - STATE(1717), 1, + STATE(1889), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(535), 2, + STATE(537), 2, sym__name, sym_function_call, - STATE(1558), 2, + STATE(1561), 2, sym_range_g, sym__discrete_range, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -31197,7 +30984,267 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, + [15216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 1, + sym_identifier, + ACTIONS(984), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(988), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 1, + sym_identifier, + ACTIONS(992), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [15381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, + sym_identifier, + ACTIONS(988), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 1, + sym_identifier, + ACTIONS(996), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [15491] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1002), 1, @@ -31249,7 +31296,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15436] = 3, + [15546] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1006), 1, @@ -31301,7 +31348,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15491] = 3, + [15601] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1010), 1, @@ -31353,7 +31400,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15546] = 3, + [15656] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1014), 1, @@ -31405,7 +31452,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15601] = 3, + [15711] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1018), 1, @@ -31457,77 +31504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15656] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(691), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [15747] = 3, + [15766] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1022), 1, @@ -31579,7 +31556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15802] = 3, + [15821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1026), 1, @@ -31631,7 +31608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15857] = 3, + [15876] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1030), 1, @@ -31683,7 +31660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15912] = 3, + [15931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1034), 1, @@ -31735,7 +31712,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15967] = 3, + [15986] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1038), 1, @@ -31787,7 +31764,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16022] = 3, + [16041] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1042), 1, @@ -31839,7 +31816,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16077] = 3, + [16096] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1046), 1, @@ -31891,7 +31868,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16132] = 3, + [16151] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1050), 1, @@ -31943,7 +31920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16187] = 3, + [16206] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1054), 1, @@ -31995,7 +31972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16242] = 3, + [16261] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1058), 1, @@ -32047,7 +32024,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16297] = 3, + [16316] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1062), 1, @@ -32099,7 +32076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16352] = 3, + [16371] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1066), 1, @@ -32151,7 +32128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16407] = 3, + [16426] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1070), 1, @@ -32203,7 +32180,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16462] = 3, + [16481] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(690), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1074), 1, @@ -32255,7 +32302,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16517] = 3, + [16627] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1078), 1, @@ -32307,7 +32354,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16572] = 3, + [16682] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(982), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1889), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1847), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [16777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1082), 1, @@ -32359,7 +32478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16627] = 3, + [16832] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1086), 1, @@ -32411,7 +32530,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16682] = 3, + [16887] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1090), 1, @@ -32463,77 +32582,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16737] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(687), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16828] = 3, + [16942] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1094), 1, @@ -32585,77 +32634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16883] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(386), 1, - aux_sym_raise_expression_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(578), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(679), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [16974] = 3, + [16997] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1098), 1, @@ -32707,7 +32686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17029] = 3, + [17052] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1102), 1, @@ -32759,7 +32738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17084] = 3, + [17107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -32811,7 +32790,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17139] = 3, + [17162] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1110), 1, @@ -32863,7 +32842,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17194] = 3, + [17217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1114), 1, @@ -32915,7 +32894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17249] = 3, + [17272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1118), 1, @@ -32967,7 +32946,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17304] = 3, + [17327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + sym_identifier, + ACTIONS(1036), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [17382] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1122), 1, @@ -33019,7 +33050,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17359] = 3, + [17437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1126), 1, @@ -33071,7 +33102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17414] = 3, + [17492] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1130), 1, @@ -33123,7 +33154,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17469] = 3, + [17547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1134), 1, @@ -33175,7 +33206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17524] = 3, + [17602] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1138), 1, @@ -33227,7 +33258,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17579] = 3, + [17657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1142), 1, @@ -33279,7 +33310,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17634] = 3, + [17712] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1146), 1, @@ -33331,7 +33362,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17689] = 3, + [17767] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1150), 1, @@ -33383,7 +33414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17744] = 3, + [17822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1154), 1, @@ -33435,7 +33466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17799] = 3, + [17877] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1158), 1, @@ -33487,7 +33518,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17854] = 3, + [17932] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1162), 1, @@ -33539,7 +33570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17909] = 3, + [17987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1166), 1, @@ -33591,7 +33622,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17964] = 3, + [18042] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1170), 1, @@ -33643,7 +33674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18019] = 3, + [18097] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1174), 1, @@ -33695,7 +33726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18074] = 3, + [18152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1178), 1, @@ -33747,7 +33778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18129] = 3, + [18207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1182), 1, @@ -33799,7 +33830,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18184] = 3, + [18262] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1186), 1, @@ -33851,7 +33882,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18239] = 3, + [18317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1186), 1, + sym_identifier, + ACTIONS(1184), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1190), 1, @@ -33903,7 +33986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18294] = 3, + [18427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1194), 1, @@ -33955,79 +34038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18349] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(998), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1717), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(1652), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [18444] = 3, + [18482] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1198), 1, @@ -34079,7 +34090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18499] = 3, + [18537] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1202), 1, @@ -34131,7 +34142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18554] = 3, + [18592] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1206), 1, @@ -34183,7 +34194,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18609] = 3, + [18647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 1, + sym_identifier, + ACTIONS(1148), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [18702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1210), 1, @@ -34235,59 +34298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1210), 1, - sym_identifier, - ACTIONS(1208), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18719] = 3, + [18757] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1214), 1, @@ -34339,59 +34350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - sym_identifier, - ACTIONS(1180), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [18829] = 3, + [18812] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1218), 1, @@ -34443,7 +34402,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18884] = 3, + [18867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1222), 1, @@ -34495,7 +34454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18939] = 3, + [18922] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1226), 1, @@ -34547,7 +34506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18994] = 3, + [18977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1230), 1, @@ -34599,7 +34558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19049] = 3, + [19032] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1234), 1, @@ -34651,7 +34610,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19104] = 3, + [19087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(980), 1, + sym_identifier, + ACTIONS(978), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1238), 1, @@ -34703,59 +34714,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 1, - sym_identifier, - ACTIONS(1204), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19214] = 3, + [19197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1242), 1, @@ -34807,7 +34766,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19269] = 3, + [19252] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1246), 1, @@ -34859,7 +34818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19324] = 3, + [19307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1250), 1, @@ -34911,7 +34870,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19379] = 3, + [19362] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1254), 1, @@ -34963,7 +34922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19434] = 3, + [19417] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1258), 1, @@ -35015,7 +34974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19489] = 3, + [19472] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1262), 1, @@ -35067,7 +35026,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19544] = 3, + [19527] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1266), 1, @@ -35119,7 +35078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19599] = 3, + [19582] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1270), 1, @@ -35171,7 +35130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19654] = 3, + [19637] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1274), 1, @@ -35223,7 +35182,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19709] = 3, + [19692] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1278), 1, @@ -35275,7 +35234,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19764] = 3, + [19747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1252), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [19802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1282), 1, @@ -35327,7 +35338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19819] = 3, + [19857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1286), 1, @@ -35379,7 +35390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19874] = 3, + [19912] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1290), 1, @@ -35431,59 +35442,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - sym_identifier, - ACTIONS(1284), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [19984] = 3, + [19967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1294), 1, @@ -35535,7 +35494,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20039] = 3, + [20022] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1298), 1, @@ -35587,7 +35546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20094] = 3, + [20077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1302), 1, @@ -35639,7 +35598,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20149] = 3, + [20132] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1306), 1, @@ -35691,7 +35650,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20204] = 3, + [20187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1226), 1, + sym_identifier, + ACTIONS(1224), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [20242] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1310), 1, @@ -35743,7 +35754,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20259] = 3, + [20297] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1314), 1, @@ -35795,7 +35806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20314] = 3, + [20352] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1318), 1, @@ -35847,7 +35858,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20369] = 3, + [20407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1322), 1, @@ -35899,7 +35910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20424] = 3, + [20462] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1326), 1, @@ -35951,59 +35962,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 1, - sym_identifier, - ACTIONS(1324), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20534] = 3, + [20517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1330), 1, @@ -36055,7 +36014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20589] = 3, + [20572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1334), 1, @@ -36107,59 +36066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 1, - sym_identifier, - ACTIONS(1304), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [20699] = 3, + [20627] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1338), 1, @@ -36211,7 +36118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20754] = 3, + [20682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1342), 1, @@ -36263,7 +36170,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20809] = 3, + [20737] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 1, @@ -36315,7 +36222,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20864] = 3, + [20792] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1350), 1, @@ -36367,7 +36274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20919] = 3, + [20847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1354), 1, @@ -36419,79 +36326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20974] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(998), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1717), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(1592), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [21069] = 3, + [20902] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 1, @@ -36543,7 +36378,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21124] = 3, + [20957] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(982), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1889), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1395), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [21052] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1362), 1, @@ -36595,59 +36502,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - sym_identifier, - ACTIONS(1284), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21234] = 3, + [21107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1366), 1, @@ -36699,59 +36554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1286), 1, - sym_identifier, - ACTIONS(1284), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21344] = 3, + [21162] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1370), 1, @@ -36803,7 +36606,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21399] = 3, + [21217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1374), 1, @@ -36855,7 +36658,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21454] = 3, + [21272] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1378), 1, @@ -36907,7 +36710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21509] = 3, + [21327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1382), 1, @@ -36959,7 +36762,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21564] = 3, + [21382] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1386), 1, @@ -37011,59 +36814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 1, - sym_identifier, - ACTIONS(1384), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21674] = 3, + [21437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1390), 1, @@ -37115,7 +36866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21729] = 3, + [21492] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1394), 1, @@ -37167,7 +36918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21784] = 3, + [21547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1398), 1, @@ -37219,7 +36970,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21839] = 3, + [21602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 1, + sym_identifier, + ACTIONS(1040), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1402), 1, @@ -37271,7 +37074,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21894] = 3, + [21712] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1406), 1, @@ -37323,7 +37126,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21949] = 3, + [21767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + sym_identifier, + ACTIONS(1352), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [21822] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1410), 1, @@ -37375,7 +37230,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22004] = 3, + [21877] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1414), 1, @@ -37427,7 +37282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22059] = 3, + [21932] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1418), 1, @@ -37479,7 +37334,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22114] = 3, + [21987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1422), 1, @@ -37531,7 +37386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22169] = 3, + [22042] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1426), 1, @@ -37583,7 +37438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22224] = 3, + [22097] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1430), 1, @@ -37635,79 +37490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22279] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(998), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1717), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(535), 2, - sym__name, - sym_function_call, - STATE(1302), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [22374] = 3, + [22152] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1434), 1, @@ -37759,7 +37542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22429] = 3, + [22207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1438), 1, @@ -37811,7 +37594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22484] = 3, + [22262] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1442), 1, @@ -37863,7 +37646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22539] = 3, + [22317] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1446), 1, @@ -37915,59 +37698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 1, - sym_identifier, - ACTIONS(1404), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22649] = 3, + [22372] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1450), 1, @@ -38019,7 +37750,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22704] = 3, + [22427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1454), 1, @@ -38071,7 +37802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22759] = 3, + [22482] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1458), 1, @@ -38123,7 +37854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22814] = 3, + [22537] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1462), 1, @@ -38175,7 +37906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22869] = 3, + [22592] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1466), 1, @@ -38227,7 +37958,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22924] = 3, + [22647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1454), 1, + sym_identifier, + ACTIONS(1452), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [22702] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1470), 1, @@ -38279,7 +38062,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22979] = 3, + [22757] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1474), 1, @@ -38331,7 +38114,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23034] = 3, + [22812] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1478), 1, @@ -38383,7 +38166,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23089] = 3, + [22867] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(694), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [22958] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(378), 1, + aux_sym_raise_expression_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(687), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [23049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1482), 1, @@ -38435,7 +38358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23144] = 3, + [23104] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1486), 1, @@ -38487,7 +38410,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23199] = 3, + [23159] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1490), 1, @@ -38539,7 +38462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23254] = 3, + [23214] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1494), 1, @@ -38591,7 +38514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23309] = 3, + [23269] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1498), 1, @@ -38643,7 +38566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23364] = 3, + [23324] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1502), 1, @@ -38695,7 +38618,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23419] = 3, + [23379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1418), 1, + sym_identifier, + ACTIONS(1416), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23434] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1506), 1, @@ -38747,7 +38722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23474] = 3, + [23489] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1510), 1, @@ -38799,7 +38774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23529] = 3, + [23544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1514), 1, @@ -38851,111 +38826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1508), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1490), 1, - sym_identifier, - ACTIONS(1488), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [23694] = 3, + [23599] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1518), 1, @@ -39007,7 +38878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23749] = 3, + [23654] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1522), 1, @@ -39059,7 +38930,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23804] = 3, + [23709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 1, + sym_identifier, + ACTIONS(1388), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [23764] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1526), 1, @@ -39111,79 +39034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23859] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(384), 1, - aux_sym_relation_membership_token1, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(586), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(843), 1, - sym_null_exclusion, - STATE(1002), 1, - sym__subtype_indication, - STATE(1717), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - STATE(690), 2, - sym__name, - sym_function_call, - STATE(1053), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(366), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(518), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [23954] = 3, + [23819] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1530), 1, @@ -39235,7 +39086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24009] = 3, + [23874] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1534), 1, @@ -39287,7 +39138,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24064] = 3, + [23929] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1538), 1, @@ -39339,7 +39190,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24119] = 3, + [23984] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(588), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1889), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(703), 2, + sym__name, + sym_function_call, + STATE(1126), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(358), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(528), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [24079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1542), 1, @@ -39391,59 +39314,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1542), 1, - sym_identifier, - ACTIONS(1540), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24229] = 3, + [24134] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1546), 1, @@ -39495,7 +39366,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24284] = 3, + [24189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1550), 1, @@ -39547,7 +39418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24339] = 3, + [24244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1554), 1, @@ -39599,59 +39470,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1538), 1, - sym_identifier, - ACTIONS(1536), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24449] = 3, + [24299] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1558), 1, @@ -39703,7 +39522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24504] = 3, + [24354] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1562), 1, @@ -39755,7 +39574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24559] = 3, + [24409] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1566), 1, @@ -39807,7 +39626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24614] = 3, + [24464] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1570), 1, @@ -39859,7 +39678,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24669] = 3, + [24519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1574), 1, @@ -39911,7 +39730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24724] = 3, + [24574] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1578), 1, @@ -39963,59 +39782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1566), 1, - sym_identifier, - ACTIONS(1564), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [24834] = 3, + [24629] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1582), 1, @@ -40067,7 +39834,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24889] = 3, + [24684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1574), 1, + sym_identifier, + ACTIONS(1572), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [24739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1586), 1, @@ -40119,7 +39938,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24944] = 3, + [24794] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(376), 1, + aux_sym_relation_membership_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(982), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(826), 1, + sym_null_exclusion, + STATE(996), 1, + sym__subtype_indication, + STATE(1889), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + STATE(537), 2, + sym__name, + sym_function_call, + STATE(1613), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [24889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1590), 1, @@ -40171,6 +40062,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [24944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1574), 1, + sym_identifier, + ACTIONS(1572), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [24999] = 3, ACTIONS(3), 1, sym_comment, @@ -40224,6 +40167,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [25054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1574), 1, + sym_identifier, + ACTIONS(1572), 46, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [25109] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1598), 1, @@ -40275,7 +40270,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25109] = 3, + [25164] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1602), 1, @@ -40327,59 +40322,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25164] = 3, + [25219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1606), 1, - sym_identifier, - ACTIONS(1604), 46, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + ACTIONS(1604), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1606), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [25219] = 3, + [25273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1608), 7, @@ -40430,7 +40424,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25273] = 3, + [25327] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1612), 7, @@ -40481,7 +40475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25327] = 3, + [25381] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1616), 7, @@ -40532,40 +40526,193 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25381] = 21, + [25435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(1620), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - ACTIONS(376), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1622), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(378), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [25489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1626), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [25543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1630), 39, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_at_clause_token1, + aux_sym_elsif_expression_item_token1, + aux_sym_object_renaming_declaration_token1, + aux_sym_result_profile_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [25597] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(1620), 1, + ACTIONS(1632), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(632), 1, + STATE(644), 1, sym__simple_expression, STATE(646), 1, sym_membership_choice_list, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(630), 2, + STATE(632), 2, sym_range_g, sym__membership_choice, ACTIONS(494), 4, @@ -40573,12 +40720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(535), 7, + STATE(537), 7, sym__name, sym_selected_component, sym_slice, @@ -40586,7 +40733,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -40601,160 +40748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [25471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1622), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1624), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1626), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1628), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1630), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1632), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [25633] = 3, + [25687] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1634), 7, @@ -40805,7 +40799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25687] = 3, + [25741] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1638), 7, @@ -40856,76 +40850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25741] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(1620), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(632), 1, - sym__simple_expression, - STATE(658), 1, - sym_membership_choice_list, - STATE(2066), 1, - sym_value_sequence, - STATE(630), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(494), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(535), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [25831] = 3, + [25795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1642), 7, @@ -40976,7 +40901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25885] = 3, + [25849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1646), 7, @@ -41027,7 +40952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25939] = 3, + [25903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1650), 7, @@ -41078,7 +41003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [25993] = 3, + [25957] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1654), 7, @@ -41129,7 +41054,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26047] = 3, + [26011] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1658), 7, @@ -41180,7 +41105,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26101] = 3, + [26065] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1662), 7, @@ -41231,7 +41156,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26155] = 3, + [26119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1666), 7, @@ -41282,7 +41207,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26209] = 3, + [26173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 7, @@ -41333,7 +41258,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26263] = 3, + [26227] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1674), 7, @@ -41384,7 +41309,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26317] = 3, + [26281] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(1632), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(644), 1, + sym__simple_expression, + STATE(654), 1, + sym_membership_choice_list, + STATE(2065), 1, + sym_value_sequence, + STATE(632), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(494), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(537), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26371] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1678), 7, @@ -41435,7 +41429,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26371] = 3, + [26425] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1682), 7, @@ -41486,7 +41480,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26425] = 3, + [26479] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1686), 7, @@ -41497,7 +41491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(1688), 39, + ACTIONS(1688), 38, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -41515,7 +41509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, aux_sym_iterator_filter_token1, aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym__package_specification_token2, @@ -41537,7 +41530,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26479] = 3, + [26532] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1690), 7, @@ -41587,7 +41580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26532] = 3, + [26585] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1694), 7, @@ -41637,88 +41630,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1698), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1700), 38, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_at_clause_token1, - aux_sym_elsif_expression_item_token1, - aux_sym_object_renaming_declaration_token1, - aux_sym_result_profile_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, [26638] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(1620), 1, + ACTIONS(1632), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(632), 1, + STATE(644), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(654), 2, + STATE(659), 2, sym_range_g, sym__membership_choice, ACTIONS(494), 4, @@ -41726,12 +41669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(535), 7, + STATE(537), 7, sym__name, sym_selected_component, sym_slice, @@ -41739,7 +41682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -41755,6 +41698,55 @@ static const uint16_t ts_small_parse_table[] = { sym_null_array_aggregate, sym_named_array_aggregate, [26725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 1, + sym_identifier, + ACTIONS(1698), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1704), 1, @@ -41803,7 +41795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26777] = 3, + [26829] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1708), 1, @@ -41852,7 +41844,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26829] = 3, + [26881] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1712), 1, @@ -41901,7 +41893,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26881] = 3, + [26933] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1716), 1, @@ -41950,7 +41942,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26933] = 3, + [26985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1720), 1, @@ -41999,7 +41991,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26985] = 3, + [27037] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1724), 1, @@ -42048,7 +42040,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27037] = 3, + [27089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1728), 1, @@ -42097,115 +42089,220 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27089] = 8, + [27141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1738), 1, - anon_sym_LPAREN, - STATE(492), 1, - sym_actual_parameter_part, - STATE(544), 1, - sym_index_constraint, - ACTIONS(1730), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1732), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, + ACTIONS(1732), 1, + sym_identifier, + ACTIONS(1730), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [27151] = 8, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1738), 1, - anon_sym_LPAREN, - STATE(492), 1, - sym_actual_parameter_part, - STATE(549), 1, - sym_index_constraint, - ACTIONS(1740), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1742), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(1734), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(1861), 1, + sym_chunk_specification, + STATE(1866), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1738), 1, + sym_identifier, + ACTIONS(1736), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - [27213] = 3, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1742), 1, + sym_identifier, + ACTIONS(1740), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27383] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1746), 1, @@ -42254,73 +42351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27265] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(1620), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(793), 1, - sym_range_g, - STATE(1717), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(494), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(535), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [27351] = 3, + [27435] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1750), 1, @@ -42369,50 +42400,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27403] = 20, + [27487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(1754), 1, + sym_identifier, + ACTIONS(1752), 43, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(388), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27539] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(1752), 1, + ACTIONS(1632), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(1707), 1, - sym_chunk_specification, - STATE(1710), 1, + STATE(754), 1, + sym_range_g, + STATE(1889), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(494), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(537), 7, sym__name, sym_selected_component, sym_slice, @@ -42420,7 +42500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -42435,12 +42515,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27489] = 3, + [27625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 1, + ACTIONS(1758), 1, sym_identifier, - ACTIONS(1754), 43, + ACTIONS(1756), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -42484,110 +42564,192 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27541] = 3, + [27677] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 1, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(1758), 43, - ts_builtin_sym_end, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(626), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27760] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(502), 1, aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27593] = 3, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(655), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [27843] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1764), 1, - sym_identifier, - ACTIONS(1762), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + anon_sym_LPAREN, + STATE(543), 1, + sym_index_constraint, + STATE(548), 1, + sym_discriminant_constraint, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(1760), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1762), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27645] = 3, + [27902] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1768), 1, sym_identifier, - ACTIONS(1766), 43, + ACTIONS(1766), 42, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -42598,7 +42760,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, aux_sym_compilation_unit_token1, aux_sym__package_specification_token1, - aux_sym__package_specification_token3, aux_sym_with_clause_token1, aux_sym_with_clause_token2, aux_sym_use_clause_token2, @@ -42631,146 +42792,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27697] = 3, + [27953] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1772), 1, - sym_identifier, - ACTIONS(1770), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1776), 1, - sym_identifier, - ACTIONS(1774), 43, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27801] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(1481), 1, + STATE(724), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -42778,7 +42841,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -42793,7 +42856,231 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [27884] = 3, + [28036] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(1529), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28119] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(1944), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1772), 1, + sym_identifier, + ACTIONS(1770), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1776), 1, + sym_identifier, + ACTIONS(1774), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28304] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1780), 1, @@ -42841,7 +43128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27935] = 3, + [28355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1784), 1, @@ -42889,176 +43176,201 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27986] = 10, + [28406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(800), 1, - sym__parenthesized_expression, - ACTIONS(1793), 5, + ACTIONS(1788), 1, + sym_identifier, + ACTIONS(1786), 42, + ts_builtin_sym_end, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_PIPE, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, - ACTIONS(1786), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(794), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1788), 19, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [28457] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_with_clause_token2, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [28051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1804), 1, - sym_identifier, - ACTIONS(1802), 42, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1808), 1, - sym_identifier, - ACTIONS(1806), 42, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28153] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1814), 1, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, anon_sym_LPAREN, - STATE(492), 1, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(1481), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28540] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(726), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28623] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1796), 1, + anon_sym_DOT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + STATE(493), 1, sym_actual_parameter_part, - ACTIONS(1810), 6, + ACTIONS(1790), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 33, + ACTIONS(1792), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -43092,48 +43404,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [28212] = 19, + [28682] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(372), 1, + ACTIONS(364), 1, anon_sym_PLUS, - ACTIONS(374), 1, + ACTIONS(366), 1, anon_sym_DASH, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(546), 1, + STATE(551), 1, sym_unary_adding_operator, - STATE(562), 1, + STATE(570), 1, sym_term, - STATE(1861), 1, + STATE(2023), 1, sym__simple_expression, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -43141,7 +43453,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -43156,55 +43468,306 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28295] = 3, + [28765] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1818), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(1807), 5, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_PIPE, + aux_sym_loop_statement_token1, + ACTIONS(1800), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(778), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1802), 19, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_with_clause_token2, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [28830] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(1816), 42, - ts_builtin_sym_end, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(2047), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28913] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, + ACTIONS(502), 1, aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(660), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28996] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_LPAREN, + STATE(550), 1, + sym__parenthesized_expression, + STATE(554), 1, + sym_discriminant_constraint, + STATE(556), 1, + sym_index_constraint, + ACTIONS(1816), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1818), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28346] = 3, + [29055] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(364), 1, + anon_sym_PLUS, + ACTIONS(366), 1, + anon_sym_DASH, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(500), 1, + aux_sym_relation_membership_token1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(551), 1, + sym_unary_adding_operator, + STATE(570), 1, + sym_term, + STATE(1864), 1, + sym__simple_expression, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(541), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29138] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1822), 1, @@ -43252,649 +43815,173 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [28397] = 19, + [29189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(620), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28480] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(1784), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28563] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(650), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28646] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(1622), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1826), 1, - sym_identifier, - ACTIONS(1824), 42, - ts_builtin_sym_end, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [28780] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(2020), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28863] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(645), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28946] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(1444), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29029] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(703), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29112] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(372), 1, - anon_sym_PLUS, - ACTIONS(374), 1, - anon_sym_DASH, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(546), 1, - sym_unary_adding_operator, - STATE(562), 1, - sym_term, - STATE(702), 1, - sym__simple_expression, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(538), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29195] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1736), 1, + ACTIONS(1800), 1, anon_sym_DOT, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, + ACTIONS(1802), 2, sym_tick, - STATE(492), 1, + anon_sym_LPAREN, + ACTIONS(1824), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1826), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + anon_sym_DOT, + ACTIONS(1802), 2, + sym_tick, + anon_sym_LPAREN, + ACTIONS(1828), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1800), 1, + anon_sym_DOT, + ACTIONS(1802), 1, + sym_tick, + ACTIONS(1836), 1, + anon_sym_LPAREN, + ACTIONS(1832), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1834), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29353] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 1, + anon_sym_DOT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + sym_tick, + STATE(493), 1, sym_actual_parameter_part, - ACTIONS(1810), 6, + ACTIONS(1790), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1812), 31, + ACTIONS(1792), 31, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -43926,25 +44013,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29252] = 7, + [29410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, + ACTIONS(1847), 1, anon_sym_SLASH, - STATE(539), 1, + STATE(540), 1, aux_sym_term_repeat1, - STATE(552), 1, + STATE(561), 1, sym_multiplying_operator, - ACTIONS(1834), 3, + ACTIONS(1845), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1830), 4, + ACTIONS(1841), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1832), 30, + ACTIONS(1843), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -43975,26 +44062,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29308] = 12, + [29466] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(1804), 1, anon_sym_LPAREN, - ACTIONS(1796), 1, + ACTIONS(1810), 1, aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, + ACTIONS(1812), 1, aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, + ACTIONS(1814), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1838), 1, + ACTIONS(1849), 1, anon_sym_EQ_GT, - ACTIONS(1842), 1, + ACTIONS(1853), 1, anon_sym_PIPE, - STATE(800), 1, + STATE(550), 1, sym__parenthesized_expression, - STATE(1418), 1, + STATE(1386), 1, aux_sym_component_choice_list_repeat1, - ACTIONS(1786), 7, + ACTIONS(1800), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -44002,7 +44089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(794), 7, + STATE(778), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -44010,7 +44097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1788), 18, + ACTIONS(1802), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44029,181 +44116,215 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29374] = 7, + [29532] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1836), 1, - anon_sym_SLASH, - STATE(536), 1, - aux_sym_term_repeat1, - STATE(552), 1, - sym_multiplying_operator, - ACTIONS(1834), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1846), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1848), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1857), 1, - anon_sym_SLASH, - STATE(539), 1, - aux_sym_term_repeat1, - STATE(552), 1, - sym_multiplying_operator, - ACTIONS(1854), 3, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1850), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1852), 30, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29486] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1860), 1, - anon_sym_EQ_GT, - ACTIONS(1862), 1, - anon_sym_PIPE, - STATE(800), 1, - sym__parenthesized_expression, - STATE(1261), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1793), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1786), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(794), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1788), 15, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29553] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, ACTIONS(1864), 1, - anon_sym_EQ_GT, - ACTIONS(1866), 1, - anon_sym_PIPE, - STATE(800), 1, - sym__parenthesized_expression, - STATE(1418), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(1793), 2, + anon_sym_SLASH, + STATE(540), 1, + aux_sym_term_repeat1, + STATE(561), 1, + sym_multiplying_operator, + ACTIONS(1861), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1857), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1859), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1786), 7, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29588] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + anon_sym_SLASH, + STATE(538), 1, + aux_sym_term_repeat1, + STATE(561), 1, + sym_multiplying_operator, + ACTIONS(1845), 3, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + ACTIONS(1867), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1869), 30, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1871), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1873), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1877), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [29738] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1879), 1, + anon_sym_EQ_GT, + ACTIONS(1881), 1, + anon_sym_PIPE, + STATE(550), 1, + sym__parenthesized_expression, + STATE(1254), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1807), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1800), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -44211,7 +44332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(794), 7, + STATE(778), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -44219,7 +44340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1788), 15, + ACTIONS(1802), 15, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44235,17 +44356,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29620] = 3, + [29805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1868), 6, + ACTIONS(1883), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1870), 33, + ACTIONS(1885), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44279,17 +44400,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29667] = 3, + [29852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1887), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1874), 33, + ACTIONS(1889), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44323,17 +44444,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29714] = 3, + [29899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1740), 6, + ACTIONS(1891), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1742), 33, + ACTIONS(1893), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44367,17 +44488,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29761] = 3, + [29946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1876), 6, + ACTIONS(1895), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1878), 33, + ACTIONS(1897), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44411,40 +44532,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29808] = 15, + [29993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(1899), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1901), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1903), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1905), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30087] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(564), 1, + STATE(567), 1, sym_term, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -44452,7 +44661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -44467,40 +44676,84 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29879] = 15, + [30158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(1907), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1909), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30205] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(362), 1, sym_numeric_literal, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(388), 1, + ACTIONS(380), 1, aux_sym_factor_abs_token1, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(500), 1, aux_sym_relation_membership_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - STATE(568), 1, + STATE(574), 1, sym_term, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(538), 4, + STATE(541), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -44508,7 +44761,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(551), 14, + STATE(555), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -44523,17 +44776,17 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29950] = 3, + [30276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1880), 6, + ACTIONS(1911), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1882), 33, + ACTIONS(1913), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44567,17 +44820,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29997] = 3, + [30323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 6, + ACTIONS(1919), 1, + anon_sym_STAR_STAR, + ACTIONS(1915), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1886), 33, + ACTIONS(1917), 32, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1921), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1923), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44611,17 +44909,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30044] = 3, + [30419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1888), 6, + ACTIONS(1925), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1890), 33, + ACTIONS(1927), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44655,24 +44953,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30091] = 4, + [30466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1896), 1, - anon_sym_STAR_STAR, - ACTIONS(1892), 6, + ACTIONS(1929), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1894), 32, + ACTIONS(1931), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, + anon_sym_STAR, anon_sym_mod, anon_sym_rem, anon_sym_COMMA, @@ -44700,148 +44996,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30140] = 14, + [30512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(370), 1, - sym_numeric_literal, - ACTIONS(376), 1, + ACTIONS(1933), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1935), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30558] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(388), 1, - aux_sym_factor_abs_token1, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(500), 1, - aux_sym_relation_membership_token1, - ACTIONS(502), 1, - aux_sym_primary_null_token1, - ACTIONS(602), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(555), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(551), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [30208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1898), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1900), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30254] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1902), 1, - anon_sym_LPAREN, - ACTIONS(1904), 1, + ACTIONS(1939), 1, aux_sym_attribute_designator_token1, - ACTIONS(1906), 1, + ACTIONS(1941), 1, aux_sym_attribute_designator_token2, - ACTIONS(1908), 1, + ACTIONS(1943), 1, aux_sym_attribute_designator_token3, - ACTIONS(1910), 1, + ACTIONS(1945), 1, aux_sym_attribute_designator_token4, - ACTIONS(1912), 1, + ACTIONS(1947), 1, aux_sym_compilation_unit_token1, - ACTIONS(1914), 1, + ACTIONS(1949), 1, aux_sym_with_clause_token1, - ACTIONS(1916), 1, + ACTIONS(1951), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(1920), 1, + ACTIONS(1955), 1, aux_sym_primary_null_token1, - ACTIONS(1922), 1, + ACTIONS(1957), 1, aux_sym_allocator_token1, - ACTIONS(1926), 1, + ACTIONS(1961), 1, aux_sym_record_component_association_list_token1, - ACTIONS(1928), 1, + ACTIONS(1963), 1, aux_sym_private_type_declaration_token1, - ACTIONS(1930), 1, + ACTIONS(1965), 1, aux_sym_private_type_declaration_token2, - ACTIONS(1932), 1, + ACTIONS(1967), 1, aux_sym_private_extension_declaration_token1, - ACTIONS(1934), 1, + ACTIONS(1969), 1, aux_sym_array_type_definition_token1, - ACTIONS(1936), 1, + ACTIONS(1971), 1, aux_sym_interface_type_definition_token2, - STATE(1420), 1, + STATE(1415), 1, sym_null_exclusion, - STATE(1467), 1, + STATE(1443), 1, sym_record_definition, - ACTIONS(1924), 2, + ACTIONS(1959), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, - STATE(1419), 17, + STATE(1414), 17, sym__access_type_definition, sym_access_to_subprogram_definition, sym_access_to_object_definition, @@ -44859,398 +45101,229 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [30338] = 3, + [30642] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1940), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1944), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1948), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30476] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1902), 1, + ACTIONS(362), 1, + sym_numeric_literal, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(1904), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1906), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1908), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1910), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1916), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1936), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1950), 1, - aux_sym_with_clause_token1, - ACTIONS(1952), 1, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + aux_sym_factor_abs_token1, + ACTIONS(384), 1, aux_sym_allocator_token1, - ACTIONS(1954), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1956), 1, - aux_sym_private_type_declaration_token2, - STATE(1420), 1, - sym_null_exclusion, - STATE(1467), 1, - sym_record_definition, - ACTIONS(1924), 3, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_private_extension_declaration_token1, - aux_sym_interface_type_definition_token1, - STATE(1416), 17, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - sym__type_definition, - sym_array_type_definition, - sym_enumeration_type_definition, - sym__integer_type_definition, - sym_modular_type_definition, - sym__real_type_definition, - sym_floating_point_definition, - sym__fixed_point_definition, - sym_decimal_fixed_point_definition, - sym_ordinary_fixed_point_definition, - sym_signed_integer_type_definition, - sym_derived_type_definition, - sym_interface_type_definition, - sym_record_type_definition, - [30555] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_DASH, - STATE(547), 1, - sym_binary_adding_operator, - STATE(561), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1962), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1958), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1960), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, + ACTIONS(500), 1, aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30607] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_DASH, - STATE(547), 1, - sym_binary_adding_operator, - STATE(561), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1962), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1966), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1968), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_DASH, - STATE(547), 1, - sym_binary_adding_operator, - STATE(561), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1974), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1970), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1972), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30711] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_DASH, - STATE(547), 1, - sym_binary_adding_operator, - STATE(559), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1962), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1980), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1982), 28, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30763] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(800), 1, + ACTIONS(502), 1, + aux_sym_primary_null_token1, + ACTIONS(598), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(562), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(555), 14, sym__parenthesized_expression, - ACTIONS(1793), 2, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [30710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1975), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1786), 6, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1977), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1979), 33, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_STAR, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [30802] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 1, + anon_sym_LPAREN, + ACTIONS(1939), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1941), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1943), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1945), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1951), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1971), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1981), 1, + aux_sym_with_clause_token1, + ACTIONS(1983), 1, + aux_sym_allocator_token1, + ACTIONS(1985), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1987), 1, + aux_sym_private_type_declaration_token2, + STATE(1415), 1, + sym_null_exclusion, + STATE(1443), 1, + sym_record_definition, + ACTIONS(1959), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1389), 17, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + sym__type_definition, + sym_array_type_definition, + sym_enumeration_type_definition, + sym__integer_type_definition, + sym_modular_type_definition, + sym__real_type_definition, + sym_floating_point_definition, + sym__fixed_point_definition, + sym_decimal_fixed_point_definition, + sym_ordinary_fixed_point_definition, + sym_signed_integer_type_definition, + sym_derived_type_definition, + sym_interface_type_definition, + sym_record_type_definition, + [30881] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(1807), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1800), 6, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(794), 7, + STATE(778), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -45258,7 +45331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(1788), 16, + ACTIONS(1802), 16, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -45275,23 +45348,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30821] = 7, + [30939] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(1995), 1, anon_sym_DASH, - STATE(547), 1, + STATE(553), 1, sym_binary_adding_operator, - STATE(560), 1, + STATE(568), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1962), 2, + ACTIONS(1993), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1958), 3, + ACTIONS(1989), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1960), 28, + ACTIONS(1991), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -45320,17 +45393,315 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30873] = 5, + [30991] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(1995), 1, + anon_sym_DASH, + STATE(553), 1, + sym_binary_adding_operator, + STATE(566), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1993), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1997), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1999), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31043] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2008), 1, + anon_sym_DASH, + STATE(553), 1, + sym_binary_adding_operator, + STATE(568), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(2005), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(2001), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2003), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31095] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 1, + anon_sym_DASH, + STATE(553), 1, + sym_binary_adding_operator, + STATE(568), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1993), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1997), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1999), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31147] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1995), 1, + anon_sym_DASH, + STATE(553), 1, + sym_binary_adding_operator, + STATE(569), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1993), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(2011), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2013), 28, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31199] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1971), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + aux_sym_attribute_designator_token2, + ACTIONS(2019), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2021), 1, + aux_sym_attribute_designator_token4, + ACTIONS(2023), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2025), 1, + aux_sym_with_clause_token1, + ACTIONS(2027), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(2029), 1, + aux_sym_allocator_token1, + ACTIONS(2031), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(2033), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(2035), 1, + aux_sym_private_extension_declaration_token1, + STATE(1370), 1, + sym_interface_type_definition, + STATE(1371), 1, + sym_array_type_definition, + STATE(1415), 1, + sym_null_exclusion, + ACTIONS(1959), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1375), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1213), 12, + sym__formal_type_definition, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [31280] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1971), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(2015), 1, + anon_sym_LPAREN, + ACTIONS(2017), 1, + aux_sym_attribute_designator_token2, + ACTIONS(2019), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2021), 1, + aux_sym_attribute_designator_token4, + ACTIONS(2023), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2025), 1, + aux_sym_with_clause_token1, + ACTIONS(2027), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(2029), 1, + aux_sym_allocator_token1, + ACTIONS(2031), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(2035), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(2037), 1, + aux_sym_private_type_declaration_token2, + STATE(1370), 1, + sym_interface_type_definition, + STATE(1371), 1, + sym_array_type_definition, + STATE(1415), 1, + sym_null_exclusion, + ACTIONS(1959), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1375), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1147), 12, + sym__formal_type_definition, + sym_formal_private_type_definition, + sym_formal_derived_type_definition, + sym_formal_discrete_type_definition, + sym_formal_signed_integer_type_definition, + sym_formal_modular_type_definition, + sym_formal_floating_point_definition, + sym_formal_ordinary_fixed_point_definition, + sym_formal_decimal_fixed_point_definition, + sym_formal_array_type_definition, + sym_formal_access_type_definition, + sym_formal_interface_type_definition, + [31361] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2039), 1, sym_identifier, - ACTIONS(1988), 1, + ACTIONS(2043), 1, anon_sym_LT_LT, - STATE(565), 2, + STATE(573), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - ACTIONS(1986), 31, + ACTIONS(2041), 31, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -45362,133 +45733,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [30920] = 22, + [31408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1936), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1991), 1, - anon_sym_LPAREN, - ACTIONS(1993), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1995), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1999), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2001), 1, - aux_sym_with_clause_token1, - ACTIONS(2003), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(2005), 1, - aux_sym_allocator_token1, - ACTIONS(2007), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(2009), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(2011), 1, - aux_sym_private_extension_declaration_token1, - STATE(1366), 1, - sym_array_type_definition, - STATE(1369), 1, - sym_interface_type_definition, - STATE(1420), 1, - sym_null_exclusion, - ACTIONS(1924), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1364), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1206), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [31001] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1904), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1936), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1991), 1, - anon_sym_LPAREN, - ACTIONS(1993), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1995), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1997), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1999), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2001), 1, - aux_sym_with_clause_token1, - ACTIONS(2003), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(2005), 1, - aux_sym_allocator_token1, - ACTIONS(2007), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(2011), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(2013), 1, - aux_sym_private_type_declaration_token2, - STATE(1366), 1, - sym_array_type_definition, - STATE(1369), 1, - sym_interface_type_definition, - STATE(1420), 1, - sym_null_exclusion, - ACTIONS(1924), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1364), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1204), 12, - sym__formal_type_definition, - sym_formal_private_type_definition, - sym_formal_derived_type_definition, - sym_formal_discrete_type_definition, - sym_formal_signed_integer_type_definition, - sym_formal_modular_type_definition, - sym_formal_floating_point_definition, - sym_formal_ordinary_fixed_point_definition, - sym_formal_decimal_fixed_point_definition, - sym_formal_array_type_definition, - sym_formal_access_type_definition, - sym_formal_interface_type_definition, - [31082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 4, + ACTIONS(2001), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1972), 30, + ACTIONS(2003), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -45519,12 +45772,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31124] = 3, + [31450] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2015), 1, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(1800), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(778), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1802), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + ACTIONS(2046), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [31505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2048), 1, sym_identifier, - ACTIONS(2017), 32, + ACTIONS(2050), 32, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -45557,119 +45855,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [31165] = 10, + [31546] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(800), 1, - sym__parenthesized_expression, - ACTIONS(1786), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(794), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1788), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - ACTIONS(2019), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [31220] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(392), 1, - aux_sym_allocator_token1, - ACTIONS(602), 1, - sym_identifier, - ACTIONS(2021), 1, - sym_numeric_literal, - ACTIONS(2023), 1, - aux_sym_primary_null_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(598), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(521), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(557), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [31276] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(378), 1, - anon_sym_LBRACK, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(2025), 1, + ACTIONS(2052), 1, sym_numeric_literal, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -45677,7 +45885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(556), 14, + STATE(563), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -45692,29 +45900,29 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31332] = 11, + [31602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(2021), 1, + ACTIONS(2054), 1, sym_numeric_literal, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -45722,7 +45930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(557), 14, + STATE(559), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -45737,29 +45945,29 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31388] = 11, + [31658] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, + ACTIONS(368), 1, anon_sym_LPAREN, - ACTIONS(378), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(392), 1, + ACTIONS(384), 1, aux_sym_allocator_token1, ACTIONS(502), 1, aux_sym_primary_null_token1, - ACTIONS(602), 1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(2027), 1, + ACTIONS(2056), 1, sym_numeric_literal, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(598), 4, + ACTIONS(586), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(521), 7, + STATE(526), 7, sym__name, sym_selected_component, sym_slice, @@ -45767,7 +45975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(553), 14, + STATE(558), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -45782,18 +45990,63 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [31444] = 5, + [31714] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(384), 1, + aux_sym_allocator_token1, + ACTIONS(598), 1, sym_identifier, - ACTIONS(2031), 5, + ACTIONS(2056), 1, + sym_numeric_literal, + ACTIONS(2058), 1, + aux_sym_primary_null_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(586), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(526), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(558), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [31770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2062), 5, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, - ACTIONS(1876), 7, + ACTIONS(1891), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -45801,7 +46054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_rem, - ACTIONS(1878), 18, + ACTIONS(1893), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -45820,7 +46073,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token5, aux_sym_relation_membership_token1, - [31487] = 19, + [31813] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45829,34 +46082,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accept_statement_token1, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - ACTIONS(2033), 1, + ACTIONS(2064), 1, sym_identifier, - ACTIONS(2035), 1, + ACTIONS(2066), 1, aux_sym_iterator_filter_token1, - ACTIONS(2037), 1, + ACTIONS(2068), 1, aux_sym_terminate_alternative_token1, STATE(47), 1, sym_procedure_call_statement, STATE(48), 1, sym_accept_statement, - STATE(884), 1, + STATE(886), 1, sym_guard, - STATE(1210), 1, + STATE(1230), 1, sym_select_alternative, - STATE(1513), 1, + STATE(1507), 1, sym_entry_call_alternative, - STATE(1947), 1, + STATE(1931), 1, sym_triggering_alternative, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1211), 2, + STATE(1216), 2, sym__name, sym_function_call, STATE(44), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1355), 3, + STATE(1352), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, @@ -45865,508 +46118,340 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(1116), 5, + STATE(1106), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31557] = 9, + [31883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 1, - anon_sym_EQ_GT, - ACTIONS(1866), 1, - anon_sym_PIPE, - ACTIONS(2039), 1, - anon_sym_COMMA, - ACTIONS(2042), 1, - anon_sym_COLON, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - STATE(1418), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(1786), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1788), 17, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31607] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2052), 1, - aux_sym_relation_membership_token1, - STATE(531), 1, - sym_relational_operator, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2046), 3, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2048), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31652] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(800), 1, - sym__parenthesized_expression, - ACTIONS(1788), 2, - sym_tick, - anon_sym_DOT, - STATE(738), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(2054), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31701] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_EQ_GT, - ACTIONS(1866), 1, - anon_sym_PIPE, - STATE(1418), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(1786), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(1788), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31743] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - anon_sym_EQ_GT, - ACTIONS(1862), 1, - anon_sym_PIPE, - STATE(1261), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(1786), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1788), 18, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31784] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(2019), 1, - anon_sym_RPAREN, - ACTIONS(2042), 1, - anon_sym_COLON, - ACTIONS(2056), 1, - anon_sym_COMMA, - STATE(800), 1, - sym__parenthesized_expression, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1786), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(794), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1788), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [31839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2058), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1876), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1878), 19, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31875] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2062), 1, - aux_sym__package_specification_token3, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(589), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [31931] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 1, - anon_sym_COLON, - ACTIONS(2056), 1, - anon_sym_COMMA, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1786), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1788), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [31971] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2068), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(588), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [32027] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, ACTIONS(2070), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(584), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [32083] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2070), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(589), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [32139] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2072), 1, - sym_identifier, + anon_sym_COMMA, + ACTIONS(2073), 1, + anon_sym_EQ_GT, ACTIONS(2075), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2078), 1, - aux_sym__package_specification_token3, - ACTIONS(2080), 1, + anon_sym_COLON, + ACTIONS(2077), 1, + anon_sym_PIPE, + STATE(1386), 1, + aux_sym_component_choice_list_repeat1, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1800), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1802), 17, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, aux_sym_relation_membership_token1, - ACTIONS(2083), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2086), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2089), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2092), 1, - aux_sym_global_mode_token1, + anon_sym_STAR_STAR, + [31933] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2087), 1, + aux_sym_relation_membership_token1, + STATE(513), 1, + sym_relational_operator, + ACTIONS(2079), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2081), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2083), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(1802), 2, + sym_tick, + anon_sym_DOT, + STATE(774), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(2089), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [32027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 1, + anon_sym_EQ_GT, + ACTIONS(2077), 1, + anon_sym_PIPE, + STATE(1386), 1, + aux_sym_component_choice_list_repeat1, + ACTIONS(1800), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1802), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32069] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, + anon_sym_EQ_GT, + ACTIONS(1881), 1, + anon_sym_PIPE, + STATE(1254), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(1800), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1802), 18, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32110] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_LPAREN, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(2046), 1, + anon_sym_RPAREN, + ACTIONS(2075), 1, + anon_sym_COLON, + ACTIONS(2091), 1, + anon_sym_COMMA, + STATE(550), 1, + sym__parenthesized_expression, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1800), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(778), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1802), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym_COLON, + ACTIONS(2091), 1, + anon_sym_COMMA, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1800), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1802), 18, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2093), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1891), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1893), 19, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [32241] = 14, + ACTIONS(3), 1, + sym_comment, ACTIONS(2095), 1, + sym_identifier, + ACTIONS(2098), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2101), 1, + aux_sym__package_specification_token3, + ACTIONS(2103), 1, + aux_sym_relation_membership_token1, + ACTIONS(2106), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2109), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2112), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2115), 1, + aux_sym_global_mode_token1, + ACTIONS(2118), 1, aux_sym_pragma_g_token1, - STATE(1036), 1, + STATE(1034), 1, sym_overriding_indicator, - STATE(1669), 1, + STATE(1990), 1, sym__defining_identifier_list, - STATE(1180), 3, + STATE(1208), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(589), 12, + STATE(591), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -46379,184 +46464,231 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [32195] = 10, + [32297] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 1, - anon_sym_LPAREN, - ACTIONS(1796), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1798), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2098), 1, - aux_sym_range_attribute_designator_token1, - STATE(800), 1, - sym__parenthesized_expression, - ACTIONS(2019), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1786), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(794), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1788), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2123), 1, + aux_sym__package_specification_token3, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(591), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [32353] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2129), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(591), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [32409] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2123), 1, + aux_sym__package_specification_token3, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(593), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [32465] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2131), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(592), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [32521] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + ACTIONS(2137), 1, + aux_sym_allocator_token1, + STATE(1034), 1, + sym_overriding_indicator, + STATE(2090), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [32578] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2139), 1, sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32242] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - ACTIONS(2105), 1, - aux_sym_allocator_token1, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1927), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32299] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - ACTIONS(2107), 1, - aux_sym_allocator_token1, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1743), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32356] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - ACTIONS(2109), 1, - aux_sym_allocator_token1, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1923), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2111), 1, - sym_tick, - ACTIONS(2114), 1, + ACTIONS(2142), 1, anon_sym_EQ_GT, - ACTIONS(1786), 6, + ACTIONS(1800), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1788), 17, + ACTIONS(1802), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -46574,7 +46706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [32450] = 15, + [32615] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46587,25 +46719,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, + ACTIONS(2133), 1, aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, + ACTIONS(2135), 1, aux_sym__package_specification_token3, - ACTIONS(2116), 1, + ACTIONS(2144), 1, aux_sym_allocator_token1, - STATE(1036), 1, + STATE(1034), 1, sym_overriding_indicator, - STATE(1827), 1, + STATE(1897), 1, sym_protected_definition, - STATE(1180), 3, + STATE(1208), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(615), 10, + STATE(614), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46616,7 +46748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [32507] = 15, + [32672] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46629,25 +46761,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, + ACTIONS(2133), 1, aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, + ACTIONS(2135), 1, aux_sym__package_specification_token3, - ACTIONS(2118), 1, + ACTIONS(2146), 1, aux_sym_allocator_token1, - STATE(1036), 1, + STATE(1034), 1, sym_overriding_indicator, - STATE(2037), 1, + STATE(2132), 1, sym_protected_definition, - STATE(1180), 3, + STATE(1208), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(615), 10, + STATE(614), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46658,12 +46790,368 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [32564] = 3, + [32729] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + ACTIONS(2148), 1, + aux_sym_allocator_token1, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1709), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [32786] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1804), 1, anon_sym_LPAREN, - ACTIONS(2120), 23, + ACTIONS(1810), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1812), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2150), 1, + aux_sym_range_attribute_designator_token1, + STATE(550), 1, + sym__parenthesized_expression, + ACTIONS(2046), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1800), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(778), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(1802), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [32833] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + ACTIONS(2153), 1, + aux_sym_allocator_token1, + STATE(1034), 1, + sym_overriding_indicator, + STATE(2106), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [32890] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1986), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [32944] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1902), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [32998] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1755), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [33052] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2159), 1, + aux_sym_with_clause_token2, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2157), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33092] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2133), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2135), 1, + aux_sym__package_specification_token3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1914), 1, + sym_protected_definition, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(614), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [33146] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2163), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2165), 1, + aux_sym_component_definition_token1, + ACTIONS(2167), 1, + aux_sym_exception_declaration_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1113), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1120), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2171), 1, + anon_sym_LPAREN, + ACTIONS(2169), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -46687,7 +47175,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32596] = 14, + [33236] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46700,23 +47188,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, + ACTIONS(2133), 1, aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, + ACTIONS(2135), 1, aux_sym__package_specification_token3, - STATE(1036), 1, + STATE(1034), 1, sym_overriding_indicator, - STATE(1752), 1, + STATE(1756), 1, sym_protected_definition, - STATE(1180), 3, + STATE(1208), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(615), 10, + STATE(614), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46727,47 +47215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [32650] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1983), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32704] = 14, + [33290] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46776,25 +47224,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2124), 1, + ACTIONS(2173), 1, aux_sym__package_specification_token3, - ACTIONS(2126), 1, + ACTIONS(2175), 1, aux_sym_subunit_token1, - ACTIONS(2128), 1, + ACTIONS(2177), 1, aux_sym_entry_declaration_token1, - STATE(1115), 1, + STATE(1100), 1, sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, - STATE(609), 12, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(619), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -46807,37 +47255,37 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [32758] = 12, + [33344] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2138), 1, + ACTIONS(2179), 1, + sym_identifier, + ACTIONS(2185), 1, aux_sym_exception_declaration_token1, - STATE(739), 1, + STATE(760), 1, sym_null_exclusion, - STATE(1865), 1, + STATE(1857), 1, sym_access_definition, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2132), 4, + ACTIONS(2181), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2134), 5, + ACTIONS(2183), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - STATE(1092), 7, + STATE(1101), 7, sym__name, sym_selected_component, sym_slice, @@ -46845,140 +47293,18 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [32808] = 16, + [33394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2140), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2142), 1, - aux_sym_component_definition_token1, - ACTIONS(2144), 1, - aux_sym_exception_declaration_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(1090), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1064), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32866] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1753), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32920] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, - aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1748), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [32974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2146), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(1786), 5, + ACTIONS(1800), 5, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1788), 18, + ACTIONS(1802), 18, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -46997,7 +47323,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [33008] = 14, + [33428] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47010,202 +47336,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2101), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2103), 1, + ACTIONS(2131), 1, aux_sym__package_specification_token3, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1899), 1, - sym_protected_definition, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(615), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [33062] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2152), 1, - aux_sym_with_clause_token2, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2150), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33102] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2154), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2157), 1, - aux_sym__package_specification_token3, - ACTIONS(2159), 1, - aux_sym_relation_membership_token1, - ACTIONS(2162), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2165), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2168), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2171), 1, - aux_sym_global_mode_token1, - STATE(1115), 1, - sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(608), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [33153] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2128), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2174), 1, - aux_sym__package_specification_token3, - STATE(1115), 1, - sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(608), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [33204] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, - aux_sym_expression_token1, - ACTIONS(2180), 1, - aux_sym_expression_token3, - ACTIONS(2182), 1, - aux_sym_expression_token5, - STATE(663), 1, - aux_sym_expression_repeat1, - STATE(670), 1, - aux_sym_expression_repeat3, - STATE(671), 1, - aux_sym_expression_repeat2, - ACTIONS(2176), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33245] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2184), 1, - aux_sym_iterated_element_association_token1, ACTIONS(2189), 1, - aux_sym_relation_membership_token1, - ACTIONS(2192), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2195), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2198), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2201), 1, - aux_sym_global_mode_token1, - ACTIONS(2204), 1, - aux_sym_pragma_g_token1, - STATE(1036), 1, - sym_overriding_indicator, - ACTIONS(2187), 2, aux_sym_compilation_unit_token1, - aux_sym__package_specification_token3, - STATE(1180), 3, + STATE(1034), 1, + sym_overriding_indicator, + STATE(1208), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(611), 10, + STATE(627), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -47216,166 +47361,83 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [33294] = 15, + [33479] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(1934), 1, + ACTIONS(1969), 1, aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - STATE(741), 1, + STATE(803), 1, sym_null_exclusion, - STATE(1128), 1, + STATE(1078), 1, sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(2114), 1, + STATE(1714), 1, sym__assign_value, - STATE(1127), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33349] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2128), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2209), 1, - aux_sym__package_specification_token3, - STATE(1115), 1, - sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, - sym_function_specification, - STATE(608), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [33400] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2142), 1, - aux_sym_component_definition_token1, - ACTIONS(2211), 1, - aux_sym_general_access_modifier_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(1090), 1, - sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1064), 2, + STATE(1080), 2, sym_access_definition, sym_array_type_definition, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33455] = 13, + [33534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2068), 1, - aux_sym__package_specification_token3, - ACTIONS(2213), 1, - aux_sym_compilation_unit_token1, - STATE(1036), 1, - sym_overriding_indicator, - STATE(1180), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(611), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [33506] = 2, + ACTIONS(2195), 1, + aux_sym_expression_token1, + ACTIONS(2197), 1, + aux_sym_expression_token3, + ACTIONS(2199), 1, + aux_sym_expression_token5, + STATE(668), 1, + aux_sym_expression_repeat3, + STATE(669), 1, + aux_sym_expression_repeat2, + STATE(674), 1, + aux_sym_expression_repeat1, + ACTIONS(2193), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 23, + ACTIONS(2201), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -47399,7 +47461,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33535] = 13, + [33604] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47408,23 +47470,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2128), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2174), 1, + ACTIONS(2173), 1, aux_sym__package_specification_token3, - STATE(1115), 1, + ACTIONS(2177), 1, + aux_sym_entry_declaration_token1, + STATE(1100), 1, sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, - STATE(613), 12, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(619), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -47437,101 +47499,190 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [33586] = 15, + [33655] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2177), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2203), 1, + aux_sym__package_specification_token3, + STATE(1100), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(625), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [33706] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2177), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2203), 1, + aux_sym__package_specification_token3, + STATE(1100), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(624), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [33757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33786] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2219), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2221), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2223), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(701), 1, - sym_general_access_modifier, - STATE(843), 1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2165), 1, + aux_sym_component_definition_token1, + ACTIONS(2207), 1, + aux_sym_general_access_modifier_token1, + STATE(803), 1, sym_null_exclusion, - STATE(1248), 1, + STATE(1113), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2217), 2, + STATE(1120), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33841] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2211), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2213), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2215), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(722), 1, + sym_general_access_modifier, + STATE(826), 1, + sym_null_exclusion, + STATE(1344), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2209), 2, aux_sym_use_clause_token1, aux_sym_general_access_modifier_token1, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2227), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33699] = 13, + [33896] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47540,23 +47691,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2064), 1, + ACTIONS(2125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2127), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2124), 1, - aux_sym__package_specification_token3, - ACTIONS(2128), 1, + ACTIONS(2177), 1, aux_sym_entry_declaration_token1, - STATE(1115), 1, + ACTIONS(2217), 1, + aux_sym__package_specification_token3, + STATE(1100), 1, sym_overriding_indicator, - STATE(1214), 1, - sym__subprogram_specification, - STATE(1225), 1, - sym_procedure_specification, - STATE(1228), 1, + STATE(1135), 1, sym_function_specification, - STATE(609), 12, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(625), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -47569,307 +47720,266 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [33750] = 14, + [33947] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2222), 1, + aux_sym__package_specification_token3, + ACTIONS(2224), 1, + aux_sym_relation_membership_token1, + ACTIONS(2227), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2230), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2233), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2236), 1, + aux_sym_global_mode_token1, + STATE(1100), 1, + sym_overriding_indicator, + STATE(1135), 1, + sym_function_specification, + STATE(1175), 1, + sym_procedure_specification, + STATE(1222), 1, + sym__subprogram_specification, + STATE(625), 12, + sym_subprogram_body, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_item, + sym_entry_body, + sym_enumeration_representation_clause, + sym_null_procedure_declaration, + sym_record_representation_clause, + sym_subprogram_declaration, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [33998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2239), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34027] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2241), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2246), 1, + aux_sym_relation_membership_token1, + ACTIONS(2249), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2252), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2255), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2258), 1, + aux_sym_global_mode_token1, + ACTIONS(2261), 1, + aux_sym_pragma_g_token1, + STATE(1034), 1, + sym_overriding_indicator, + ACTIONS(2244), 2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token3, + STATE(1208), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(627), 10, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat1, + [34076] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(1934), 1, + ACTIONS(1969), 1, aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2229), 1, + ACTIONS(2264), 1, aux_sym_general_access_modifier_token1, - STATE(741), 1, + STATE(803), 1, sym_null_exclusion, - STATE(1087), 1, + STATE(1085), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1127), 2, + STATE(1080), 2, sym_access_definition, sym_array_type_definition, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33802] = 14, + [34128] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - aux_sym_chunk_specification_token1, - ACTIONS(402), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2231), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(2235), 1, - aux_sym_component_definition_token1, - STATE(731), 1, - sym_non_empty_mode, - STATE(767), 1, - sym_null_exclusion, - STATE(1031), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2233), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(890), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33854] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2237), 1, + ACTIONS(2266), 1, aux_sym_general_access_modifier_token1, - ACTIONS(2239), 1, + ACTIONS(2268), 1, aux_sym_component_definition_token1, - STATE(741), 1, + STATE(803), 1, sym_null_exclusion, - STATE(1232), 1, + STATE(1229), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1030), 2, + STATE(1045), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33906] = 14, + [34180] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(372), 1, + aux_sym_chunk_specification_token1, + ACTIONS(394), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2241), 1, + ACTIONS(2270), 1, + sym_identifier, + ACTIONS(2274), 1, aux_sym_component_definition_token1, - STATE(741), 1, + STATE(729), 1, + sym_non_empty_mode, + STATE(795), 1, sym_null_exclusion, - STATE(1156), 1, + STATE(1028), 1, sym_access_definition, - STATE(1157), 1, - sym__subtype_indication, - STATE(1185), 1, - sym_component_definition, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, + ACTIONS(2272), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(894), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33957] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2245), 1, - aux_sym_with_clause_token2, - ACTIONS(2247), 1, - aux_sym_use_clause_token2, - STATE(1960), 1, - sym__defining_identifier_list, - STATE(929), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2243), 3, - aux_sym__package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(633), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [34000] = 13, + sym_function_call, + [34232] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(1934), 1, + ACTIONS(1969), 1, aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - STATE(741), 1, + STATE(803), 1, sym_null_exclusion, - STATE(1061), 1, + STATE(1078), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1062), 2, + STATE(1080), 2, sym_access_definition, sym_array_type_definition, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34049] = 14, + [34281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2241), 1, - aux_sym_component_definition_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(1059), 1, - sym_component_definition, - STATE(1156), 1, - sym_access_definition, - STATE(1157), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34100] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - aux_sym_chunk_specification_token1, - ACTIONS(402), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2249), 1, - sym_identifier, - STATE(686), 1, - sym_non_empty_mode, - STATE(789), 1, - sym_null_exclusion, - STATE(1120), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2251), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(912), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 1, + ACTIONS(2278), 1, anon_sym_PIPE, STATE(639), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2253), 19, + ACTIONS(2276), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -47889,90 +47999,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34180] = 12, + [34312] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, aux_sym_iterated_element_association_token2, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(2060), 1, + ACTIONS(2121), 1, sym_identifier, - ACTIONS(2245), 1, + ACTIONS(2282), 1, aux_sym_with_clause_token2, - ACTIONS(2247), 1, - aux_sym_use_clause_token2, - ACTIONS(2257), 1, - aux_sym__package_specification_token1, - ACTIONS(2260), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2263), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1960), 1, - sym__defining_identifier_list, - STATE(929), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - STATE(626), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [34227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - anon_sym_DOT_DOT, - ACTIONS(2266), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34256] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2270), 1, - sym_identifier, - ACTIONS(2273), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2278), 1, - aux_sym_with_clause_token2, - ACTIONS(2281), 1, - aux_sym_use_clause_token2, ACTIONS(2284), 1, - aux_sym_pragma_g_token1, - STATE(1960), 1, + aux_sym_use_clause_token2, + STATE(1888), 1, sym__defining_identifier_list, - STATE(929), 2, + STATE(926), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - ACTIONS(2276), 3, + ACTIONS(2280), 3, aux_sym__package_specification_token1, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, - STATE(633), 10, + STATE(636), 10, sym_use_clause, sym__generic_formal_parameter_declaration, sym_formal_object_declaration, @@ -47983,87 +48032,50 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [34299] = 13, + [34355] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(372), 1, + aux_sym_chunk_specification_token1, + ACTIONS(394), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - ACTIONS(2287), 1, - aux_sym_general_access_modifier_token1, - STATE(741), 1, + ACTIONS(2286), 1, + sym_identifier, + STATE(689), 1, + sym_non_empty_mode, + STATE(808), 1, sym_null_exclusion, - STATE(1232), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1014), 2, + STATE(1052), 1, sym_access_definition, - sym__return_subtype_indication, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2288), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(916), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34348] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2241), 1, - aux_sym_component_definition_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(1156), 1, - sym_access_definition, - STATE(1157), 1, - sym__subtype_indication, - STATE(1186), 1, - sym_component_definition, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34399] = 4, + [34404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2291), 1, + ACTIONS(2292), 1, anon_sym_PIPE, - STATE(636), 1, + STATE(635), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2289), 19, + ACTIONS(2290), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -48083,27 +48095,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34430] = 9, + [34435] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, + ACTIONS(2295), 1, sym_identifier, - ACTIONS(2296), 1, + ACTIONS(2298), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2303), 1, + aux_sym_with_clause_token2, + ACTIONS(2306), 1, + aux_sym_use_clause_token2, + ACTIONS(2309), 1, + aux_sym_pragma_g_token1, + STATE(1888), 1, + sym__defining_identifier_list, + STATE(926), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2301), 3, + aux_sym__package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(636), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [34478] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + sym_identifier, + ACTIONS(2314), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, + ACTIONS(2318), 1, aux_sym_range_attribute_designator_token1, - STATE(488), 1, + STATE(469), 1, sym_attribute_designator, - STATE(619), 1, + STATE(617), 1, sym_range_attribute_designator, - ACTIONS(2298), 4, + ACTIONS(2316), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(489), 11, + STATE(486), 11, sym__parenthesized_expression, sym__aggregate, sym__delta_aggregate, @@ -48115,224 +48160,222 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [34471] = 13, + [34519] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(1934), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - STATE(741), 1, + ACTIONS(2320), 1, + aux_sym_component_definition_token1, + STATE(803), 1, sym_null_exclusion, - STATE(1128), 1, + STATE(1122), 1, + sym_component_definition, + STATE(1158), 1, + sym_access_definition, + STATE(1159), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1127), 2, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_PIPE, + STATE(635), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2322), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [34601] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2320), 1, + aux_sym_component_definition_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1158), 1, + sym_access_definition, + STATE(1159), 1, + sym__subtype_indication, + STATE(1164), 1, + sym_component_definition, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34652] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2320), 1, + aux_sym_component_definition_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1158), 1, + sym_access_definition, + STATE(1159), 1, + sym__subtype_indication, + STATE(1162), 1, + sym_component_definition, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34703] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(1969), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1064), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1065), 2, sym_access_definition, sym_array_type_definition, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 1, - anon_sym_PIPE, - STATE(636), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2302), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34551] = 11, + [34752] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2304), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(2308), 1, - anon_sym_SEMI, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1311), 1, - sym_subprogram_default, - STATE(2026), 1, - sym_aspect_specification, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2312), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2306), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1034), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2314), 1, - sym_identifier, - ACTIONS(2316), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2318), 1, - sym_identifier, - ACTIONS(2320), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - STATE(741), 1, + ACTIONS(2324), 1, + aux_sym_general_access_modifier_token1, + STATE(803), 1, sym_null_exclusion, - STATE(1541), 1, + STATE(1229), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - STATE(1542), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34697] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - STATE(741), 1, - sym_null_exclusion, - STATE(1232), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1019), 2, + STATE(1018), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34743] = 2, + [34801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 20, + ACTIONS(2328), 1, + anon_sym_DOT_DOT, + ACTIONS(2326), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -48353,109 +48396,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34769] = 2, + [34830] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(15), 1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - sym_identifier, - ACTIONS(2328), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, + ACTIONS(57), 1, aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34823] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2282), 1, + aux_sym_with_clause_token2, + ACTIONS(2284), 1, + aux_sym_use_clause_token2, ACTIONS(2330), 1, - sym_identifier, - ACTIONS(2332), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2333), 1, aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2336), 1, aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34851] = 3, + STATE(1888), 1, + sym__defining_identifier_list, + STATE(926), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + STATE(633), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [34877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 1, - sym_identifier, - ACTIONS(2336), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 20, + ACTIONS(2339), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -48476,12 +48455,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [34905] = 3, + [34903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 1, + ACTIONS(2341), 1, sym_identifier, - ACTIONS(2342), 19, + ACTIONS(2343), 19, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, @@ -48501,145 +48480,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_gnatprep_declarative_if_statement_token3, aux_sym_gnatprep_declarative_if_statement_token4, aux_sym_subtype_declaration_token1, - [34933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 1, - sym_identifier, - ACTIONS(2346), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2348), 1, - sym_identifier, - ACTIONS(2350), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [34989] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2352), 1, - sym_identifier, - ACTIONS(2354), 19, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym__package_specification_token3, - aux_sym_use_clause_token2, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_interface_type_definition_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - aux_sym_gnatprep_declarative_if_statement_token1, - aux_sym_gnatprep_declarative_if_statement_token2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - aux_sym_subtype_declaration_token1, - [35043] = 12, + [34931] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - STATE(741), 1, + ACTIONS(2345), 1, + sym_identifier, + ACTIONS(2349), 1, + anon_sym_LPAREN, + STATE(514), 1, + sym__subtype_mark, + STATE(534), 1, + sym_qualified_expression, + STATE(549), 1, + sym__subtype_indication_paren_constraint, + STATE(696), 1, + sym_subpool_specification, + STATE(769), 1, sym_null_exclusion, - STATE(1232), 1, + STATE(2065), 1, + sym_value_sequence, + STATE(536), 3, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + STATE(1201), 3, + sym__name, + sym_slice, + sym_function_call, + ACTIONS(2347), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + [34981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2351), 1, + sym_identifier, + ACTIONS(2353), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2355), 1, + sym_identifier, + ACTIONS(2357), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + sym_identifier, + ACTIONS(2361), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35065] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1229), 1, sym__subtype_indication, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, STATE(1029), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1142), 2, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [35089] = 3, + [35111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 1, + ACTIONS(2363), 1, sym_identifier, - ACTIONS(2358), 19, + ACTIONS(2365), 19, aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, @@ -48659,10 +48650,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_gnatprep_declarative_if_statement_token3, aux_sym_gnatprep_declarative_if_statement_token4, aux_sym_subtype_declaration_token1, - [35117] = 2, + [35139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 20, + ACTIONS(2367), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -48683,46 +48674,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35143] = 11, + [35165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2362), 1, - sym_identifier, - ACTIONS(2366), 1, - anon_sym_LPAREN, - STATE(543), 1, - sym__subtype_indication_paren_constraint, - STATE(721), 1, - sym_subpool_specification, - STATE(834), 1, - sym_null_exclusion, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2364), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(503), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35186] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2370), 1, - aux_sym_expression_token1, - STATE(660), 1, - aux_sym_expression_repeat1, - ACTIONS(2368), 17, + ACTIONS(2369), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -48735,153 +48690,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, anon_sym_PIPE, aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35215] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - sym_identifier, - ACTIONS(2377), 1, - aux_sym__package_specification_token3, - ACTIONS(2379), 1, - aux_sym_at_clause_token1, - STATE(698), 1, - sym_mod_clause, - STATE(2066), 1, - sym_value_sequence, - STATE(712), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2375), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35256] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, - sym_identifier, - ACTIONS(2296), 1, - anon_sym_LBRACK, - STATE(1136), 1, - sym_attribute_designator, - ACTIONS(2298), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(489), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [35291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2178), 1, aux_sym_expression_token1, - STATE(660), 1, - aux_sym_expression_repeat1, - ACTIONS(2381), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, aux_sym_expression_token2, + aux_sym_expression_token3, aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35320] = 12, + [35191] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(998), 1, + ACTIONS(982), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(1953), 1, aux_sym_relation_membership_token1, - ACTIONS(2136), 1, + ACTIONS(2161), 1, aux_sym_attribute_designator_token1, - STATE(741), 1, + STATE(803), 1, sym_null_exclusion, - STATE(1158), 1, + STATE(1229), 1, sym__subtype_indication, - STATE(1159), 1, - sym_access_definition, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - STATE(1142), 2, + STATE(1031), 2, + sym_access_definition, + sym__return_subtype_indication, + STATE(1201), 2, sym__name, sym_function_call, - ACTIONS(902), 4, + ACTIONS(898), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(570), 5, + STATE(575), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [35365] = 11, + [35237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2371), 1, + sym_identifier, + ACTIONS(2373), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35265] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2130), 1, + ACTIONS(2375), 1, sym_identifier, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2138), 1, - aux_sym_exception_declaration_token1, - STATE(739), 1, - sym_null_exclusion, - STATE(1865), 1, - sym_access_definition, - STATE(2066), 1, + ACTIONS(2379), 1, + anon_sym_SEMI, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1314), 1, + sym_subprogram_default, + STATE(1717), 1, + sym_aspect_specification, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2132), 4, + ACTIONS(2383), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2377), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1092), 7, + STATE(1042), 7, sym__name, sym_selected_component, sym_slice, @@ -48889,145 +48790,10 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35408] = 12, + [35309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - ACTIONS(2387), 1, - aux_sym_allocator_token1, - STATE(1909), 1, - sym_task_definition, - STATE(1912), 1, - sym_overriding_indicator, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35453] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(380), 1, - aux_sym_chunk_specification_token1, - ACTIONS(402), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2389), 1, - sym_identifier, - STATE(729), 1, - sym_non_empty_mode, - STATE(844), 1, - sym_null_exclusion, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2391), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35496] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - ACTIONS(2393), 1, - aux_sym_allocator_token1, - STATE(1668), 1, - sym_task_definition, - STATE(1912), 1, - sym_overriding_indicator, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35541] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - ACTIONS(2395), 1, - aux_sym_allocator_token1, - STATE(1912), 1, - sym_overriding_indicator, - STATE(2014), 1, - sym_task_definition, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2182), 1, - aux_sym_expression_token5, - STATE(672), 1, - aux_sym_expression_repeat3, - ACTIONS(2381), 17, + ACTIONS(2290), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -49040,19 +48806,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, anon_sym_PIPE, aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2180), 1, aux_sym_expression_token3, - STATE(674), 1, - aux_sym_expression_repeat2, - ACTIONS(2381), 17, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -49065,90 +48830,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, anon_sym_PIPE, aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, aux_sym_expression_token2, + aux_sym_expression_token3, aux_sym_expression_token4, + aux_sym_expression_token5, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35644] = 4, + [35361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2389), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 1, + sym_identifier, + ACTIONS(2393), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 1, + sym_identifier, + ACTIONS(2397), 19, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35445] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1521), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + STATE(1522), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35491] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2399), 1, - aux_sym_expression_token5, - STATE(672), 1, - aux_sym_expression_repeat3, - ACTIONS(2397), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35673] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(2294), 1, sym_identifier, - ACTIONS(2296), 1, - anon_sym_LBRACK, - STATE(488), 1, - sym_attribute_designator, - ACTIONS(2298), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(489), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [35708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2404), 1, - aux_sym_expression_token3, - STATE(674), 1, - aux_sym_expression_repeat2, - ACTIONS(2402), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2401), 19, + aux_sym_iterated_element_association_token1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35737] = 12, + aux_sym__package_specification_token1, + aux_sym__package_specification_token3, + aux_sym_use_clause_token2, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_interface_type_definition_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + aux_sym_gnatprep_declarative_if_statement_token1, + aux_sym_gnatprep_declarative_if_statement_token2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + aux_sym_subtype_declaration_token1, + [35519] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -49161,1395 +48985,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, + ACTIONS(2403), 1, aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, + ACTIONS(2405), 1, aux_sym__package_specification_token3, ACTIONS(2407), 1, aux_sym_allocator_token1, - STATE(1912), 1, - sym_overriding_indicator, - STATE(2050), 1, + STATE(1620), 1, sym_task_definition, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35782] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 1, - aux_sym_chunk_specification_token1, - ACTIONS(2052), 1, - aux_sym_relation_membership_token1, - ACTIONS(2268), 1, - anon_sym_DOT_DOT, - STATE(531), 1, - sym_relational_operator, - ACTIONS(2044), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2046), 3, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2048), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - [35819] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - ACTIONS(2409), 1, - aux_sym_allocator_token1, - STATE(1912), 1, - sym_overriding_indicator, - STATE(2011), 1, - sym_task_definition, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35864] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - sym_identifier, - ACTIONS(2415), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2417), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2419), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2421), 1, - aux_sym_general_access_modifier_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2413), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(863), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2423), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35928] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - sym_tick, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1412), 1, - sym_iterator_filter, - ACTIONS(1810), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2425), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(1812), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [35968] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, - sym_identifier, - ACTIONS(2433), 1, - aux_sym_component_choice_list_token1, - STATE(1403), 1, - sym_exception_choice, - STATE(1842), 1, - sym_choice_parameter_specification, - STATE(1866), 1, - sym_exception_choice_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2431), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1025), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36032] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2435), 1, - sym_identifier, - STATE(759), 1, - sym_null_exclusion, - STATE(1046), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2437), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(895), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36072] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(2003), 1, - sym_task_definition, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36114] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - STATE(1797), 1, - sym_task_definition, - STATE(1912), 1, - sym_overriding_indicator, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36156] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2439), 1, - sym_identifier, - STATE(743), 1, - sym_null_exclusion, - STATE(1100), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2441), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(910), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2443), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36220] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - STATE(1796), 1, - sym_task_definition, - STATE(1912), 1, - sym_overriding_indicator, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36262] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2445), 1, - sym_identifier, - ACTIONS(2449), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2451), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2453), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2455), 1, - aux_sym_general_access_modifier_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2447), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(849), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36302] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - sym_tick, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1270), 1, - sym_iterator_filter, - ACTIONS(1810), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2457), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(1812), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [36342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2397), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36366] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - STATE(1672), 1, - sym_task_definition, - STATE(1912), 1, - sym_overriding_indicator, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36408] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2130), 1, - sym_identifier, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - STATE(739), 1, - sym_null_exclusion, - STATE(1865), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2132), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1092), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36448] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2304), 1, - sym_identifier, - ACTIONS(2459), 1, - aux_sym_private_type_declaration_token1, - STATE(1347), 1, - sym_subprogram_default, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2312), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2306), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1034), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2368), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36510] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2383), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2385), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(1926), 1, - sym_task_definition, - STATE(711), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36552] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2136), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2461), 1, - sym_identifier, - STATE(746), 1, - sym_null_exclusion, - STATE(894), 1, - sym_access_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2463), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(806), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36592] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - sym_identifier, - ACTIONS(2465), 1, - aux_sym__package_specification_token3, - STATE(2066), 1, - sym_value_sequence, - STATE(709), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2375), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36627] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1168), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36666] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2469), 1, - aux_sym_case_expression_token1, - STATE(1470), 1, - sym_variant_part, - STATE(1669), 1, - sym__defining_identifier_list, - ACTIONS(2467), 2, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - STATE(726), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36703] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1421), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36742] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(776), 1, - sym_range_constraint, - ACTIONS(2471), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1800), 1, - aux_sym_range_attribute_designator_token1, - STATE(775), 1, - sym_range_constraint, - ACTIONS(2473), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [36796] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1192), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36835] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2433), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2475), 1, - sym_identifier, - STATE(1403), 1, - sym_exception_choice, - STATE(1764), 1, - sym_exception_choice_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2431), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1025), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36872] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1141), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [36911] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2469), 1, - aux_sym_case_expression_token1, - ACTIONS(2477), 1, - aux_sym_primary_null_token1, - STATE(1569), 1, - sym_variant_part, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(1682), 1, - sym_component_list, - STATE(700), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36950] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(2469), 1, - aux_sym_case_expression_token1, - ACTIONS(2477), 1, - aux_sym_primary_null_token1, - STATE(1561), 1, - sym_component_list, - STATE(1569), 1, - sym_variant_part, - STATE(1669), 1, - sym__defining_identifier_list, - STATE(700), 9, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - sym_identifier, - ACTIONS(2479), 1, - aux_sym__package_specification_token3, - STATE(2066), 1, - sym_value_sequence, - STATE(719), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2375), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37024] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1520), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37063] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2481), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2483), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(720), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - sym_identifier, - ACTIONS(2465), 1, - aux_sym__package_specification_token3, - STATE(2066), 1, - sym_value_sequence, - STATE(719), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2375), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37137] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1459), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37176] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1153), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37215] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1169), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37254] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1264), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37293] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1154), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37332] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(998), 1, - sym_identifier, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - STATE(843), 1, - sym_null_exclusion, - STATE(1492), 1, - sym__subtype_indication, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(902), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(570), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [37371] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, - sym_identifier, - ACTIONS(2491), 1, - anon_sym_LBRACK, - ACTIONS(2494), 1, - aux_sym__package_specification_token3, - STATE(2066), 1, - sym_value_sequence, - STATE(719), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2488), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1073), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37406] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2501), 1, - aux_sym_relation_membership_token1, - ACTIONS(2504), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2507), 1, - aux_sym_global_mode_token1, - ACTIONS(2510), 1, - aux_sym_pragma_g_token1, - STATE(1912), 1, - sym_overriding_indicator, - ACTIONS(2499), 2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token3, - STATE(720), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37443] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2362), 1, - sym_identifier, - STATE(542), 1, - sym__subtype_indication_paren_constraint, - STATE(834), 1, - sym_null_exclusion, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2364), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(503), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37480] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2517), 1, - aux_sym_use_clause_token1, - ACTIONS(2519), 1, - aux_sym_use_clause_token2, - STATE(2022), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37517] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2521), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(730), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37553] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2483), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, + STATE(1623), 1, sym_overriding_indicator, STATE(728), 9, sym__aspect_clause, @@ -50561,25 +49005,113 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [37589] = 8, + [35564] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + ACTIONS(2409), 1, + aux_sym_allocator_token1, + STATE(1623), 1, + sym_overriding_indicator, + STATE(2040), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + aux_sym_expression_token5, + STATE(681), 1, + aux_sym_expression_repeat3, + ACTIONS(2411), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 1, + aux_sym_expression_token3, + STATE(682), 1, + aux_sym_expression_repeat2, + ACTIONS(2411), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35667] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2523), 1, + ACTIONS(2413), 1, sym_identifier, - ACTIONS(2527), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2529), 1, - anon_sym_SEMI, - STATE(2066), 1, + ACTIONS(2417), 1, + aux_sym__package_specification_token3, + ACTIONS(2419), 1, + aux_sym_at_clause_token1, + STATE(711), 1, + sym_mod_clause, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2525), 4, + STATE(707), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2415), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1023), 7, + STATE(1105), 7, sym__name, sym_selected_component, sym_slice, @@ -50587,1280 +49119,457 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37623] = 7, + [35708] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2531), 1, - sym_identifier, - ACTIONS(2534), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2539), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, aux_sym_pragma_g_token1, - STATE(1669), 1, - sym__defining_identifier_list, - ACTIONS(2537), 3, - aux_sym_iterator_filter_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, aux_sym__package_specification_token3, - aux_sym_case_expression_token1, - STATE(726), 9, - sym__component_item, - sym_component_declaration, + ACTIONS(2421), 1, + aux_sym_allocator_token1, + STATE(1623), 1, + sym_overriding_indicator, + STATE(2036), 1, + sym_task_definition, + STATE(728), 9, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, + sym_entry_declaration, sym_enumeration_representation_clause, + sym__task_item, sym_pragma_g, sym_record_representation_clause, - aux_sym_component_list_repeat1, - [37655] = 8, + aux_sym_task_definition_repeat1, + [35753] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(372), 1, + aux_sym_chunk_specification_token1, + ACTIONS(394), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2423), 1, + sym_identifier, + STATE(731), 1, + sym_non_empty_mode, + STATE(857), 1, + sym_null_exclusion, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2425), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(893), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35796] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + sym_identifier, + ACTIONS(2314), 1, + anon_sym_LBRACK, + STATE(1148), 1, + sym_attribute_designator, + ACTIONS(2316), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(486), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [35831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 1, + aux_sym_expression_token1, + STATE(683), 1, + aux_sym_expression_repeat1, + ACTIONS(2411), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [35860] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + aux_sym_chunk_specification_token1, + ACTIONS(2087), 1, + aux_sym_relation_membership_token1, + ACTIONS(2328), 1, + anon_sym_DOT_DOT, + STATE(513), 1, + sym_relational_operator, + ACTIONS(2079), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2081), 3, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2083), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + [35897] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(2312), 1, + sym_identifier, + ACTIONS(2314), 1, + anon_sym_LBRACK, + STATE(469), 1, + sym_attribute_designator, + ACTIONS(2316), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(486), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [35932] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + STATE(803), 1, + sym_null_exclusion, + STATE(1191), 1, + sym_access_definition, + STATE(1192), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35977] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + ACTIONS(2427), 1, + aux_sym_allocator_token1, + STATE(1622), 1, + sym_task_definition, + STATE(1623), 1, + sym_overriding_indicator, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36022] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + ACTIONS(2429), 1, + aux_sym_allocator_token1, + STATE(1623), 1, + sym_overriding_indicator, + STATE(1719), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36067] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2179), 1, + sym_identifier, + ACTIONS(2185), 1, + aux_sym_exception_declaration_token1, + STATE(760), 1, + sym_null_exclusion, + STATE(1857), 1, + sym_access_definition, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2181), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1101), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36110] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2433), 1, + aux_sym_expression_token5, + STATE(681), 1, + aux_sym_expression_repeat3, + ACTIONS(2431), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + aux_sym_expression_token3, + STATE(682), 1, + aux_sym_expression_repeat2, + ACTIONS(2436), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2443), 1, + aux_sym_expression_token1, + STATE(683), 1, + aux_sym_expression_repeat1, + ACTIONS(2441), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36197] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 1, + anon_sym_DOT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + sym_tick, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1304), 1, + sym_iterator_filter, + ACTIONS(1790), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2446), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(1792), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [36237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36261] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2450), 1, + sym_identifier, + ACTIONS(2454), 1, aux_sym_component_choice_list_token1, - ACTIONS(2475), 1, - sym_identifier, - STATE(1508), 1, + STATE(1403), 1, sym_exception_choice, - STATE(2066), 1, + STATE(2058), 1, + sym_choice_parameter_specification, + STATE(2059), 1, + sym_exception_choice_list, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2431), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1025), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37689] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2521), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(720), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37725] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2542), 1, - sym_identifier, - STATE(854), 1, - sym_null_exclusion, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2544), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(897), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37759] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2546), 1, - aux_sym__package_specification_token3, - STATE(1912), 1, - sym_overriding_indicator, - STATE(720), 9, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_pragma_g, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [37795] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1918), 1, - aux_sym_relation_membership_token1, - ACTIONS(2389), 1, - sym_identifier, - STATE(844), 1, - sym_null_exclusion, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2391), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37829] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2548), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - STATE(2029), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2550), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1121), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37861] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2552), 1, - aux_sym__package_specification_token1, - ACTIONS(2554), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2556), 1, - aux_sym_interface_type_definition_token1, - STATE(1049), 1, - sym_overriding_indicator, - STATE(1379), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(520), 5, - sym__proper_body, - sym_subprogram_body, - sym_package_body, - sym_task_body, - sym_protected_body, - [37901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2054), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37930] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2560), 1, - sym_identifier, - ACTIONS(2564), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2562), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(913), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37961] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2568), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2566), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1108), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37990] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1731), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2570), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38040] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2572), 1, - sym_identifier, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2574), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1125), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38071] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2580), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2578), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1109), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38100] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2582), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(2584), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(579), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [38133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1849), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38162] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2586), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2588), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(907), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2592), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2590), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1094), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1744), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38251] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2594), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2596), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(850), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38282] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2024), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1846), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1824), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38369] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2600), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2598), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1071), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38398] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1483), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38427] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2604), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2602), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1068), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1431), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38485] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2608), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2606), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1095), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38514] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1836), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38543] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2008), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38572] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1933), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38630] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2610), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2612), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(891), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38661] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - sym_identifier, - ACTIONS(2618), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2616), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(899), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38692] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2620), 1, - sym_identifier, - ACTIONS(2624), 1, - aux_sym_loop_parameter_specification_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2622), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(908), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38723] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1755), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1532), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1895), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38810] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1705), 1, - sym_reduction_specification, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2626), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1070), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38839] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1937), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2389), 1, - sym_identifier, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2391), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(898), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38899] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1428), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38928] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1585), 1, - sym_index_subtype_definition, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2628), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1086), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [38978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1562), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2632), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(965), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2636), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2634), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1102), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39036] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2640), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2638), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1050), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2644), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2642), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1130), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39094] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2646), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39136] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2052), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2652), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2650), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1089), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39194] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1438), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39223] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2656), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2654), 5, - sym_identifier, + ACTIONS(2452), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -51873,1691 +49582,68 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [39252] = 6, + [36301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1887), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1439), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2660), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2658), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1081), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39339] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2664), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2662), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1037), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39368] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2015), 1, - sym__name_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2515), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(962), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1670), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39426] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2009), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39455] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2668), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2666), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1067), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39484] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2439), 1, - sym_identifier, - ACTIONS(2576), 1, - aux_sym_attribute_designator_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2441), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(910), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39515] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2672), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2670), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1065), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39544] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1799), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2678), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2676), 13, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(2456), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_relation_membership_token1, - aux_sym_accept_statement_token2, - [39598] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2680), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, + anon_sym_RBRACK, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39619] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39640] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2684), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39661] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1538), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39690] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2686), 1, - sym_identifier, - ACTIONS(2690), 1, - aux_sym_package_body_token1, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2688), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(951), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39721] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2694), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2692), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1047), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39750] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1741), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [39800] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2700), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2698), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1083), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1515), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39858] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1813), 1, - sym__interface_list, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2558), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2704), 1, - anon_sym_SEMI, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2702), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1080), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2706), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(817), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39942] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2708), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [39970] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2710), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(975), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [39996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2712), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2714), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1056), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40048] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2716), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(918), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2718), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(973), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2720), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(903), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40126] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2722), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1099), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2724), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(904), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40178] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2726), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(914), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2728), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(971), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40230] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2730), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [40258] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2732), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(970), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2734), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(985), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2736), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1077), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40336] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2738), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1076), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2740), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(987), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2742), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1005), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40414] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2744), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(992), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40440] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2746), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(996), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40466] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2748), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(993), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2750), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(978), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2752), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(949), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2754), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(607), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40570] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2688), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(951), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - sym_identifier, - ACTIONS(2676), 13, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_relation_membership_token1, - aux_sym_accept_statement_token2, - [40618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2756), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2758), 12, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - anon_sym_PLUS, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [40640] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1736), 1, - anon_sym_DOT, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(1828), 1, - sym_tick, - ACTIONS(2760), 1, + anon_sym_PIPE, aux_sym_range_attribute_designator_token1, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(1810), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(1812), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [40672] = 5, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2762), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(504), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2764), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(959), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40724] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2766), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(906), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40750] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2768), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(905), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40776] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2770), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1069), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2772), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1097), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2774), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1052), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40854] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2776), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(901), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2778), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2780), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(989), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - STATE(1142), 2, - sym__name, - sym_function_call, - ACTIONS(2584), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(579), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [40936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2544), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(897), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40962] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2782), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(964), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [40988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2784), 1, - sym_identifier, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2550), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1121), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41016] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2786), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(972), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41042] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2788), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1008), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41068] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2790), 10, + ACTIONS(2441), 18, + anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, - [41096] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2792), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41124] = 5, + aux_sym_loop_statement_token1, + [36349] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2794), 5, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2458), 1, sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(902), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, + STATE(798), 1, + sym_null_exclusion, + STATE(1121), 1, + sym_access_definition, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2780), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(989), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2796), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1104), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2798), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(896), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41228] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2800), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1012), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41254] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2802), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(925), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2804), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1000), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2447), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(849), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2806), 5, - sym_identifier, + ACTIONS(2460), 4, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -53570,97 +49656,1461 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41358] = 5, + [36389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2808), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(983), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2810), 1, - sym_identifier, - ACTIONS(2812), 13, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(2431), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_relation_membership_token1, - aux_sym_accept_statement_token2, - [41406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(2066), 1, - sym_value_sequence, - ACTIONS(2814), 5, - sym_identifier, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1001), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [41432] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2816), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + aux_sym_attribute_designator_token3, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_expression_token5, + aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, - [41460] = 5, + aux_sym_loop_statement_token1, + [36413] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(1929), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36455] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2066), 1, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2462), 1, + sym_identifier, + STATE(773), 1, + sym_null_exclusion, + STATE(891), 1, + sym_access_definition, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2818), 5, + ACTIONS(2464), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(810), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36495] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(2006), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2466), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [36561] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(1738), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36603] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2345), 1, + sym_identifier, + STATE(514), 1, + sym__subtype_mark, + STATE(535), 1, + sym_qualified_expression, + STATE(552), 1, + sym__subtype_indication_paren_constraint, + STATE(769), 1, + sym_null_exclusion, + STATE(2065), 1, + sym_value_sequence, + STATE(536), 3, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + STATE(1201), 3, + sym__name, + sym_slice, + sym_function_call, + ACTIONS(2347), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + [36647] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(1800), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36689] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2468), 1, + sym_identifier, + ACTIONS(2472), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2474), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2476), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2478), 1, + aux_sym_general_access_modifier_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2470), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(846), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36729] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2403), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2405), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(1799), 1, + sym_task_definition, + STATE(728), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36771] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2179), 1, + sym_identifier, + STATE(760), 1, + sym_null_exclusion, + STATE(1857), 1, + sym_access_definition, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2181), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1101), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36811] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2480), 1, + sym_identifier, + ACTIONS(2484), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2486), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2488), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2490), 1, + aux_sym_general_access_modifier_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2482), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(815), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36851] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2161), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2492), 1, + sym_identifier, + STATE(744), 1, + sym_null_exclusion, + STATE(1044), 1, + sym_access_definition, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2494), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(896), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36891] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 1, + anon_sym_DOT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + sym_tick, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1312), 1, + sym_iterator_filter, + ACTIONS(1790), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2496), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(1792), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [36931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2375), 1, + sym_identifier, + ACTIONS(2498), 1, + aux_sym_private_type_declaration_token1, + STATE(1380), 1, + sym_subprogram_default, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2383), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2377), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1042), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36969] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2505), 1, + aux_sym_relation_membership_token1, + ACTIONS(2508), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2511), 1, + aux_sym_global_mode_token1, + ACTIONS(2514), 1, + aux_sym_pragma_g_token1, + STATE(1623), 1, + sym_overriding_indicator, + ACTIONS(2503), 2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token3, + STATE(705), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37006] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1204), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37045] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2517), 1, + aux_sym__package_specification_token3, + STATE(2065), 1, + sym_value_sequence, + STATE(719), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2415), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1105), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37080] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1211), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37119] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1139), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37158] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2454), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2519), 1, + sym_identifier, + STATE(1403), 1, + sym_exception_choice, + STATE(1933), 1, + sym_exception_choice_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2452), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1048), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37195] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2517), 1, + aux_sym__package_specification_token3, + STATE(2065), 1, + sym_value_sequence, + STATE(713), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2415), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1105), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37230] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + sym_identifier, + ACTIONS(2525), 1, + aux_sym_use_clause_token1, + ACTIONS(2527), 1, + aux_sym_use_clause_token2, + STATE(2022), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37267] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2529), 1, + aux_sym__package_specification_token3, + STATE(2065), 1, + sym_value_sequence, + STATE(719), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2415), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1105), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37302] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2533), 1, + aux_sym_case_expression_token1, + STATE(1562), 1, + sym_variant_part, + STATE(1990), 1, + sym__defining_identifier_list, + ACTIONS(2531), 2, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + STATE(736), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37339] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1495), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37378] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1571), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37417] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1150), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37456] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2533), 1, + aux_sym_case_expression_token1, + ACTIONS(2535), 1, + aux_sym_primary_null_token1, + STATE(1492), 1, + sym_variant_part, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(1991), 1, + sym_component_list, + STATE(714), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37495] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + sym_identifier, + ACTIONS(2543), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + aux_sym__package_specification_token3, + STATE(2065), 1, + sym_value_sequence, + STATE(719), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2540), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1105), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37530] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1248), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37569] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1583), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37608] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1290), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37647] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(2533), 1, + aux_sym_case_expression_token1, + ACTIONS(2535), 1, + aux_sym_primary_null_token1, + STATE(1485), 1, + sym_component_list, + STATE(1492), 1, + sym_variant_part, + STATE(1990), 1, + sym__defining_identifier_list, + STATE(714), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [37686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(805), 1, + sym_range_constraint, + ACTIONS(2548), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [37713] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1186), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1814), 1, + aux_sym_range_attribute_designator_token1, + STATE(741), 1, + sym_range_constraint, + ACTIONS(2550), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [37779] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(982), 1, + sym_identifier, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + STATE(826), 1, + sym_null_exclusion, + STATE(1187), 1, + sym__subtype_indication, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(898), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(575), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [37818] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2552), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2554), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(705), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37857] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2423), 1, + sym_identifier, + STATE(857), 1, + sym_null_exclusion, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2425), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(893), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37891] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2454), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2519), 1, + sym_identifier, + STATE(1511), 1, + sym_exception_choice, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2452), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1048), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37925] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1953), 1, + aux_sym_relation_membership_token1, + ACTIONS(2556), 1, + sym_identifier, + STATE(825), 1, + sym_null_exclusion, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2558), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2554), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(737), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [37995] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2560), 1, + sym_identifier, + ACTIONS(2564), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2566), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2562), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1043), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38029] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2568), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + STATE(2027), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(2570), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1128), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38061] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2572), 1, + aux_sym__package_specification_token1, + ACTIONS(2574), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2576), 1, + aux_sym_interface_type_definition_token1, + STATE(1103), 1, + sym_overriding_indicator, + STATE(1401), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(533), 5, + sym__proper_body, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [38101] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + sym_identifier, + ACTIONS(2581), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2586), 1, + aux_sym_pragma_g_token1, + STATE(1990), 1, + sym__defining_identifier_list, + ACTIONS(2584), 3, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + aux_sym_case_expression_token1, + STATE(736), 9, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [38133] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2589), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(705), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [38169] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2591), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(705), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [38205] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2589), 1, + aux_sym__package_specification_token3, + STATE(1623), 1, + sym_overriding_indicator, + STATE(738), 9, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_pragma_g, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [38241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2014), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2593), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [38291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1484), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, @@ -53674,20 +51124,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41486] = 5, + [38320] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2066), 1, + STATE(1392), 1, + sym__interface_list, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2820), 5, + ACTIONS(2595), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(977), 7, + STATE(915), 7, sym__name, sym_selected_component, sym_slice, @@ -53695,14 +51147,1569 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41512] = 5, + [38349] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2066), 1, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2822), 5, + ACTIONS(2599), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(899), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38380] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2603), 1, + sym_identifier, + ACTIONS(2607), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2605), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(910), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2611), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2609), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1095), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2615), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2613), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1062), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2619), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2617), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1075), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38498] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2623), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2621), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1090), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38527] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2627), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2625), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1076), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2629), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1067), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2012), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + STATE(2098), 1, + sym__name_list, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [38664] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2637), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2635), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1118), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2641), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2639), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1082), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1903), 1, + sym_reduction_specification, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2643), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1073), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2647), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2645), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1097), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38780] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + STATE(2077), 1, + sym__interface_list, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38809] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2649), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2651), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1077), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38840] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1936), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1588), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38898] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2653), 1, + sym_identifier, + ACTIONS(2657), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2655), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(912), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38929] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2659), 1, + sym_identifier, + ACTIONS(2663), 1, + aux_sym_loop_parameter_specification_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2661), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(914), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1744), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38989] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1607), 1, + sym_index_subtype_definition, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2665), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1055), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39018] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2669), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2667), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1091), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39047] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1581), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39076] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2671), 1, + sym_identifier, + STATE(531), 1, + sym__subtype_mark, + STATE(2065), 1, + sym_value_sequence, + STATE(536), 3, + sym_selected_component, + sym__attribute_reference, + sym__reduction_attribute_reference, + ACTIONS(2347), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1201), 4, + sym__name, + sym_slice, + sym_qualified_expression, + sym_function_call, + [39109] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2675), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2673), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1069), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1710), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39167] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1713), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39196] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2677), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2679), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2681), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [39248] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + sym_identifier, + ACTIONS(2687), 1, + aux_sym_package_body_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2685), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(964), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39279] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2007), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2691), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2689), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1133), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2693), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [39358] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1898), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39387] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1758), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2697), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2695), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1129), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39445] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2701), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2699), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1032), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39474] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2705), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2703), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1070), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39503] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1626), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1624), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1844), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39590] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2709), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2707), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1089), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39619] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2713), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2711), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1088), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1722), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2053), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39706] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1982), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1599), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2715), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(981), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1835), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1276), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39822] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + sym_identifier, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2425), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(893), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2719), 1, + anon_sym_SEMI, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2717), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1094), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39882] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1802), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39911] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2721), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2723), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(907), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + sym_identifier, + ACTIONS(2729), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2727), 13, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_relation_membership_token1, + aux_sym_accept_statement_token2, + [39967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1524), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [39996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1890), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1520), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40054] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2731), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(2733), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(585), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [40087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1821), 1, + sym__name_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2523), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(979), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [40137] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1497), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1816), 1, + sym__interface_list, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2595), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40195] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, + sym_identifier, + ACTIONS(2601), 1, + aux_sym_attribute_designator_token1, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2460), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(911), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40226] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2737), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(968), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2739), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [40280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2741), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1124), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2743), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, @@ -53716,20 +52723,20 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41538] = 5, + [40332] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(2066), 1, + STATE(2065), 1, sym_value_sequence, - ACTIONS(2824), 5, + ACTIONS(2745), 5, sym_identifier, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1106), 7, + STATE(977), 7, sym__name, sym_selected_component, sym_slice, @@ -53737,15 +52744,1216 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41564] = 4, + [40358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2747), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(918), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2749), 10, + anon_sym_RPAREN, aux_sym_chunk_specification_token1, - ACTIONS(1786), 2, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [40412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2751), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1041), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2753), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1013), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2755), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1006), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + sym_identifier, + ACTIONS(2727), 13, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_relation_membership_token1, + aux_sym_accept_statement_token2, + [40512] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2757), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(855), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40538] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2759), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(998), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2761), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(990), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2763), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(934), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40616] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2765), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(997), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40642] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2767), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(900), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + STATE(1201), 2, + sym__name, + sym_function_call, + ACTIONS(2733), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(585), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [40696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2769), 1, + sym_identifier, + ACTIONS(2771), 13, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_relation_membership_token1, + aux_sym_accept_statement_token2, + [40718] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2773), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1010), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40744] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2775), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(905), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2777), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1003), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2779), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [40824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2781), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1132), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40850] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2783), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(978), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2785), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(930), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2787), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2789), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(988), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2791), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(906), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2793), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(908), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [40982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2795), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(909), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2797), 1, + sym_identifier, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2570), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1128), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2799), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(975), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2801), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1007), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2803), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1061), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2805), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1063), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2685), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(964), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41166] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2482), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(815), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2807), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [41220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2809), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(606), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2811), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(994), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41272] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2813), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(999), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41298] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2815), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(982), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2817), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(917), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2819), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1109), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2821), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(965), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41402] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2823), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(984), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2825), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [41456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2827), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(972), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2558), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2829), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(936), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2831), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1123), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2833), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1068), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2835), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(904), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2837), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(902), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2839), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(903), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2789), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(988), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41690] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2841), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1060), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2843), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(940), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2845), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2847), 12, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [41764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2849), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1058), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(2065), 1, + sym_value_sequence, + ACTIONS(2851), 5, + sym_identifier, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(970), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [41816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1796), 1, + anon_sym_DOT, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(1839), 1, + sym_tick, + ACTIONS(2853), 1, + aux_sym_range_attribute_designator_token1, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(1790), 2, anon_sym_DASH, anon_sym_STAR, - ACTIONS(1788), 10, + ACTIONS(1792), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [41848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2855), 1, + aux_sym_chunk_specification_token1, + ACTIONS(1800), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(1802), 10, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -53756,22 +53964,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [41587] = 9, + [41871] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(2828), 1, + ACTIONS(2857), 1, sym_identifier, - ACTIONS(2830), 1, + ACTIONS(2860), 1, aux_sym_subprogram_body_token1, - ACTIONS(2832), 1, + ACTIONS(2862), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2834), 1, + ACTIONS(2865), 1, aux_sym_interface_type_definition_token1, - STATE(1871), 1, + ACTIONS(2868), 1, + aux_sym_pragma_g_token1, + STATE(1923), 1, sym__defining_identifier_list, - STATE(452), 2, + STATE(325), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(872), 5, @@ -53780,140 +53988,123 @@ static const uint16_t ts_small_parse_table[] = { sym_pragma_g, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [41620] = 10, + [41904] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(2873), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2875), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2877), 1, + aux_sym_interface_type_definition_token1, + STATE(1923), 1, + sym__defining_identifier_list, + STATE(325), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(872), 5, + sym__declare_item, + sym_object_declaration, + sym_pragma_g, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41937] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, aux_sym_accept_statement_token1, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - ACTIONS(2035), 1, + ACTIONS(2066), 1, aux_sym_iterator_filter_token1, - ACTIONS(2037), 1, + ACTIONS(2068), 1, aux_sym_terminate_alternative_token1, STATE(48), 1, sym_accept_statement, - STATE(887), 1, + STATE(889), 1, sym_guard, - STATE(1277), 1, + STATE(1241), 1, sym_select_alternative, - STATE(45), 3, + STATE(49), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1355), 3, + STATE(1352), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [41655] = 9, + [41972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + STATE(1305), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [41995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(368), 1, + anon_sym_LPAREN, + ACTIONS(2314), 1, + anon_sym_LBRACK, + STATE(1271), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [42018] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(2828), 1, + ACTIONS(2871), 1, sym_identifier, - ACTIONS(2832), 1, + ACTIONS(2875), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2834), 1, + ACTIONS(2877), 1, aux_sym_interface_type_definition_token1, - ACTIONS(2836), 1, + ACTIONS(2879), 1, aux_sym_subprogram_body_token1, - STATE(1871), 1, + STATE(1923), 1, sym__defining_identifier_list, - STATE(452), 2, + STATE(325), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(869), 5, + STATE(873), 5, sym__declare_item, sym_object_declaration, sym_pragma_g, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [41688] = 9, + [42051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2881), 1, sym_identifier, - ACTIONS(2841), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2843), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2846), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2849), 1, - aux_sym_pragma_g_token1, - STATE(1871), 1, - sym__defining_identifier_list, - STATE(452), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(872), 5, - sym__declare_item, - sym_object_declaration, - sym_pragma_g, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_LBRACK, - STATE(1234), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [41744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(376), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_LBRACK, - STATE(1240), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [41767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 1, - sym_identifier, - ACTIONS(2854), 11, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [41787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 1, - sym_identifier, - ACTIONS(2858), 11, + ACTIONS(2883), 11, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -53925,14 +54116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_accept_statement_token2, - [41807] = 4, + [42071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - STATE(889), 1, + STATE(898), 1, sym_formal_part, - ACTIONS(2862), 10, + ACTIONS(2887), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -53943,12 +54134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [41829] = 3, + [42093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(2889), 1, sym_identifier, - ACTIONS(2866), 11, + ACTIONS(2891), 11, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -53960,14 +54151,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [41849] = 4, + [42113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - STATE(892), 1, + STATE(897), 1, sym_formal_part, - ACTIONS(2868), 10, + ACTIONS(2893), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -53978,10 +54169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [41871] = 2, + [42135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 12, + ACTIONS(2895), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -53994,30 +54185,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [41889] = 4, + [42153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - STATE(893), 1, - sym_formal_part, - ACTIONS(2872), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [41911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 1, + ACTIONS(2897), 1, sym_identifier, - ACTIONS(2876), 11, + ACTIONS(2899), 11, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -54029,49 +54202,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [41931] = 3, + [42173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(2885), 1, + anon_sym_LPAREN, + STATE(901), 1, + sym_formal_part, + ACTIONS(2901), 10, + anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [42195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 1, sym_identifier, - ACTIONS(2880), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, + ACTIONS(2905), 11, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [41950] = 8, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [42215] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, aux_sym_accept_statement_token1, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - ACTIONS(2037), 1, + ACTIONS(2068), 1, aux_sym_terminate_alternative_token1, STATE(48), 1, sym_accept_statement, - STATE(1147), 1, + STATE(1227), 1, sym_select_alternative, - STATE(45), 3, + STATE(49), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1355), 3, + STATE(1352), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [41979] = 3, + [42244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, + ACTIONS(2907), 1, sym_identifier, - ACTIONS(2884), 10, + ACTIONS(2909), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, @@ -54082,12 +54274,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [41998] = 3, + [42263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 1, + ACTIONS(2911), 1, sym_identifier, - ACTIONS(2888), 10, + ACTIONS(2913), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, @@ -54098,31 +54290,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [42017] = 8, + [42282] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, aux_sym_accept_statement_token1, ACTIONS(77), 1, aux_sym_delay_until_statement_token1, - ACTIONS(2037), 1, + ACTIONS(2068), 1, aux_sym_terminate_alternative_token1, STATE(48), 1, sym_accept_statement, - STATE(1417), 1, + STATE(1356), 1, sym_select_alternative, - STATE(45), 3, + STATE(49), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1355), 3, + STATE(1352), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [42046] = 2, + [42311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 10, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(2917), 10, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_case_expression_token1, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + aux_sym_pragma_g_token1, + [42330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -54133,10 +54341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [42062] = 2, + [42346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 10, + ACTIONS(2921), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -54147,54 +54355,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [42078] = 10, + [42362] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1132), 1, + STATE(1183), 1, sym__assign_value, - STATE(1534), 1, + STATE(1572), 1, sym_aspect_specification, - ACTIONS(2892), 2, + ACTIONS(2923), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42110] = 10, + [42394] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1149), 1, + STATE(1232), 1, sym__assign_value, - STATE(1544), 1, + STATE(1537), 1, sym_aspect_specification, - ACTIONS(2894), 2, + ACTIONS(2925), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42142] = 2, + [42426] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 10, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1219), 1, + sym__assign_value, + STATE(1516), 1, + sym_aspect_specification, + ACTIONS(2927), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42458] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1177), 1, + sym__assign_value, + STATE(1466), 1, + sym_aspect_specification, + ACTIONS(2929), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2901), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -54205,10 +54457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [42158] = 2, + [42506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 10, + ACTIONS(2931), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -54219,583 +54471,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [42174] = 2, + [42522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [42190] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1166), 1, + STATE(1195), 1, sym__assign_value, - STATE(1472), 1, + STATE(1592), 1, sym_aspect_specification, - ACTIONS(2900), 2, + ACTIONS(2933), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42222] = 10, + [42554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1217), 1, - sym__assign_value, - STATE(1433), 1, - sym_aspect_specification, - ACTIONS(2902), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [42254] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1203), 1, + STATE(1156), 1, sym__assign_value, STATE(1489), 1, sym_aspect_specification, - ACTIONS(2904), 2, + ACTIONS(2935), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42286] = 10, + [42586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1172), 1, - sym__assign_value, - STATE(1502), 1, - sym_aspect_specification, - ACTIONS(2906), 2, + ACTIONS(2887), 10, anon_sym_RPAREN, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, - [42318] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1392), 1, - sym_iterator_filter, - ACTIONS(2908), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_COMMA, - ACTIONS(2910), 1, - anon_sym_COLON, - ACTIONS(2913), 1, - anon_sym_SEMI, - ACTIONS(2915), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1788), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42370] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_LPAREN, - ACTIONS(2921), 1, aux_sym__package_specification_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1139), 1, - sym_formal_part, - ACTIONS(2919), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [42397] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_LPAREN, - ACTIONS(2924), 1, - aux_sym__package_specification_token2, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1468), 1, - sym_formal_part, - STATE(1176), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42426] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1313), 1, - sym_iterator_filter, - ACTIONS(2928), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42453] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1308), 1, - sym_iterator_filter, - ACTIONS(2928), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42480] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - ACTIONS(2930), 1, - aux_sym__package_specification_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1468), 1, - sym_formal_part, - STATE(1176), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42509] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_LPAREN, - ACTIONS(2932), 1, - aux_sym__package_specification_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1139), 1, - sym_formal_part, - ACTIONS(2919), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [42536] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(2935), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1245), 1, - sym__assign_value, - STATE(1627), 1, - sym_aspect_specification, - [42567] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2427), 1, - aux_sym_iterator_filter_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1396), 1, - sym_iterator_filter, - ACTIONS(2908), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42594] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2939), 1, - aux_sym_expression_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1112), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2937), 3, - anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [42621] = 10, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [42602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, + ACTIONS(2937), 1, + anon_sym_LPAREN, + ACTIONS(2939), 1, + aux_sym__package_specification_token2, ACTIONS(2941), 1, - anon_sym_SEMI, - STATE(492), 1, + aux_sym_result_profile_token1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1344), 1, - sym__assign_value, - STATE(1966), 1, - sym_aspect_specification, - [42652] = 8, + STATE(1567), 1, + sym_formal_part, + STATE(1180), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2427), 1, + ACTIONS(2448), 1, aux_sym_iterator_filter_token1, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1270), 1, + STATE(1312), 1, sym_iterator_filter, - ACTIONS(2457), 3, + ACTIONS(2496), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42679] = 10, + [42658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2937), 1, + anon_sym_LPAREN, + ACTIONS(2945), 1, + aux_sym__package_specification_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1178), 1, + sym_formal_part, + ACTIONS(2943), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(2943), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1376), 1, - sym__assign_value, - STATE(1911), 1, - sym_aspect_specification, - [42710] = 8, + aux_sym_object_renaming_declaration_token1, + [42685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2427), 1, + ACTIONS(2448), 1, aux_sym_iterator_filter_token1, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1412), 1, + STATE(1263), 1, sym_iterator_filter, - ACTIONS(2425), 3, + ACTIONS(2948), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42737] = 8, + [42712] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2947), 1, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1266), 1, + sym_iterator_filter, + ACTIONS(2948), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, aux_sym_with_clause_token2, ACTIONS(2950), 1, - aux_sym_expression_token1, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2945), 2, anon_sym_SEMI, - aux_sym_expression_token3, - [42763] = 8, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1282), 1, + sym__assign_value, + STATE(1641), 1, + sym_aspect_specification, + [42770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, + ACTIONS(2937), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + ACTIONS(2952), 1, + aux_sym__package_specification_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1567), 1, + sym_formal_part, + STATE(1180), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42799] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2937), 1, + anon_sym_LPAREN, ACTIONS(2954), 1, + aux_sym__package_specification_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1178), 1, + sym_formal_part, + ACTIONS(2943), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42826] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1304), 1, + sym_iterator_filter, + ACTIONS(2446), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42853] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, aux_sym_with_clause_token2, ACTIONS(2957), 1, - aux_sym_expression_token1, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2952), 2, anon_sym_SEMI, - aux_sym_expression_token3, - [42789] = 3, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1347), 1, + sym__assign_value, + STATE(1803), 1, + sym_aspect_specification, + [42884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - sym_identifier, - ACTIONS(2961), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 1, - sym_identifier, - ACTIONS(2965), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42821] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2969), 1, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1425), 1, + sym_iterator_filter, + ACTIONS(2959), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42911] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2961), 1, + anon_sym_COLON, + ACTIONS(2964), 1, + anon_sym_SEMI, + ACTIONS(2966), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1802), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2448), 1, + aux_sym_iterator_filter_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1427), 1, + sym_iterator_filter, + ACTIONS(2959), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42963] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2970), 1, + aux_sym_expression_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1084), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2968), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42990] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, aux_sym_with_clause_token2, ACTIONS(2972), 1, - aux_sym_expression_token1, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(2967), 2, anon_sym_SEMI, - aux_sym_expression_token3, - [42847] = 3, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1366), 1, + sym__assign_value, + STATE(2010), 1, + sym_aspect_specification, + [43021] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, - sym_identifier, - ACTIONS(2976), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2982), 1, - sym_identifier, - ACTIONS(2984), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2986), 1, - sym_identifier, - ACTIONS(2988), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2990), 1, - sym_identifier, - ACTIONS(2992), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [42927] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2996), 1, - anon_sym_LBRACK, - ACTIONS(2998), 1, - aux_sym_record_component_association_list_token1, - STATE(1729), 1, - sym_enumeration_aggregate, - STATE(1727), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [42949] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(3000), 4, - anon_sym_SEMI, + ACTIONS(2976), 1, aux_sym_with_clause_token2, + ACTIONS(2979), 1, aux_sym_expression_token1, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2974), 2, + anon_sym_SEMI, aux_sym_expression_token3, - [42971] = 3, + [43047] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2983), 1, + aux_sym_with_clause_token2, + ACTIONS(2986), 1, + aux_sym_expression_token1, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(2981), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(3004), 7, + ACTIONS(2990), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54803,12 +54870,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42987] = 3, + [43089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 1, + ACTIONS(2992), 1, sym_identifier, - ACTIONS(3008), 7, + ACTIONS(2994), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54816,12 +54883,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43003] = 3, + [43105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(2996), 1, sym_identifier, - ACTIONS(3012), 7, + ACTIONS(2998), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54829,12 +54896,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43019] = 3, + [43121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3014), 1, + ACTIONS(3000), 1, sym_identifier, - ACTIONS(3016), 7, + ACTIONS(3002), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54842,12 +54909,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43035] = 3, + [43137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 1, + ACTIONS(3004), 1, sym_identifier, - ACTIONS(3020), 7, + ACTIONS(3006), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54855,7 +54922,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43051] = 3, + [43153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 1, + sym_identifier, + ACTIONS(3010), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 1, + sym_identifier, + ACTIONS(3014), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + sym_identifier, + ACTIONS(3018), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 1, + sym_tick, + ACTIONS(2142), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [43217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3022), 1, @@ -54868,7 +54987,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43067] = 3, + [43233] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3026), 1, @@ -54881,12 +55000,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43083] = 3, + [43249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3032), 1, + aux_sym_with_clause_token2, + ACTIONS(3035), 1, + aux_sym_expression_token1, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(3030), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [43275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3037), 1, sym_identifier, - ACTIONS(3032), 7, + ACTIONS(3039), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54894,12 +55031,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43099] = 3, + [43291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3041), 1, + anon_sym_LPAREN, + ACTIONS(3043), 1, + anon_sym_LBRACK, + ACTIONS(3045), 1, + aux_sym_record_component_association_list_token1, + STATE(1955), 1, + sym_enumeration_aggregate, + STATE(1950), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [43313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3047), 1, sym_identifier, - ACTIONS(3036), 7, + ACTIONS(3049), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54907,12 +55060,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43115] = 3, + [43329] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2937), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1567), 1, + sym_formal_part, + STATE(1180), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3040), 7, + ACTIONS(3053), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54920,12 +55091,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43131] = 3, + [43371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2937), 1, + anon_sym_LPAREN, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1178), 1, + sym_formal_part, + ACTIONS(2943), 3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + [43395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3044), 7, + ACTIONS(3057), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54933,12 +55121,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43147] = 3, + [43411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3059), 1, sym_identifier, - ACTIONS(3048), 7, + ACTIONS(3061), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54946,29 +55134,136 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43163] = 7, + [43427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3050), 1, + ACTIONS(3063), 1, + sym_identifier, + ACTIONS(3065), 7, + aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, - STATE(360), 1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43443] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(3067), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token1, + aux_sym_expression_token3, + [43465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 1, + sym_identifier, + ACTIONS(3071), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3073), 1, + sym_identifier, + ACTIONS(3075), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3077), 1, + sym_identifier, + ACTIONS(3079), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, + sym_identifier, + ACTIONS(3083), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3085), 1, + sym_identifier, + ACTIONS(3087), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3089), 1, + sym_identifier, + ACTIONS(3091), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43561] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3093), 1, + aux_sym__package_specification_token1, + STATE(376), 1, sym_package_declaration, STATE(2063), 1, sym__package_specification, - STATE(1380), 3, + STATE(1335), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [43187] = 3, + [43585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3095), 1, sym_identifier, - ACTIONS(3054), 7, + ACTIONS(3097), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54976,12 +55271,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43203] = 3, + [43601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3099), 1, sym_identifier, - ACTIONS(3058), 7, + ACTIONS(3101), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54989,12 +55284,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43219] = 3, + [43617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(3103), 1, sym_identifier, - ACTIONS(3062), 7, + ACTIONS(3105), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55002,12 +55297,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43235] = 3, + [43633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3107), 1, sym_identifier, - ACTIONS(3066), 7, + ACTIONS(3109), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55015,12 +55310,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43251] = 3, + [43649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3111), 1, sym_identifier, - ACTIONS(3070), 7, + ACTIONS(3113), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55028,12 +55323,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43267] = 3, + [43665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3115), 1, sym_identifier, - ACTIONS(3074), 7, + ACTIONS(3117), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55041,12 +55336,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43283] = 3, + [43681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3119), 1, sym_identifier, - ACTIONS(3078), 7, + ACTIONS(3121), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55054,12 +55349,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43299] = 3, + [43697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3123), 1, sym_identifier, - ACTIONS(3082), 7, + ACTIONS(3125), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55067,12 +55362,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43315] = 3, + [43713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3127), 1, sym_identifier, - ACTIONS(3086), 7, + ACTIONS(3129), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55080,12 +55375,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43331] = 3, + [43729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3131), 1, sym_identifier, - ACTIONS(3090), 7, + ACTIONS(3133), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -55093,512 +55388,165 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43347] = 7, + [43745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(3135), 1, + sym_identifier, + ACTIONS(3137), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3139), 1, + sym_identifier, + ACTIONS(3141), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3143), 1, + sym_identifier, + ACTIONS(3145), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + sym_identifier, + ACTIONS(3149), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 1, + sym_identifier, + ACTIONS(3153), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + sym_identifier, + ACTIONS(3157), 7, + aux_sym_iterated_element_association_token2, + aux_sym__package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [43841] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1139), 1, - sym_formal_part, - ACTIONS(2919), 3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - [43371] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - sym_identifier, - ACTIONS(3094), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43387] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3096), 1, + ACTIONS(3159), 1, aux_sym__package_specification_token2, - ACTIONS(3098), 1, + ACTIONS(3161), 1, aux_sym_object_renaming_declaration_token1, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1837), 1, + STATE(1822), 1, sym_aspect_specification, - [43415] = 3, + [43869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3163), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1852), 1, + sym_aspect_specification, + [43894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 1, sym_identifier, - ACTIONS(3102), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - sym_tick, - ACTIONS(2114), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [43447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3106), 1, - sym_identifier, - ACTIONS(3108), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 1, - sym_identifier, - ACTIONS(3112), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - sym_identifier, - ACTIONS(3116), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3118), 1, - sym_identifier, - ACTIONS(3120), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 1, - sym_identifier, - ACTIONS(3124), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43527] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2917), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1468), 1, - sym_formal_part, - STATE(1176), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [43553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3126), 1, - sym_identifier, - ACTIONS(3128), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3130), 1, - sym_identifier, - ACTIONS(3132), 7, - aux_sym_iterated_element_association_token2, - aux_sym__package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [43585] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3134), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1414), 1, - aux_sym__name_list_repeat1, - [43610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3138), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43623] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3140), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(2040), 1, - sym_aspect_specification, - [43648] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1239), 1, - aux_sym__name_list_repeat1, - ACTIONS(3136), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3144), 1, - anon_sym_EQ_GT, - ACTIONS(3142), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [43686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3146), 1, - anon_sym_COMMA, - STATE(999), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3148), 5, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [43703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43729] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3154), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1630), 1, - sym_aspect_specification, - [43754] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3156), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1807), 1, - sym_aspect_specification, - [43779] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3158), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1819), 1, - sym_aspect_specification, - [43804] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3160), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(2030), 1, - sym_aspect_specification, - [43829] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3162), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1939), 1, - sym_aspect_specification, - [43854] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3164), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1875), 1, - sym_aspect_specification, - [43879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3166), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43892] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3168), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(2013), 1, - sym_aspect_specification, - [43917] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3170), 1, - aux_sym__package_specification_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1837), 1, - sym_aspect_specification, - [43942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - sym_identifier, - ACTIONS(3176), 6, + ACTIONS(3167), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [43970] = 2, + [43909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [43983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3180), 1, + ACTIONS(3169), 1, sym_identifier, - ACTIONS(3182), 6, + ACTIONS(3171), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym__package_specification_token3, - [43998] = 8, + [43924] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(3134), 1, + ACTIONS(3173), 1, anon_sym_COMMA, - ACTIONS(3184), 1, + ACTIONS(3175), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1267), 1, + STATE(1277), 1, aux_sym__name_list_repeat1, - [44023] = 2, + [43949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 7, + ACTIONS(3177), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -55606,256 +55554,376 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44036] = 8, + [43962] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3188), 1, + ACTIONS(3179), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1614), 1, + STATE(1824), 1, sym_aspect_specification, - [44061] = 6, + [43987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3192), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(3195), 1, - anon_sym_COLON, - ACTIONS(3197), 1, - aux_sym_iterator_specification_token1, - ACTIONS(1788), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [44082] = 8, + ACTIONS(3181), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44000] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3199), 1, + ACTIONS(3183), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1720), 1, + STATE(1863), 1, sym_aspect_specification, - [44107] = 3, + [44025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(2060), 1, sym_identifier, - ACTIONS(2031), 6, + ACTIONS(2062), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [44122] = 8, + [44040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(3185), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3187), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3190), 1, + anon_sym_COLON, + ACTIONS(3192), 1, + aux_sym_iterator_specification_token1, + ACTIONS(1802), 3, sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3201), 1, - aux_sym__package_specification_token2, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1742), 1, - sym_aspect_specification, - [44147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, anon_sym_LPAREN, - ACTIONS(3205), 1, - anon_sym_SEMI, - ACTIONS(3207), 1, - aux_sym__package_specification_token2, - ACTIONS(3209), 1, - aux_sym_expression_token3, - STATE(1306), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [44168] = 3, + [44061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 6, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [44183] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3215), 1, + ACTIONS(3194), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1991), 1, + STATE(1942), 1, sym_aspect_specification, - [44208] = 8, + [44086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3217), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1981), 1, - sym_aspect_specification, - [44233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3219), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44259] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3223), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - STATE(1745), 1, - sym_aspect_specification, - [44284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3225), 1, - sym_identifier, - ACTIONS(3227), 6, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym__package_specification_token3, - [44299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3229), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3146), 1, + ACTIONS(3196), 1, anon_sym_COMMA, - STATE(1003), 1, + STATE(1012), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3231), 5, + ACTIONS(3198), 5, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_accept_statement_token2, - [44329] = 8, + [44103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3233), 1, - anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1615), 1, - sym_aspect_specification, - [44354] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(3235), 3, + ACTIONS(3200), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [44375] = 2, + [44124] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 7, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3202), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1715), 1, + sym_aspect_specification, + [44149] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3173), 1, + anon_sym_COMMA, + ACTIONS(3204), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1315), 1, + aux_sym__name_list_repeat1, + [44174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3208), 1, + anon_sym_EQ_GT, + ACTIONS(3206), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44189] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1434), 1, + aux_sym__name_list_repeat1, + ACTIONS(3204), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [44212] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1855), 1, + sym_aspect_specification, + [44237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3212), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44250] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3214), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1848), 1, + sym_aspect_specification, + [44275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3218), 1, + sym_identifier, + ACTIONS(3220), 6, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [44303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3222), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44316] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3224), 1, + aux_sym__package_specification_token2, + STATE(493), 1, + sym_actual_parameter_part, + STATE(2033), 1, + sym_aspect_specification, + [44341] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3196), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3226), 5, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44358] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3228), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(2016), 1, + sym_aspect_specification, + [44383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3230), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3232), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3234), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44422] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3236), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1810), 1, + sym_aspect_specification, + [44447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3238), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3240), 7, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterated_element_association_token2, @@ -55863,51 +55931,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, aux_sym_loop_statement_token1, - [44388] = 4, + [44473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3239), 1, - anon_sym_COMMA, - STATE(1003), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3242), 5, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [44405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44418] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3242), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1765), 1, + sym_aspect_specification, + [44498] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3244), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1791), 1, + sym_aspect_specification, + [44523] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, aux_sym_with_clause_token2, ACTIONS(3246), 1, - anon_sym_SEMI, - STATE(492), 1, + aux_sym__package_specification_token2, + STATE(493), 1, sym_actual_parameter_part, - STATE(1683), 1, + STATE(1822), 1, sym_aspect_specification, - [44443] = 2, + [44548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 7, + ACTIONS(3248), 1, + sym_identifier, + ACTIONS(3250), 6, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym__package_specification_token3, + [44563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + anon_sym_LPAREN, + ACTIONS(3254), 1, + anon_sym_SEMI, + ACTIONS(3256), 1, + aux_sym__package_specification_token2, + ACTIONS(3258), 1, + aux_sym_expression_token3, + STATE(1275), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [44584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44597] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3262), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1686), 1, + sym_aspect_specification, + [44622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 7, + aux_sym_iterated_element_association_token1, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44648] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3268), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1615), 1, + sym_aspect_specification, + [44673] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3270), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + STATE(1823), 1, + sym_aspect_specification, + [44698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3272), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, @@ -55915,10 +56104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_accept_statement_token2, - [44456] = 2, + [44711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 7, + ACTIONS(3274), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -55926,27 +56115,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44469] = 8, + [44724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3252), 1, + ACTIONS(3276), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - STATE(1702), 1, + STATE(2141), 1, sym_aspect_specification, - [44494] = 2, + [44749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 7, + ACTIONS(3278), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -55954,10104 +56143,10119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44507] = 2, + [44762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44520] = 2, + ACTIONS(3280), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3283), 5, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44779] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 7, - aux_sym_iterated_element_association_token1, - aux_sym__package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [44533] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(3260), 1, - anon_sym_SEMI, - ACTIONS(3262), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(492), 1, + ACTIONS(3285), 1, + anon_sym_SEMI, + STATE(493), 1, sym_actual_parameter_part, - [44555] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3266), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3268), 1, - aux_sym_entry_declaration_token1, - STATE(1098), 1, - sym__subprogram_specification, - STATE(1201), 1, - sym_procedure_specification, - STATE(1202), 1, - sym_function_specification, - [44577] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1197), 1, - sym__assign_value, - STATE(1505), 1, + STATE(1837), 1, sym_aspect_specification, - ACTIONS(3270), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44597] = 7, + [44804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 1, - sym_identifier, - ACTIONS(3272), 1, + ACTIONS(3287), 7, aux_sym_iterated_element_association_token1, - STATE(1423), 1, - sym_parameter_specification, - STATE(1758), 1, - sym_entry_index_specification, - STATE(1831), 1, - sym__defining_identifier_list, - STATE(1834), 1, - sym__parameter_specification_list, - [44619] = 2, + aux_sym__package_specification_token3, + aux_sym_relation_membership_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + aux_sym_global_mode_token1, + [44817] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [44631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3274), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [44643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3276), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [44655] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(1143), 1, - sym__assign_value, - STATE(1604), 1, - sym_aspect_specification, - ACTIONS(3278), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3280), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [44687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(2860), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - ACTIONS(3282), 1, + ACTIONS(3289), 1, aux_sym_iterator_filter_token1, - STATE(1216), 1, + STATE(1166), 1, sym_formal_part, - STATE(1535), 1, + STATE(1493), 1, sym_aspect_specification, - STATE(1986), 1, + STATE(1989), 1, sym_entry_barrier, - [44709] = 2, + [44839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3284), 6, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3291), 1, + aux_sym__package_specification_token1, + STATE(1217), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [44857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3293), 6, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_accept_statement_token2, - [44721] = 7, + [44869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3286), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3288), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [44743] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - STATE(1103), 1, - sym_actual_parameter_part, - STATE(1907), 1, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1152), 1, sym__assign_value, - [44765] = 6, + STATE(1527), 1, + sym_aspect_specification, + ACTIONS(3295), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(3297), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44901] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + aux_sym_chunk_specification_token1, + ACTIONS(392), 1, + aux_sym_global_mode_token1, + ACTIONS(394), 1, + aux_sym_non_empty_mode_token1, + STATE(792), 1, + sym_global_mode, + STATE(878), 1, + sym_non_empty_mode, + STATE(1535), 1, + sym_global_aspect_element, + [44923] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3301), 1, + aux_sym_with_clause_token1, + ACTIONS(3303), 1, + aux_sym_allocator_token1, + ACTIONS(3305), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3307), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3309), 1, + aux_sym_private_extension_declaration_token1, + [44945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3311), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44969] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 1, + anon_sym_SEMI, + ACTIONS(3313), 1, + anon_sym_COLON, + ACTIONS(1802), 4, sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, anon_sym_DOT, - STATE(492), 1, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [44985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [44997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3317), 1, + anon_sym_LPAREN, + STATE(1167), 1, + sym_formal_part, + STATE(1528), 1, + sym_aspect_specification, + STATE(1878), 1, + sym_entry_barrier, + [45019] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3299), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3319), 1, + anon_sym_SEMI, + ACTIONS(3321), 1, + aux_sym_with_clause_token1, + STATE(1506), 1, + sym_record_definition, + [45041] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1134), 1, + sym__assign_value, + STATE(1539), 1, + sym_aspect_specification, + ACTIONS(3323), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [45061] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1236), 1, + sym__assign_value, + STATE(1602), 1, + sym_aspect_specification, + ACTIONS(3325), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [45081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3327), 1, + sym_identifier, + STATE(1384), 1, + sym_quantifier, + ACTIONS(3329), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1538), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [45099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1153), 1, + sym__assign_value, + STATE(1530), 1, + sym_aspect_specification, + ACTIONS(3295), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [45119] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3331), 1, + anon_sym_SEMI, + ACTIONS(3333), 1, + aux_sym_with_clause_token2, + STATE(493), 1, sym_actual_parameter_part, - ACTIONS(3290), 2, + [45141] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2121), 1, + sym_identifier, + ACTIONS(3335), 1, + aux_sym_iterated_element_association_token1, + STATE(1396), 1, + sym_parameter_specification, + STATE(1761), 1, + sym_entry_index_specification, + STATE(2030), 1, + sym__parameter_specification_list, + STATE(2057), 1, + sym__defining_identifier_list, + [45163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3337), 1, + aux_sym_entry_declaration_token1, + STATE(1205), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [45181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3252), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + anon_sym_SEMI, + ACTIONS(3341), 1, + aux_sym__package_specification_token2, + STATE(1550), 1, + sym_known_discriminant_part, + STATE(1547), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [45201] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3343), 1, + anon_sym_LPAREN, + ACTIONS(3345), 1, + anon_sym_SEMI, + ACTIONS(3347), 1, + aux_sym__package_specification_token2, + STATE(1157), 1, + sym_known_discriminant_part, + STATE(1601), 1, + sym_aspect_specification, + [45223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3349), 1, + anon_sym_COMMA, + ACTIONS(3351), 1, + anon_sym_RBRACK, + ACTIONS(3355), 1, + aux_sym_with_clause_token2, + STATE(1306), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3353), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [44785] = 7, + [45243] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + STATE(1074), 1, + sym_actual_parameter_part, + STATE(1900), 1, + sym__assign_value, + [45265] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3357), 1, + anon_sym_COMMA, + ACTIONS(3359), 1, + anon_sym_RPAREN, + ACTIONS(3361), 1, + aux_sym_with_clause_token2, + STATE(1563), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3353), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45285] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3299), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3363), 1, + aux_sym_allocator_token1, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + STATE(1506), 1, + sym_record_definition, + [45307] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3367), 1, + anon_sym_SEMI, + ACTIONS(3369), 1, + aux_sym_with_clause_token2, + STATE(493), 1, + sym_actual_parameter_part, + [45329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(3371), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [45349] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3373), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3375), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45371] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1176), 1, + sym__assign_value, + STATE(1468), 1, + sym_aspect_specification, + ACTIONS(3377), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [45391] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1169), 1, + sym__assign_value, + STATE(1496), 1, + sym_aspect_specification, + ACTIONS(3379), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [45411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3381), 1, + anon_sym_COLON, + ACTIONS(1802), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45425] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3337), 1, + aux_sym_entry_declaration_token1, + ACTIONS(3383), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3385), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1087), 1, + sym__subprogram_specification, + STATE(1199), 1, + sym_procedure_specification, + STATE(1203), 1, + sym_function_specification, + [45447] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + ACTIONS(3387), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [45467] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, aux_sym_iteration_scheme_token1, - ACTIONS(416), 1, + ACTIONS(410), 1, aux_sym_subprogram_body_token1, - ACTIONS(438), 1, + ACTIONS(428), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3292), 1, + ACTIONS(3389), 1, aux_sym_declare_expression_token1, - ACTIONS(3294), 1, + ACTIONS(3391), 1, aux_sym_loop_statement_token1, - STATE(1900), 1, + STATE(1891), 1, sym_iteration_scheme, - [44807] = 7, + [45489] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3282), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3296), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - STATE(1134), 1, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(1567), 1, sym_formal_part, - STATE(1525), 1, - sym_aspect_specification, - STATE(1739), 1, - sym_entry_barrier, - [44829] = 7, + STATE(901), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(380), 1, - aux_sym_chunk_specification_token1, - ACTIONS(400), 1, - aux_sym_global_mode_token1, - ACTIONS(402), 1, - aux_sym_non_empty_mode_token1, - STATE(771), 1, - sym_global_mode, - STATE(876), 1, - sym_non_empty_mode, - STATE(1447), 1, - sym_global_aspect_element, - [44851] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, + ACTIONS(3383), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3385), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1087), 1, + sym__subprogram_specification, STATE(1199), 1, - sym__assign_value, - STATE(1511), 1, - sym_aspect_specification, - ACTIONS(3270), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1190), 1, - sym__assign_value, - STATE(1446), 1, - sym_aspect_specification, - ACTIONS(3298), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [44891] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1138), 1, - sym__assign_value, - STATE(1536), 1, - sym_aspect_specification, - ACTIONS(3300), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44911] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3302), 1, - anon_sym_SEMI, - ACTIONS(3304), 1, - aux_sym__package_specification_token2, - STATE(1458), 1, - sym_known_discriminant_part, - STATE(1456), 2, - sym__discriminant_part, - sym_unknown_discriminant_part, - [44931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, - anon_sym_COLON, - ACTIONS(1788), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - ACTIONS(3308), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [44965] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3310), 1, - aux_sym__package_specification_token1, - STATE(1148), 3, - sym_function_specification, sym_procedure_specification, - sym__subprogram_specification, - [44983] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3268), 1, - aux_sym_entry_declaration_token1, - STATE(1200), 3, + STATE(1203), 1, sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [45001] = 7, + [45525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3312), 1, - anon_sym_SEMI, - ACTIONS(3314), 1, - aux_sym_with_clause_token2, - STATE(492), 1, - sym_actual_parameter_part, - [45023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_SEMI, - ACTIONS(3316), 1, - anon_sym_COLON, - ACTIONS(1788), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - [45039] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3318), 1, - anon_sym_LPAREN, - ACTIONS(3320), 1, + ACTIONS(3393), 1, anon_sym_SEMI, - ACTIONS(3322), 1, - aux_sym__package_specification_token2, - STATE(1219), 1, - sym_known_discriminant_part, - STATE(1499), 1, + STATE(1364), 1, + sym__assign_value, + STATE(2005), 1, sym_aspect_specification, - [45061] = 7, + [45544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3326), 1, - aux_sym_with_clause_token1, - ACTIONS(3328), 1, - aux_sym_allocator_token1, - ACTIONS(3330), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3332), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3334), 1, - aux_sym_private_extension_declaration_token1, - [45083] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3324), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3336), 1, - anon_sym_SEMI, - ACTIONS(3338), 1, - aux_sym_with_clause_token1, - STATE(1609), 1, - sym_record_definition, - [45105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3340), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3395), 1, anon_sym_RPAREN, - ACTIONS(3346), 1, - aux_sym_with_clause_token2, - STATE(1441), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3344), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [45125] = 5, + ACTIONS(3397), 1, + aux_sym_expression_token4, + ACTIONS(3399), 1, + aux_sym_elsif_expression_item_token1, + STATE(1079), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [45561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3401), 1, + aux_sym__package_specification_token3, + ACTIONS(3403), 1, + aux_sym_expression_token4, + ACTIONS(3405), 1, + aux_sym_elsif_expression_item_token1, + STATE(1108), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [45578] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(2853), 1, + aux_sym_range_attribute_designator_token1, + STATE(493), 1, + sym_actual_parameter_part, + [45597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(1567), 1, + sym_formal_part, + STATE(897), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(77), 1, + aux_sym_delay_until_statement_token1, + STATE(1675), 1, + sym_delay_alternative, + STATE(49), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + [45629] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3407), 1, + aux_sym_object_renaming_declaration_token1, + STATE(493), 1, + sym_actual_parameter_part, + [45648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(1567), 1, + sym_formal_part, + STATE(1291), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [45665] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3409), 1, + aux_sym_object_renaming_declaration_token1, + STATE(493), 1, + sym_actual_parameter_part, + [45684] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3411), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3413), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45722] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3415), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45741] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3417), 1, + anon_sym_SEMI, + STATE(1405), 1, + sym__assign_value, + STATE(2137), 1, + sym_aspect_specification, + [45760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3419), 1, + anon_sym_SEMI, + STATE(1406), 1, + sym__assign_value, + STATE(2051), 1, + sym_aspect_specification, + [45779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + STATE(1291), 1, + sym_formal_part, + ACTIONS(3421), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45794] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3423), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3425), 1, + aux_sym_object_renaming_declaration_token1, + STATE(493), 1, + sym_actual_parameter_part, + [45832] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3427), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3429), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45870] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(506), 1, + aux_sym_component_choice_list_token1, + ACTIONS(3431), 1, sym_identifier, - STATE(1411), 1, - sym_quantifier, - ACTIONS(3350), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1449), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [45143] = 7, + ACTIONS(3433), 1, + sym_string_literal, + STATE(1460), 1, + sym__named_record_component_association, + STATE(1747), 1, + sym_component_choice_list, + [45889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3324), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3352), 1, - aux_sym_allocator_token1, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - STATE(1609), 1, - sym_record_definition, - [45165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 1, - anon_sym_COMMA, - ACTIONS(3358), 1, - anon_sym_RBRACK, - ACTIONS(3360), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(1383), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3344), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [45185] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1165), 1, - sym__assign_value, - STATE(1474), 1, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(3435), 1, + anon_sym_SEMI, + STATE(1243), 1, + sym_formal_part, + STATE(1688), 1, sym_aspect_specification, - ACTIONS(3362), 2, + [45908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3437), 1, + anon_sym_COMMA, + STATE(493), 1, + sym_actual_parameter_part, + [45927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3439), 1, + anon_sym_SEMI, + ACTIONS(1696), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [45940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3441), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3443), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [45978] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3445), 1, + aux_sym_object_renaming_declaration_token1, + STATE(493), 1, + sym_actual_parameter_part, + [45997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3447), 1, + anon_sym_SEMI, + STATE(1350), 1, + sym__assign_value, + STATE(1926), 1, + sym_aspect_specification, + [46016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3399), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3449), 1, anon_sym_RPAREN, - anon_sym_SEMI, - [45205] = 6, + ACTIONS(3451), 1, + aux_sym_expression_token4, + STATE(1099), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3453), 1, + anon_sym_SEMI, + STATE(1345), 1, + sym__assign_value, + STATE(1924), 1, + sym_aspect_specification, + [46052] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3455), 1, + anon_sym_SEMI, + ACTIONS(3457), 1, + aux_sym__package_specification_token2, + ACTIONS(3459), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1870), 1, + sym_aspect_specification, + [46071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3461), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - [45224] = 6, + [46090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3463), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3366), 1, + ACTIONS(3465), 1, anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45243] = 4, + STATE(1238), 1, + sym_formal_part, + STATE(1699), 1, + sym_aspect_specification, + [46109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, + ACTIONS(2970), 1, + aux_sym_expression_token1, + STATE(1131), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3467), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3469), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym__assign_value, + STATE(1915), 1, + sym_aspect_specification, + [46143] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3383), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(3385), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(1359), 3, + STATE(1093), 1, + sym__subprogram_specification, + STATE(1199), 1, + sym_procedure_specification, + STATE(1203), 1, + sym_function_specification, + [46162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3473), 1, + aux_sym__package_specification_token2, + ACTIONS(3475), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1578), 1, + sym_aspect_specification, + [46181] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3477), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3479), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46219] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3481), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3483), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3455), 1, + anon_sym_SEMI, + ACTIONS(3459), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3485), 1, + aux_sym__package_specification_token2, + STATE(1532), 1, + sym_aspect_specification, + [46276] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3475), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3487), 1, + aux_sym__package_specification_token2, + STATE(1764), 1, + sym_aspect_specification, + [46295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3489), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3491), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 5, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_accept_statement_token2, + [46344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3495), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3343), 1, + anon_sym_LPAREN, + ACTIONS(3497), 1, + aux_sym__package_specification_token2, + STATE(1407), 1, + sym_known_discriminant_part, + STATE(2093), 1, + sym_aspect_specification, + [46382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3499), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(1099), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [46397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1199), 1, + sym_procedure_specification, + STATE(1203), 1, + sym_function_specification, + STATE(1209), 1, + sym__subprogram_specification, + [46416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3504), 1, + aux_sym_object_renaming_declaration_token1, + STATE(493), 1, + sym_actual_parameter_part, + [46435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3506), 1, + anon_sym_LPAREN, + ACTIONS(3508), 1, + anon_sym_SEMI, + STATE(1242), 1, + sym_formal_part, + STATE(1771), 1, + sym_aspect_specification, + [46454] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2125), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2127), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1246), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [45258] = 6, + [46469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3368), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45277] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 5, + ACTIONS(2183), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [45288] = 6, + [46480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(1814), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(3370), 1, - anon_sym_RPAREN, - STATE(492), 1, + ACTIONS(3510), 1, + aux_sym_at_clause_token1, + STATE(493), 1, sym_actual_parameter_part, - [45307] = 4, + [46499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(2964), 1, + anon_sym_SEMI, + ACTIONS(1802), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [46512] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3512), 1, + anon_sym_RPAREN, + STATE(493), 1, + sym_actual_parameter_part, + [46531] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3405), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3514), 1, + aux_sym__package_specification_token3, + ACTIONS(3516), 1, + aux_sym_expression_token4, + STATE(1115), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3518), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(1567), 1, + sym_formal_part, + STATE(1397), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [46584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3349), 1, + anon_sym_COMMA, + ACTIONS(3351), 1, + anon_sym_RBRACK, + STATE(1306), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3353), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + STATE(1397), 1, + sym_formal_part, + ACTIONS(3520), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46616] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_COLON_EQ, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3522), 1, + anon_sym_SEMI, + STATE(1256), 1, + sym__assign_value, + STATE(1725), 1, + sym_aspect_specification, + [46635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(1567), 1, + sym_formal_part, + STATE(898), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [46652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3524), 2, + aux_sym__package_specification_token3, + aux_sym_expression_token4, + STATE(1115), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [46667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2448), 1, aux_sym_iterator_filter_token1, - STATE(1279), 1, + STATE(1307), 1, sym_iterator_filter, - ACTIONS(3372), 3, + ACTIONS(3529), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45322] = 6, + [46682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3318), 1, - anon_sym_LPAREN, - ACTIONS(3374), 1, - aux_sym__package_specification_token2, - STATE(1430), 1, - sym_known_discriminant_part, - STATE(1828), 1, - sym_aspect_specification, - [45341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3376), 1, - aux_sym_allocator_token1, - STATE(1609), 1, - sym_record_definition, - [45360] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3378), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45379] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(1468), 1, - sym_formal_part, - STATE(1424), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [45396] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_formal_part, - ACTIONS(3380), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45411] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3382), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym__assign_value, - STATE(1730), 1, - sym_aspect_specification, - [45430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3386), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3384), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(1060), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [45445] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3389), 1, - anon_sym_SEMI, - STATE(1404), 1, - sym__assign_value, - STATE(1870), 1, - sym_aspect_specification, - [45464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3391), 1, - anon_sym_SEMI, - STATE(1405), 1, - sym__assign_value, - STATE(1881), 1, - sym_aspect_specification, - [45483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3356), 1, - anon_sym_COMMA, - ACTIONS(3358), 1, - anon_sym_RBRACK, - STATE(1383), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3344), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [45500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3393), 1, - anon_sym_SEMI, - STATE(1246), 1, - sym__assign_value, - STATE(2129), 1, - sym_aspect_specification, - [45519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3395), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45538] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - aux_sym__package_specification_token3, - ACTIONS(3399), 1, - aux_sym_expression_token4, - ACTIONS(3401), 1, - aux_sym_elsif_expression_item_token1, - STATE(1091), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [45555] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3403), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3405), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45593] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3407), 1, - aux_sym_object_renaming_declaration_token1, - STATE(492), 1, - sym_actual_parameter_part, - [45612] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3409), 1, - anon_sym_COMMA, - STATE(492), 1, - sym_actual_parameter_part, - [45631] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3411), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - anon_sym_RPAREN, - ACTIONS(3415), 1, - aux_sym_expression_token4, - ACTIONS(3417), 1, - aux_sym_elsif_expression_item_token1, - STATE(1123), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [45667] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3419), 1, - aux_sym_at_clause_token1, - STATE(492), 1, - sym_actual_parameter_part, - [45686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 1, + ACTIONS(3531), 1, sym_identifier, - ACTIONS(3423), 1, + ACTIONS(3533), 1, anon_sym_LT_GT, - STATE(1393), 1, + STATE(1432), 1, sym_discriminant_specification, - STATE(1770), 1, + STATE(2110), 1, sym__defining_identifier_list, - STATE(1771), 1, + STATE(2111), 1, sym_discriminant_specification_list, - [45705] = 3, + [46701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 1, - aux_sym__package_specification_token2, - ACTIONS(1788), 4, + ACTIONS(1794), 1, sym_tick, - anon_sym_DOT, + ACTIONS(1798), 1, anon_sym_LPAREN, - aux_sym_with_clause_token2, - [45718] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, + ACTIONS(2155), 1, anon_sym_DOT, - ACTIONS(3428), 1, - aux_sym_object_renaming_declaration_token1, - STATE(492), 1, + ACTIONS(3535), 1, + anon_sym_SEMI, + STATE(493), 1, sym_actual_parameter_part, - [45737] = 6, + [46720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3430), 1, - aux_sym_object_renaming_declaration_token1, - STATE(492), 1, - sym_actual_parameter_part, - [45756] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, + ACTIONS(1955), 1, aux_sym_primary_null_token1, - ACTIONS(1926), 1, + ACTIONS(1961), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3432), 1, + ACTIONS(3537), 1, aux_sym_compilation_unit_token1, - ACTIONS(3434), 1, + ACTIONS(3539), 1, aux_sym_with_clause_token1, - STATE(1460), 1, + STATE(1568), 1, sym_record_definition, - [45775] = 6, + [46739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(3436), 1, - anon_sym_SEMI, - STATE(1288), 1, - sym_formal_part, - STATE(1685), 1, - sym_aspect_specification, - [45794] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3440), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(77), 1, - aux_sym_delay_until_statement_token1, - STATE(2057), 1, - sym_delay_alternative, - STATE(45), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - [45847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3442), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3444), 1, - aux_sym_expression_token1, - STATE(1084), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3000), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45881] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3447), 1, - anon_sym_SEMI, - ACTIONS(3449), 1, - aux_sym__package_specification_token2, - ACTIONS(3451), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1722), 1, - sym_aspect_specification, - [45900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(2760), 1, - aux_sym_range_attribute_designator_token1, - STATE(492), 1, - sym_actual_parameter_part, - [45919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3453), 1, - anon_sym_SEMI, - STATE(1331), 1, - sym__assign_value, - STATE(1726), 1, - sym_aspect_specification, - [45938] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3266), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1129), 1, - sym__subprogram_specification, - STATE(1201), 1, - sym_procedure_specification, - STATE(1202), 1, - sym_function_specification, - [45957] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3455), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [45976] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3457), 1, + ACTIONS(3541), 1, anon_sym_SEMI, STATE(1250), 1, sym__assign_value, - STATE(2123), 1, + STATE(1729), 1, sym_aspect_specification, - [45995] = 5, + [46758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3459), 1, - aux_sym__package_specification_token3, - ACTIONS(3461), 1, - aux_sym_expression_token4, - STATE(1101), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [46012] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3463), 1, - aux_sym_object_renaming_declaration_token1, - STATE(492), 1, - sym_actual_parameter_part, - [46031] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(506), 1, - aux_sym_component_choice_list_token1, - ACTIONS(3465), 1, - sym_identifier, - ACTIONS(3467), 1, - sym_string_literal, - STATE(1608), 1, - sym__named_record_component_association, - STATE(1640), 1, - sym_component_choice_list, - [46050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3469), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46069] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3471), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(1468), 1, - sym_formal_part, - STATE(892), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [46105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3473), 1, - anon_sym_RPAREN, - STATE(492), 1, - sym_actual_parameter_part, - [46124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3475), 1, - anon_sym_SEMI, - ACTIONS(3477), 1, - aux_sym__package_specification_token2, - ACTIONS(3479), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1593), 1, - sym_aspect_specification, - [46143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3481), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3483), 1, + ACTIONS(3543), 1, anon_sym_SEMI, - STATE(1345), 1, + STATE(1348), 1, sym__assign_value, - STATE(1968), 1, + STATE(1801), 1, sym_aspect_specification, - [46181] = 4, + [46777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3487), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3485), 2, - aux_sym__package_specification_token3, - aux_sym_expression_token4, - STATE(1101), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [46196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3490), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3492), 1, - anon_sym_SEMI, - ACTIONS(1692), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2191), 1, anon_sym_COLON_EQ, - [46228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3494), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46247] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(1468), 1, - sym_formal_part, - STATE(1377), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [46264] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3496), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46283] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3498), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46302] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3500), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46321] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3502), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46340] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(1468), 1, - sym_formal_part, - STATE(893), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [46357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, + ACTIONS(3545), 1, anon_sym_SEMI, - STATE(1315), 1, - sym_formal_part, - STATE(1708), 1, - sym_aspect_specification, - [46376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - aux_sym_expression_token1, - STATE(1084), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3508), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46391] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(3510), 1, - anon_sym_SEMI, - STATE(1305), 1, - sym_formal_part, - STATE(2033), 1, - sym_aspect_specification, - [46410] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3512), 1, - anon_sym_LPAREN, - ACTIONS(3514), 1, - anon_sym_SEMI, - STATE(1238), 1, - sym_formal_part, - STATE(2135), 1, - sym_aspect_specification, - [46429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1201), 1, - sym_procedure_specification, - STATE(1202), 1, - sym_function_specification, - STATE(1226), 1, - sym__subprogram_specification, - [46448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_SEMI, - ACTIONS(1788), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [46461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3264), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3266), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1098), 1, - sym__subprogram_specification, - STATE(1201), 1, - sym_procedure_specification, - STATE(1202), 1, - sym_function_specification, - [46480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3516), 5, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_accept_statement_token2, - [46491] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - STATE(1377), 1, - sym_formal_part, - ACTIONS(3518), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3520), 1, - anon_sym_SEMI, - STATE(1382), 1, + STATE(1239), 1, sym__assign_value, - STATE(1902), 1, + STATE(1733), 1, sym_aspect_specification, - [46525] = 6, + [46796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3522), 1, + ACTIONS(1794), 1, sym_tick, - ACTIONS(3524), 1, - aux_sym_iterated_element_association_token2, - STATE(492), 1, - sym_actual_parameter_part, - [46544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 1, + ACTIONS(1798), 1, anon_sym_LPAREN, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(1468), 1, - sym_formal_part, - STATE(889), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [46561] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3417), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3526), 1, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3547), 1, anon_sym_RPAREN, - ACTIONS(3528), 1, - aux_sym_expression_token4, - STATE(1060), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [46578] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3447), 1, - anon_sym_SEMI, - ACTIONS(3451), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3530), 1, - aux_sym__package_specification_token2, - STATE(1440), 1, - sym_aspect_specification, - [46597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3532), 1, - aux_sym_object_renaming_declaration_token1, - STATE(492), 1, + STATE(493), 1, sym_actual_parameter_part, - [46616] = 4, + [46815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3549), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46834] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3551), 1, + aux_sym_allocator_token1, + STATE(1506), 1, + sym_record_definition, + [46853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2448), 1, aux_sym_iterator_filter_token1, - STATE(1409), 1, + STATE(1310), 1, sym_iterator_filter, - ACTIONS(3534), 3, + ACTIONS(3553), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46631] = 6, + [46868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3536), 1, - anon_sym_SEMI, - STATE(1353), 1, - sym__assign_value, - STATE(1623), 1, - sym_aspect_specification, - [46650] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_COLON_EQ, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3538), 1, - anon_sym_SEMI, - STATE(1367), 1, - sym__assign_value, - STATE(1777), 1, - sym_aspect_specification, - [46669] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3475), 1, - anon_sym_SEMI, - ACTIONS(3479), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3540), 1, - aux_sym__package_specification_token2, - STATE(1750), 1, - sym_aspect_specification, - [46688] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, + ACTIONS(2885), 1, anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - ACTIONS(3542), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_actual_parameter_part, - [46707] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3432), 1, - aux_sym_compilation_unit_token1, - STATE(1460), 1, - sym_record_definition, - [46723] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1494), 1, - sym_aspect_specification, - ACTIONS(3544), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3546), 4, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3282), 1, - aux_sym_iterator_filter_token1, - STATE(1506), 1, - sym_aspect_specification, - STATE(1763), 1, - sym_entry_barrier, - [46763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_range_attribute_designator_token1, - STATE(1475), 1, - sym_real_range_specification, - ACTIONS(3548), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(1676), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [46789] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(3555), 1, - anon_sym_COMMA, - STATE(1137), 1, - aux_sym__name_list_repeat1, - ACTIONS(3235), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [46803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1493), 1, + STATE(1308), 1, + sym_formal_part, + STATE(1705), 1, sym_aspect_specification, - ACTIONS(3558), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46817] = 2, + [46887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 4, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3557), 1, + sym_tick, + ACTIONS(3559), 1, + aux_sym_iterated_element_association_token2, + STATE(493), 1, + sym_actual_parameter_part, + [46906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3561), 1, anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3563), 1, aux_sym__package_specification_token2, + ACTIONS(1802), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [46827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3564), 1, - aux_sym_expression_token1, - ACTIONS(3562), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46839] = 5, + [46938] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3566), 1, - anon_sym_SEMI, - ACTIONS(3568), 1, - aux_sym_with_clause_token2, - ACTIONS(3571), 1, aux_sym_expression_token1, - STATE(1436), 1, - sym_record_extension_part, - [46855] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(492), 1, - sym_actual_parameter_part, - [46871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + STATE(1131), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3067), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - STATE(1457), 1, + aux_sym_expression_token3, + [46953] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3569), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46972] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_actual_parameter_part, + [46991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1569), 1, sym_aspect_specification, ACTIONS(3573), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [46885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3575), 4, anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [46895] = 3, + [47005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, - aux_sym_expression_token2, - ACTIONS(3577), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46907] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3581), 1, - aux_sym__package_specification_token3, - ACTIONS(3583), 1, - aux_sym_expression_token3, - ACTIONS(3585), 1, - aux_sym_expression_token4, - STATE(1224), 1, - aux_sym_selective_accept_repeat1, - [46923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3581), 1, - aux_sym__package_specification_token3, - ACTIONS(3583), 1, - aux_sym_expression_token3, - ACTIONS(3585), 1, - aux_sym_expression_token4, - STATE(1230), 1, - aux_sym_selective_accept_repeat1, - [46939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3587), 1, - anon_sym_SEMI, - ACTIONS(3589), 1, + ACTIONS(3577), 1, aux_sym__package_specification_token2, - STATE(1992), 1, - sym_aspect_specification, - [46955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1445), 1, - sym_aspect_specification, - ACTIONS(3591), 2, - anon_sym_RPAREN, + ACTIONS(3575), 3, anon_sym_SEMI, - [46969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3593), 1, - aux_sym_compilation_unit_token1, - STATE(1482), 1, - sym_record_definition, - [46985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - aux_sym_allocator_token1, - ACTIONS(3599), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3595), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [46999] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - anon_sym_COMMA, - STATE(1441), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3344), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47013] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 1, - anon_sym_SEMI, - ACTIONS(3605), 1, - aux_sym_with_clause_token2, - ACTIONS(3608), 1, - aux_sym_expression_token1, - STATE(1480), 1, - sym_record_extension_part, - [47029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3610), 1, - anon_sym_SEMI, - ACTIONS(3612), 1, - aux_sym_with_clause_token2, - ACTIONS(3615), 1, - aux_sym_expression_token1, - STATE(1527), 1, - sym_record_extension_part, - [47045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3619), 1, - aux_sym__package_specification_token3, - STATE(1198), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [47059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3621), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3625), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3617), 1, - aux_sym_iterator_filter_token1, - STATE(1725), 1, - sym_variant_list, - STATE(1155), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [47113] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1285), 1, - sym__enumeration_literal_specification, - STATE(1688), 1, - sym__enumeration_literal_list, - ACTIONS(3629), 2, - sym_identifier, - sym_character_literal, - [47127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3631), 1, - aux_sym_compilation_unit_token1, - STATE(1482), 1, - sym_record_definition, - [47143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_range_attribute_designator_token1, - STATE(1543), 1, - sym_real_range_specification, - ACTIONS(3633), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47157] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3635), 1, - aux_sym_compilation_unit_token1, - STATE(1482), 1, - sym_record_definition, - [47173] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1545), 1, - sym_aspect_specification, - ACTIONS(3637), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1546), 1, - sym_aspect_specification, - ACTIONS(3639), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3352), 1, - aux_sym_allocator_token1, - ACTIONS(3641), 1, - aux_sym_with_clause_token1, - ACTIONS(3643), 1, - aux_sym_private_type_declaration_token2, - [47217] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3603), 1, - anon_sym_SEMI, - ACTIONS(3645), 1, - aux_sym_with_clause_token2, - ACTIONS(3648), 1, - aux_sym_expression_token1, - STATE(1480), 1, - sym_record_extension_part, - [47233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3610), 1, - anon_sym_SEMI, - ACTIONS(3650), 1, - aux_sym_with_clause_token2, - ACTIONS(3653), 1, - aux_sym_expression_token1, - STATE(1527), 1, - sym_record_extension_part, - [47249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - anon_sym_COMMA, - STATE(1193), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3657), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3659), 1, - aux_sym_compilation_unit_token1, - STATE(1482), 1, - sym_record_definition, - [47279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1486), 1, - sym_aspect_specification, - ACTIONS(3661), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3663), 1, - aux_sym_with_clause_token1, - STATE(1609), 1, - sym_record_definition, - [47309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - aux_sym_expression_token1, - ACTIONS(3665), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [47321] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 1, - sym_identifier, - STATE(966), 1, - sym__aspect_mark, - STATE(967), 1, - sym_aspect_association, - STATE(1118), 1, - sym_aspect_mark_list, - [47337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 4, - anon_sym_SEMI, - aux_sym__package_specification_token2, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47347] = 4, + [47017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3580), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, + aux_sym_with_clause_token1, + ACTIONS(3586), 1, + aux_sym_expression_token3, + [47033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 1, + aux_sym_allocator_token1, + ACTIONS(3592), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3588), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [47047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3594), 1, aux_sym_iterator_filter_token1, - ACTIONS(3675), 1, + ACTIONS(3596), 1, aux_sym__package_specification_token3, - STATE(1191), 2, + STATE(1184), 2, sym_exception_handler, aux_sym_handled_sequence_of_statements_repeat1, - [47361] = 4, + [47061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 1, + ACTIONS(3598), 1, + anon_sym_SEMI, + ACTIONS(3600), 1, + aux_sym_with_clause_token2, + ACTIONS(3603), 1, + aux_sym_expression_token1, + STATE(1479), 1, + sym_record_extension_part, + [47077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, anon_sym_COMMA, - STATE(1178), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3680), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47375] = 4, + ACTIONS(2966), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3605), 1, + anon_sym_COLON, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + [47093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3682), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - STATE(1179), 1, - aux_sym_gnatprep_if_statement_repeat1, - ACTIONS(3685), 2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [47389] = 5, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2966), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1399), 1, + aux_sym__defining_identifier_list_repeat1, + [47109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3447), 1, - anon_sym_SEMI, - ACTIONS(3449), 1, - aux_sym__package_specification_token2, - STATE(1722), 1, - sym_aspect_specification, - [47405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3687), 1, - aux_sym_compilation_unit_token1, - STATE(1491), 1, - sym_record_definition, - [47421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 1, + ACTIONS(3531), 1, sym_identifier, - STATE(1393), 1, - sym_discriminant_specification, - STATE(1770), 1, + STATE(1396), 1, + sym_parameter_specification, + STATE(2030), 1, + sym__parameter_specification_list, + STATE(2057), 1, sym__defining_identifier_list, - STATE(1771), 1, - sym_discriminant_specification_list, - [47437] = 5, + [47125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, + ACTIONS(3613), 1, + aux_sym_allocator_token1, + ACTIONS(3615), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3611), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [47139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 1, + aux_sym_range_attribute_designator_token1, + STATE(1556), 1, + sym_real_range_specification, + ACTIONS(3617), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3689), 1, + ACTIONS(3621), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3691), 1, + ACTIONS(3623), 1, aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1179), 1, - aux_sym_gnatprep_if_statement_repeat1, - [47453] = 5, + STATE(1223), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + [47169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_LPAREN, - ACTIONS(3693), 1, - anon_sym_SEMI, - ACTIONS(3695), 1, - aux_sym_accept_statement_token2, - STATE(1487), 1, - sym_formal_part, - [47469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3697), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47479] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [47489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3192), 1, + ACTIONS(3187), 1, aux_sym_iterated_element_association_token2, - ACTIONS(1788), 3, + ACTIONS(1802), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [47501] = 5, + [47181] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 1, - anon_sym_COMMA, - ACTIONS(2915), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3701), 1, - anon_sym_COLON, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - [47517] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 1, - sym_identifier, - STATE(1423), 1, - sym_parameter_specification, - STATE(1831), 1, - sym__defining_identifier_list, - STATE(1834), 1, - sym__parameter_specification_list, - [47533] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - STATE(1503), 1, + ACTIONS(3625), 1, + anon_sym_SEMI, + ACTIONS(3627), 1, + aux_sym_expression_token3, + STATE(1775), 1, sym_aspect_specification, - ACTIONS(3704), 2, + [47197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3629), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(1606), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [47209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3632), 1, + anon_sym_COMMA, + STATE(1149), 1, + aux_sym__name_list_repeat1, + ACTIONS(3200), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 1, + anon_sym_SEMI, + ACTIONS(3637), 1, + aux_sym_with_clause_token2, + ACTIONS(3640), 1, + aux_sym_expression_token1, + STATE(1584), 1, + sym_record_extension_part, + [47239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + STATE(1568), 1, + sym_record_definition, + [47255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1606), 1, + sym_aspect_specification, + ACTIONS(3642), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47547] = 4, + [47269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1437), 1, + sym_aspect_specification, + ACTIONS(3642), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3644), 1, + aux_sym_with_clause_token1, + STATE(1506), 1, + sym_record_definition, + [47299] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1339), 1, + sym__enumeration_literal_specification, + STATE(1901), 1, + sym__enumeration_literal_list, + ACTIONS(3646), 2, + sym_identifier, + sym_character_literal, + [47313] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1473), 1, + sym_aspect_specification, + ACTIONS(3648), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3650), 1, + anon_sym_SEMI, + ACTIONS(3652), 1, + aux_sym__package_specification_token2, + STATE(1477), 1, + sym_aspect_specification, + [47343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3654), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3656), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, aux_sym_iterator_filter_token1, - ACTIONS(3709), 1, - aux_sym__package_specification_token3, - STATE(1191), 2, - sym_exception_handler, - aux_sym_handled_sequence_of_statements_repeat1, + STATE(1728), 1, + sym_variant_list, + STATE(1193), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_COMMA, + STATE(1563), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3353), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3662), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3664), 1, + aux_sym_compilation_unit_token1, + STATE(1483), 1, + sym_record_definition, + [47417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 1, + aux_sym_range_attribute_designator_token1, + STATE(1591), 1, + sym_real_range_specification, + ACTIONS(3668), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + STATE(1475), 1, + sym_aspect_specification, + STATE(2044), 1, + sym_entry_barrier, + [47457] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + STATE(1575), 1, + sym_aspect_specification, + STATE(1766), 1, + sym_entry_barrier, + [47473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [47483] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1526), 1, + sym_aspect_specification, + ACTIONS(3672), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47497] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3674), 1, + anon_sym_COMMA, + ACTIONS(3676), 1, + anon_sym_RPAREN, + STATE(1273), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1274), 1, + aux_sym_positional_array_aggregate_repeat1, + [47513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3584), 1, + aux_sym_with_clause_token1, + ACTIONS(3679), 1, + anon_sym_SEMI, + ACTIONS(3681), 1, + aux_sym_expression_token3, + [47529] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3683), 1, + aux_sym_compilation_unit_token1, + STATE(1483), 1, + sym_record_definition, + [47545] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3685), 1, + anon_sym_SEMI, + ACTIONS(3687), 1, + aux_sym__package_specification_token2, + STATE(1597), 1, + sym_aspect_specification, [47561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3566), 1, - anon_sym_SEMI, - ACTIONS(3711), 1, - aux_sym_with_clause_token2, - ACTIONS(3714), 1, - aux_sym_expression_token1, - STATE(1436), 1, - sym_record_extension_part, - [47577] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3655), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3716), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47591] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, + ACTIONS(1955), 1, aux_sym_primary_null_token1, - ACTIONS(1926), 1, + ACTIONS(1961), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3718), 1, - aux_sym_with_clause_token1, - STATE(1460), 1, - sym_record_definition, - [47607] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3720), 1, + ACTIONS(3689), 1, aux_sym_compilation_unit_token1, - STATE(1482), 1, + STATE(1483), 1, sym_record_definition, - [47623] = 4, + [47577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3691), 1, + aux_sym__package_specification_token2, + ACTIONS(3575), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1593), 1, + sym_aspect_specification, + ACTIONS(3694), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1595), 1, + sym_aspect_specification, + ACTIONS(3696), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3698), 4, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3700), 1, aux_sym_iterator_filter_token1, - ACTIONS(3724), 1, + ACTIONS(3703), 1, aux_sym__package_specification_token3, - STATE(1227), 2, + STATE(1179), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [47637] = 4, + [47641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1603), 1, - sym_aspect_specification, - ACTIONS(3726), 2, + ACTIONS(3705), 4, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47651] = 4, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [47651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3707), 1, + aux_sym_compilation_unit_token1, + STATE(1494), 1, + sym_record_definition, + [47667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3709), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3711), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1517), 1, + sym_aspect_specification, + ACTIONS(3713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, aux_sym_iterator_filter_token1, - ACTIONS(3731), 1, + ACTIONS(3718), 1, aux_sym__package_specification_token3, - STATE(1198), 2, + STATE(1184), 2, + sym_exception_handler, + aux_sym_handled_sequence_of_statements_repeat1, + [47707] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3722), 1, + aux_sym__package_specification_token3, + STATE(1179), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [47721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 1, + anon_sym_SEMI, + ACTIONS(3724), 1, + aux_sym_with_clause_token2, + ACTIONS(3727), 1, + aux_sym_expression_token1, + STATE(1584), 1, + sym_record_extension_part, + [47737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3729), 1, + anon_sym_SEMI, + ACTIONS(3731), 1, + aux_sym_with_clause_token2, + ACTIONS(3734), 1, + aux_sym_expression_token1, + STATE(1560), 1, + sym_record_extension_part, + [47753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3736), 1, + aux_sym_compilation_unit_token1, + STATE(1483), 1, + sym_record_definition, + [47769] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3738), 1, + aux_sym_with_clause_token1, + STATE(1568), 1, + sym_record_definition, + [47785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, + anon_sym_COMMA, + STATE(1198), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3742), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3744), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [47819] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3748), 1, + aux_sym__package_specification_token3, + STATE(1202), 2, sym_variant, aux_sym_variant_list_repeat1, - [47665] = 4, + [47833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1605), 1, - sym_aspect_specification, - ACTIONS(3726), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3475), 1, - anon_sym_SEMI, - ACTIONS(3540), 1, - aux_sym__package_specification_token2, - STATE(1750), 1, - sym_aspect_specification, - [47695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - aux_sym__package_specification_token2, - ACTIONS(3733), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [47707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3738), 1, - aux_sym__package_specification_token2, - ACTIONS(3733), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [47719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1547), 1, - sym_aspect_specification, - ACTIONS(3741), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3743), 1, - anon_sym_SEMI, - ACTIONS(3745), 1, - aux_sym_expression_token3, - STATE(1996), 1, - sym_aspect_specification, - [47749] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3747), 1, - anon_sym_LPAREN, - ACTIONS(3749), 1, - anon_sym_SEMI, - ACTIONS(3751), 1, - aux_sym_accept_statement_token2, - STATE(1596), 1, - sym_formal_part, - [47765] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3753), 1, - anon_sym_SEMI, - ACTIONS(3755), 1, - aux_sym_expression_token3, - STATE(1619), 1, - sym_aspect_specification, - [47781] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3757), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3759), 1, - anon_sym_SEMI, - ACTIONS(3761), 1, - aux_sym_with_clause_token1, - ACTIONS(3763), 1, - aux_sym_expression_token3, - [47797] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3757), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3761), 1, - aux_sym_with_clause_token1, - ACTIONS(3765), 1, - anon_sym_SEMI, - ACTIONS(3767), 1, - aux_sym_expression_token3, - [47813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3771), 1, - aux_sym_allocator_token1, - ACTIONS(3773), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3769), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [47827] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - aux_sym_expression_token3, - ACTIONS(3775), 1, - aux_sym__package_specification_token3, - ACTIONS(3777), 1, - aux_sym_expression_token4, - STATE(1146), 1, - aux_sym_selective_accept_repeat1, - [47843] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1734), 1, - sym_tick, - ACTIONS(1814), 1, - anon_sym_LPAREN, - ACTIONS(2148), 1, - anon_sym_DOT, - STATE(1103), 1, - sym_actual_parameter_part, - [47859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, + ACTIONS(1955), 1, aux_sym_primary_null_token1, - ACTIONS(1926), 1, + ACTIONS(1961), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3779), 1, + ACTIONS(3750), 1, aux_sym_compilation_unit_token1, - STATE(1482), 1, + STATE(1483), 1, sym_record_definition, - [47875] = 5, + [47849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(3781), 1, - anon_sym_SEMI, - ACTIONS(3783), 1, - aux_sym__package_specification_token2, - STATE(1537), 1, + STATE(1531), 1, sym_aspect_specification, - [47891] = 5, + ACTIONS(3752), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(980), 1, + sym__aspect_mark, + STATE(989), 1, + sym_aspect_association, + STATE(1096), 1, + sym_aspect_mark_list, + [47879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3756), 1, + aux_sym_compilation_unit_token1, + STATE(1483), 1, + sym_record_definition, + [47895] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, + anon_sym_COMMA, + STATE(1210), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3758), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 1, + aux_sym__package_specification_token2, + ACTIONS(3575), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3447), 1, - anon_sym_SEMI, - ACTIONS(3785), 1, - aux_sym__package_specification_token2, - STATE(1440), 1, - sym_aspect_specification, - [47907] = 3, + aux_sym_object_renaming_declaration_token1, + [47921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3787), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3789), 3, + ACTIONS(3763), 4, anon_sym_SEMI, + aux_sym__package_specification_token2, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47919] = 5, + [47931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3282), 1, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(493), 1, + sym_actual_parameter_part, + [47947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3765), 1, aux_sym_iterator_filter_token1, - STATE(1565), 1, - sym_aspect_specification, - STATE(2041), 1, - sym_entry_barrier, - [47935] = 4, + ACTIONS(3768), 1, + aux_sym__package_specification_token3, + STATE(1202), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [47961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - STATE(1567), 1, - sym_aspect_specification, - ACTIONS(3791), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47949] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(336), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3793), 1, - aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3795), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1220), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - [47965] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3797), 1, - anon_sym_SEMI, - ACTIONS(3799), 1, + ACTIONS(3770), 1, aux_sym__package_specification_token2, - STATE(1551), 1, - sym_aspect_specification, - [47981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - STATE(1220), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - ACTIONS(3804), 2, - aux_sym_gnatprep_declarative_if_statement_token3, - aux_sym_gnatprep_declarative_if_statement_token4, - [47995] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_COMMA, - ACTIONS(2915), 1, + ACTIONS(3575), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - ACTIONS(3806), 1, - anon_sym_COLON, - STATE(1297), 1, - aux_sym__defining_identifier_list_repeat1, - [48011] = 4, + [47973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RPAREN, - ACTIONS(3344), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48025] = 5, + ACTIONS(3729), 1, + anon_sym_SEMI, + ACTIONS(3773), 1, + aux_sym_with_clause_token2, + ACTIONS(3776), 1, + aux_sym_expression_token1, + STATE(1560), 1, + sym_record_extension_part, + [47989] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3487), 1, + aux_sym__package_specification_token2, + STATE(1764), 1, + sym_aspect_specification, + [48005] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + sym_identifier, + STATE(1432), 1, + sym_discriminant_specification, + STATE(2110), 1, + sym__defining_identifier_list, + STATE(2111), 1, + sym_discriminant_specification_list, + [48021] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(460), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3813), 1, + ACTIONS(3778), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3815), 1, + ACTIONS(3780), 1, aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1179), 1, + STATE(1225), 1, aux_sym_gnatprep_if_statement_repeat1, - [48041] = 4, + [48037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, - aux_sym_expression_token3, - STATE(1224), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3817), 2, - aux_sym__package_specification_token3, - aux_sym_expression_token4, - [48055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 1, - aux_sym__package_specification_token2, - ACTIONS(3733), 3, - anon_sym_SEMI, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [48067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3475), 1, + ACTIONS(3455), 1, anon_sym_SEMI, - ACTIONS(3825), 1, + ACTIONS(3457), 1, aux_sym__package_specification_token2, - STATE(1593), 1, + STATE(1870), 1, sym_aspect_specification, - [48083] = 4, + [48053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3830), 1, - aux_sym__package_specification_token3, - STATE(1227), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [48097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3832), 1, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3782), 1, aux_sym__package_specification_token2, - ACTIONS(3733), 3, + STATE(1578), 1, + sym_aspect_specification, + [48069] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + anon_sym_COMMA, + STATE(1210), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3787), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3598), 1, + anon_sym_SEMI, + ACTIONS(3789), 1, + aux_sym_with_clause_token2, + ACTIONS(3792), 1, + aux_sym_expression_token1, + STATE(1479), 1, + sym_record_extension_part, + [48099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + aux_sym_expression_token1, + ACTIONS(3794), 3, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [48109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(3837), 1, - anon_sym_RPAREN, - STATE(1275), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1276), 1, - aux_sym_positional_array_aggregate_repeat1, - [48125] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, aux_sym_expression_token3, - ACTIONS(3840), 1, - aux_sym__package_specification_token3, - ACTIONS(3842), 1, - aux_sym_expression_token4, - STATE(1224), 1, + [48111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3798), 1, + anon_sym_SEMI, + ACTIONS(3800), 1, + aux_sym_expression_token3, + STATE(1631), 1, + sym_aspect_specification, + [48127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + aux_sym_expression_token3, + STATE(1214), 1, aux_sym_selective_accept_repeat1, + ACTIONS(3802), 2, + aux_sym__package_specification_token3, + aux_sym_expression_token4, [48141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(336), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3844), 1, - aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3846), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1220), 1, - aux_sym_gnatprep_declarative_if_statement_repeat1, - [48157] = 2, + ACTIONS(2885), 1, + anon_sym_LPAREN, + ACTIONS(3807), 1, + anon_sym_SEMI, + ACTIONS(3809), 1, + aux_sym_accept_statement_token2, + STATE(1464), 1, + sym_formal_part, + [48157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 4, + ACTIONS(1794), 1, + sym_tick, + ACTIONS(1798), 1, + anon_sym_LPAREN, + ACTIONS(2155), 1, + anon_sym_DOT, + STATE(1074), 1, + sym_actual_parameter_part, + [48173] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3811), 1, + anon_sym_SEMI, + ACTIONS(3813), 1, + aux_sym__package_specification_token2, + STATE(1643), 1, + sym_aspect_specification, + [48189] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3363), 1, + aux_sym_allocator_token1, + ACTIONS(3815), 1, + aux_sym_with_clause_token1, + ACTIONS(3817), 1, + aux_sym_private_type_declaration_token2, + [48205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1490), 1, + sym_aspect_specification, + ACTIONS(3819), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(330), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + ACTIONS(3821), 1, + aux_sym_gnatprep_declarative_if_statement_token3, + ACTIONS(3823), 1, + aux_sym_gnatprep_declarative_if_statement_token4, + STATE(1223), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + [48235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, + aux_sym__package_specification_token3, + ACTIONS(3827), 1, + aux_sym_expression_token3, + ACTIONS(3829), 1, + aux_sym_expression_token4, + STATE(1214), 1, + aux_sym_selective_accept_repeat1, + [48251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3455), 1, + anon_sym_SEMI, + ACTIONS(3831), 1, + aux_sym__package_specification_token2, + STATE(1532), 1, + sym_aspect_specification, + [48267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3833), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + STATE(1223), 1, + aux_sym_gnatprep_declarative_if_statement_repeat1, + ACTIONS(3836), 2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + [48281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(460), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + ACTIONS(3838), 1, + aux_sym_gnatprep_declarative_if_statement_token3, + ACTIONS(3840), 1, + aux_sym_gnatprep_declarative_if_statement_token4, + STATE(1225), 1, + aux_sym_gnatprep_if_statement_repeat1, + [48297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + STATE(1225), 1, + aux_sym_gnatprep_if_statement_repeat1, + ACTIONS(3845), 2, + aux_sym_gnatprep_declarative_if_statement_token3, + aux_sym_gnatprep_declarative_if_statement_token4, + [48311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3849), 1, + aux_sym_expression_token1, + ACTIONS(3847), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + aux_sym_expression_token3, + ACTIONS(3851), 1, + aux_sym__package_specification_token3, + ACTIONS(3853), 1, + aux_sym_expression_token4, + STATE(1221), 1, + aux_sym_selective_accept_repeat1, + [48339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3855), 1, + anon_sym_COMMA, + STATE(1228), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3858), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 4, anon_sym_SEMI, aux_sym_with_clause_token2, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [48167] = 4, + [48363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3853), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3855), 1, - anon_sym_SEMI, - STATE(1692), 1, - sym_aspect_specification, - [48194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3857), 1, - aux_sym__package_specification_token2, - STATE(1802), 1, - sym_aspect_specification, - [48207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(528), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(588), 1, - aux_sym_value_sequence_token1, - STATE(2036), 1, - sym_iterated_element_association, - [48220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3859), 1, - anon_sym_SEMI, - STATE(1785), 1, - sym_aspect_specification, - [48233] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3861), 1, - anon_sym_SEMI, - STATE(1693), 1, - sym_aspect_specification, - [48246] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1137), 1, - aux_sym__name_list_repeat1, - ACTIONS(3863), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48257] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3865), 1, - anon_sym_SEMI, - STATE(2130), 1, - sym_aspect_specification, - [48270] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, + ACTIONS(3827), 1, aux_sym_expression_token3, - [48279] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_EQ_GT, - ACTIONS(1866), 1, - anon_sym_PIPE, - STATE(1418), 1, - aux_sym_component_choice_list_repeat1, - [48292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(3869), 1, - aux_sym_attribute_designator_token3, - STATE(1477), 1, - sym_real_range_specification, - [48305] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - anon_sym_COMMA, - ACTIONS(3874), 1, - anon_sym_RPAREN, - STATE(1244), 1, - aux_sym_record_component_association_list_repeat2, - [48318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3876), 1, - anon_sym_SEMI, - STATE(1825), 1, - sym_aspect_specification, - [48331] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3536), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_aspect_specification, - [48344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3878), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48353] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 1, - anon_sym_RPAREN, - ACTIONS(3884), 1, - anon_sym_SEMI, - STATE(1249), 1, - aux_sym__parameter_specification_list_repeat1, - [48375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3887), 1, - anon_sym_SEMI, - STATE(1706), 1, - sym_aspect_specification, - [48388] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3889), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48406] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3891), 1, - anon_sym_SEMI, - STATE(2119), 1, - sym_aspect_specification, - [48419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RPAREN, - STATE(1263), 1, - aux_sym_actual_parameter_part_repeat1, - [48432] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1411), 1, - sym_quantifier, - ACTIONS(3350), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [48443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3897), 1, - anon_sym_SEMI, - STATE(1735), 1, - sym_aspect_specification, - [48456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 1, - anon_sym_EQ_GT, - ACTIONS(3901), 1, - anon_sym_PIPE, - STATE(1257), 1, - aux_sym_discrete_choice_list_repeat1, - [48469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3904), 1, - anon_sym_SEMI, - STATE(2004), 1, - sym_aspect_specification, - [48482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3906), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - anon_sym_RPAREN, - STATE(1259), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [48495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3911), 1, - anon_sym_SEMI, - STATE(1998), 1, - sym_aspect_specification, - [48508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_PIPE, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - STATE(1323), 1, - aux_sym_discriminant_association_repeat1, - [48521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, - anon_sym_COMMA, - ACTIONS(3917), 1, - anon_sym_RPAREN, - STATE(1314), 1, - aux_sym_discriminant_constraint_repeat1, - [48534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3893), 1, - anon_sym_COMMA, - ACTIONS(3919), 1, - anon_sym_RPAREN, - STATE(1425), 1, - aux_sym_actual_parameter_part_repeat1, - [48547] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3921), 1, - anon_sym_SEMI, - STATE(1806), 1, - sym_aspect_specification, - [48560] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_COMMA, - ACTIONS(3925), 1, - anon_sym_RPAREN, - STATE(1310), 1, - aux_sym_index_constraint_repeat1, - [48573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3927), 1, - anon_sym_SEMI, - STATE(1978), 1, - sym_aspect_specification, - [48586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3134), 1, - anon_sym_COMMA, - ACTIONS(3929), 1, - anon_sym_SEMI, - STATE(1137), 1, - aux_sym__name_list_repeat1, - [48599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3680), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_RPAREN, - STATE(1275), 1, - aux_sym_record_component_association_list_repeat1, - [48621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3935), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [48630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - anon_sym_COMMA, - ACTIONS(3939), 1, - anon_sym_RPAREN, - STATE(1300), 1, - aux_sym_case_expression_repeat1, - [48643] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3941), 1, - sym_identifier, - ACTIONS(3943), 1, - aux_sym_use_clause_token2, - ACTIONS(3945), 1, - aux_sym_package_body_token1, - [48656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, - sym_identifier, - ACTIONS(3949), 1, - aux_sym_use_clause_token2, - ACTIONS(3951), 1, - aux_sym_package_body_token1, - [48669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, - anon_sym_COMMA, - ACTIONS(3956), 1, - anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__index_subtype_definition_list_repeat1, - [48682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 1, - anon_sym_COMMA, - ACTIONS(3958), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_record_component_association_list_repeat1, - [48695] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_COMMA, - ACTIONS(3962), 1, - anon_sym_RPAREN, - STATE(1178), 1, - aux_sym_positional_array_aggregate_repeat1, - [48708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 3, + ACTIONS(3862), 1, aux_sym__package_specification_token3, - aux_sym_expression_token3, + ACTIONS(3864), 1, aux_sym_expression_token4, - [48717] = 3, + STATE(1231), 1, + aux_sym_selective_accept_repeat1, + [48379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3827), 1, + aux_sym_expression_token3, + ACTIONS(3851), 1, + aux_sym__package_specification_token3, + ACTIONS(3853), 1, + aux_sym_expression_token4, + STATE(1214), 1, + aux_sym_selective_accept_repeat1, + [48395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + STATE(1570), 1, + sym_aspect_specification, + ACTIONS(3866), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, aux_sym_expression_token2, - ACTIONS(3964), 2, - aux_sym_expression_token3, - aux_sym_expression_token4, - [48728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [48737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [48746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 3, + ACTIONS(3868), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [48755] = 2, + [48421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3972), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [48773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3974), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [48782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_COMMA, - ACTIONS(3978), 1, - anon_sym_RPAREN, - STATE(1375), 1, - aux_sym__enumeration_literal_list_repeat1, - [48795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3980), 1, - anon_sym_SEMI, - STATE(2082), 1, - sym_aspect_specification, - [48808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3982), 1, - anon_sym_EQ_GT, - ACTIONS(3984), 1, - anon_sym_PIPE, - STATE(1287), 1, - aux_sym_component_choice_list_repeat1, - [48821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3987), 1, - anon_sym_SEMI, - STATE(1853), 1, - sym_aspect_specification, - [48834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3989), 3, - aux_sym_terminate_alternative_token1, - aux_sym_accept_statement_token1, - aux_sym_delay_until_statement_token1, - [48843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3923), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_RPAREN, - STATE(1265), 1, - aux_sym_index_constraint_repeat1, - [48856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_COMMA, - ACTIONS(3996), 1, - anon_sym_RPAREN, - STATE(1291), 1, - aux_sym_record_component_association_list_repeat1, - [48869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3998), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [48878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [48887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(4004), 1, - anon_sym_RPAREN, - STATE(1408), 1, - aux_sym_global_aspect_definition_repeat1, - [48900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4006), 1, - anon_sym_COMMA, - ACTIONS(4008), 1, - anon_sym_RPAREN, - STATE(1399), 1, - aux_sym_pragma_g_repeat1, - [48913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_RPAREN, - ACTIONS(4012), 1, - anon_sym_SEMI, - STATE(1426), 1, - aux_sym_discriminant_specification_list_repeat1, - [48926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2056), 1, - anon_sym_COMMA, - ACTIONS(4014), 1, - anon_sym_COLON, - STATE(1407), 1, - aux_sym__defining_identifier_list_repeat1, - [48939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 1, - sym_identifier, - STATE(1500), 1, - sym_discriminant_specification, - STATE(1770), 1, - sym__defining_identifier_list, - [48952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(528), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(4016), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, - STATE(1857), 1, - sym_iterated_element_association, - [48965] = 4, + ACTIONS(3874), 1, + anon_sym_SEMI, + ACTIONS(3876), 1, + aux_sym_accept_statement_token2, + STATE(1612), 1, + sym_formal_part, + [48437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(3878), 1, anon_sym_COMMA, - ACTIONS(4018), 1, + ACTIONS(3880), 1, anon_sym_RPAREN, - STATE(1387), 1, - aux_sym_case_expression_repeat1, - [48978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 1, - sym_identifier, - STATE(1449), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [48989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4022), 1, - anon_sym_RPAREN, - STATE(2065), 1, - sym_aspect_specification, - [49002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3915), 1, - anon_sym_COMMA, - ACTIONS(4024), 1, - anon_sym_RPAREN, - STATE(1262), 1, - aux_sym_discriminant_constraint_repeat1, - [49015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4026), 1, - anon_sym_SEMI, - STATE(2061), 1, - sym_aspect_specification, - [49028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4028), 1, - anon_sym_SEMI, - STATE(1664), 1, - sym_aspect_specification, - [49041] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 1, - anon_sym_SEMI, - ACTIONS(4032), 1, - aux_sym__package_specification_token2, - ACTIONS(4034), 1, - aux_sym_expression_token3, - [49054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4036), 1, - anon_sym_SEMI, - STATE(2059), 1, - sym_aspect_specification, - [49067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4038), 3, - aux_sym_iterated_element_association_token2, + ACTIONS(3353), 2, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [49076] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4040), 1, - anon_sym_SEMI, - STATE(1679), 1, - sym_aspect_specification, - [49089] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4042), 1, - anon_sym_COMMA, - ACTIONS(4045), 1, - anon_sym_RPAREN, - STATE(1310), 1, - aux_sym_index_constraint_repeat1, - [49102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4047), 1, - anon_sym_SEMI, - STATE(1648), 1, - sym_aspect_specification, - [49115] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4049), 1, - anon_sym_SEMI, - STATE(1641), 1, - sym_aspect_specification, - [49128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4038), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [49137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4051), 1, - anon_sym_COMMA, - ACTIONS(4054), 1, - anon_sym_RPAREN, - STATE(1314), 1, - aux_sym_discriminant_constraint_repeat1, - [49150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4056), 1, - anon_sym_SEMI, - STATE(1964), 1, - sym_aspect_specification, - [49163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4058), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49172] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4060), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4062), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49208] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3421), 1, - sym_identifier, - STATE(1602), 1, - sym_parameter_specification, - STATE(1831), 1, - sym__defining_identifier_list, - [49230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 1, - anon_sym_EQ_GT, - ACTIONS(4072), 1, anon_sym_PIPE, - STATE(1323), 1, - aux_sym_discriminant_association_repeat1, - [49243] = 3, + [48451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 1, - sym_identifier, - STATE(2029), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [49254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 3, - anon_sym_RPAREN, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [49263] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 3, - anon_sym_SEMI, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4079), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [49281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 3, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_expression_token3, - [49290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4083), 1, - aux_sym__package_specification_token2, - STATE(1945), 1, + STATE(1542), 1, sym_aspect_specification, - [49303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4085), 1, + ACTIONS(3882), 2, anon_sym_SEMI, - STATE(1873), 1, - sym_aspect_specification, - [49316] = 4, + aux_sym_accept_statement_token2, + [48465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4087), 1, - anon_sym_SEMI, - STATE(1862), 1, - sym_aspect_specification, - [49329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4089), 1, - anon_sym_SEMI, - STATE(2044), 1, - sym_aspect_specification, - [49342] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4091), 1, - anon_sym_SEMI, - STATE(1773), 1, - sym_aspect_specification, - [49355] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 1, - anon_sym_EQ_GT, - ACTIONS(4095), 1, - anon_sym_PIPE, - STATE(1358), 1, - aux_sym_exception_choice_list_repeat1, - [49368] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, - anon_sym_COMMA, - ACTIONS(4099), 1, - anon_sym_RPAREN, - STATE(1401), 1, - aux_sym__index_subtype_definition_list_repeat1, - [49381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3722), 1, - aux_sym_iterator_filter_token1, - STATE(1196), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [49392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4101), 1, - anon_sym_SEMI, - STATE(2034), 1, - sym_aspect_specification, - [49405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4103), 1, - anon_sym_SEMI, - STATE(2032), 1, - sym_aspect_specification, - [49418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4105), 1, - anon_sym_SEMI, - STATE(1882), 1, - sym_aspect_specification, - [49431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4107), 1, - anon_sym_COMMA, - ACTIONS(4109), 1, - anon_sym_RPAREN, - STATE(1397), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [49444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2042), 1, + ACTIONS(2075), 1, anon_sym_COLON, - ACTIONS(2056), 1, + ACTIONS(2091), 1, anon_sym_COMMA, - STATE(1297), 1, + STATE(1399), 1, aux_sym__defining_identifier_list_repeat1, - [49457] = 4, + [48478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3669), 1, - sym_identifier, - STATE(966), 1, - sym__aspect_mark, - STATE(1016), 1, - sym_aspect_association, - [49470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(4111), 1, - anon_sym_SEMI, - STATE(2138), 1, - sym_aspect_specification, - [49483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4113), 1, - anon_sym_SEMI, - STATE(1624), 1, - sym_aspect_specification, - [49496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4115), 1, - anon_sym_SEMI, - STATE(1625), 1, - sym_aspect_specification, - [49509] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4117), 1, - anon_sym_SEMI, - STATE(2023), 1, - sym_aspect_specification, - [49522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4119), 1, - anon_sym_SEMI, - STATE(2025), 1, - sym_aspect_specification, - [49535] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4121), 1, - anon_sym_SEMI, - STATE(1889), 1, - sym_aspect_specification, - [49548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4123), 1, - anon_sym_SEMI, - STATE(1893), 1, - sym_aspect_specification, - [49561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4125), 1, - anon_sym_EQ_GT, - ACTIONS(4127), 1, - anon_sym_PIPE, - STATE(1388), 1, - aux_sym_discrete_choice_list_repeat1, - [49574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 1, - anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_RPAREN, - STATE(1351), 1, - aux_sym_pragma_g_repeat1, - [49587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4134), 1, - anon_sym_SEMI, - ACTIONS(4136), 1, - aux_sym_with_clause_token1, - [49600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3391), 1, - anon_sym_SEMI, - STATE(1881), 1, - sym_aspect_specification, - [49613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 1, - anon_sym_COMMA, - ACTIONS(4140), 1, - anon_sym_RPAREN, - STATE(1390), 1, - aux_sym_record_component_association_list_repeat2, - [49626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [49635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49644] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3757), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3771), 1, - aux_sym_allocator_token1, - [49657] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - anon_sym_EQ_GT, - ACTIONS(4148), 1, - anon_sym_PIPE, - STATE(1358), 1, - aux_sym_exception_choice_list_repeat1, - [49670] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4151), 1, - aux_sym__package_specification_token2, - STATE(1766), 1, - sym_aspect_specification, - [49683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - aux_sym_allocator_token1, - ACTIONS(4153), 1, - aux_sym_with_clause_token1, - ACTIONS(4155), 1, - aux_sym_private_type_declaration_token2, - [49696] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4157), 1, - aux_sym__package_specification_token2, - STATE(1945), 1, - sym_aspect_specification, - [49709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4159), 1, - aux_sym__package_specification_token2, - STATE(1830), 1, - sym_aspect_specification, - [49722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - STATE(1491), 1, - sym_record_definition, - [49735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4161), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49744] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4165), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4167), 1, - anon_sym_SEMI, - STATE(1883), 1, - sym_aspect_specification, - [49775] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - STATE(1482), 1, - sym_record_definition, - [49788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4169), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4171), 1, - anon_sym_SEMI, - STATE(1737), 1, - sym_aspect_specification, - [49810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4173), 3, - sym_identifier, - sym_string_literal, - sym_character_literal, - [49819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4179), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [49839] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1476), 1, - sym__enumeration_literal_specification, - ACTIONS(4181), 2, - sym_identifier, - sym_character_literal, - [49850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3976), 1, - anon_sym_COMMA, - ACTIONS(4183), 1, - anon_sym_RPAREN, - STATE(1422), 1, - aux_sym__enumeration_literal_list_repeat1, - [49863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(1977), 1, - sym_aspect_specification, - [49876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [49885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4187), 1, - anon_sym_SEMI, - STATE(1687), 1, - sym_aspect_specification, - [49898] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4189), 1, - aux_sym__package_specification_token2, - STATE(1942), 1, - sym_aspect_specification, - [49911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4191), 1, + ACTIONS(3884), 1, anon_sym_SEMI, STATE(1635), 1, sym_aspect_specification, - [49924] = 2, + [48491] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3886), 1, + anon_sym_SEMI, + STATE(1885), 1, + sym_aspect_specification, + [48504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3888), 1, + anon_sym_RPAREN, + ACTIONS(3890), 1, + anon_sym_SEMI, + STATE(1240), 1, + aux_sym__parameter_specification_list_repeat1, + [48517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3802), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3893), 1, + anon_sym_SEMI, + STATE(1883), 1, + sym_aspect_specification, + [48539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3895), 1, + anon_sym_SEMI, + STATE(1856), 1, + sym_aspect_specification, + [48552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3897), 1, + anon_sym_SEMI, + STATE(1995), 1, + sym_aspect_specification, + [48565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3899), 1, + anon_sym_SEMI, + STATE(1896), 1, + sym_aspect_specification, + [48578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3901), 1, + aux_sym__package_specification_token2, + STATE(1939), 1, + sym_aspect_specification, + [48591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_COMMA, + ACTIONS(3905), 1, + anon_sym_RPAREN, + STATE(1351), 1, + aux_sym_actual_parameter_part_repeat1, + [48604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3907), 1, + anon_sym_SEMI, + STATE(1934), 1, + sym_aspect_specification, + [48617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, + aux_sym_iterator_filter_token1, + STATE(1185), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [48628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3453), 1, + anon_sym_SEMI, + STATE(1924), 1, + sym_aspect_specification, + [48641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3909), 1, + anon_sym_SEMI, + STATE(1892), 1, + sym_aspect_specification, + [48654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RPAREN, + STATE(1336), 1, + aux_sym_record_component_association_list_repeat2, + [48676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 1, + anon_sym_PIPE, + ACTIONS(3917), 1, + anon_sym_EQ_GT, + STATE(1346), 1, + aux_sym_discriminant_association_repeat1, + [48689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + anon_sym_COMMA, + ACTIONS(3922), 1, + anon_sym_RPAREN, + STATE(1255), 1, + aux_sym__index_subtype_definition_list_repeat1, + [48702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3924), 1, + anon_sym_SEMI, + STATE(1905), 1, + sym_aspect_specification, + [48715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_COMMA, + ACTIONS(3928), 1, + anon_sym_RPAREN, + STATE(1340), 1, + aux_sym_discriminant_constraint_repeat1, + [48728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3930), 3, + aux_sym_terminate_alternative_token1, + aux_sym_accept_statement_token1, + aux_sym_delay_until_statement_token1, + [48737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3932), 1, + aux_sym__package_specification_token2, + STATE(1628), 1, + sym_aspect_specification, + [48750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + anon_sym_RPAREN, + STATE(1338), 1, + aux_sym_index_constraint_repeat1, + [48763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_EQ_GT, + ACTIONS(3940), 1, + anon_sym_PIPE, + STATE(1311), 1, + aux_sym_discrete_choice_list_repeat1, + [48776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_EQ_GT, + ACTIONS(3944), 1, + anon_sym_PIPE, + STATE(1372), 1, + aux_sym_exception_choice_list_repeat1, + [48789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_COMMA, + ACTIONS(3950), 1, + anon_sym_RPAREN, + STATE(1362), 1, + aux_sym_pragma_g_repeat1, + [48811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + anon_sym_COMMA, + ACTIONS(3955), 1, + anon_sym_RPAREN, + STATE(1265), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [48824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [48833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_COMMA, + ACTIONS(3959), 1, + anon_sym_RPAREN, + STATE(1332), 1, + aux_sym_case_expression_repeat1, + [48846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 1, + anon_sym_COMMA, + ACTIONS(3963), 1, + anon_sym_RPAREN, + STATE(1322), 1, + aux_sym_global_aspect_definition_repeat1, + [48859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3965), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3967), 1, + anon_sym_SEMI, + STATE(1876), 1, + sym_aspect_specification, + [48881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3969), 1, + anon_sym_SEMI, + STATE(1880), 1, + sym_aspect_specification, + [48894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_expression_token2, + ACTIONS(3971), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [48905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_RPAREN, + STATE(1328), 1, + aux_sym_record_component_association_list_repeat1, + [48918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 1, + anon_sym_COMMA, + ACTIONS(3979), 1, + anon_sym_RPAREN, + STATE(1228), 1, + aux_sym_positional_array_aggregate_repeat1, + [48931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_SEMI, + ACTIONS(3983), 1, + aux_sym__package_specification_token2, + ACTIONS(3985), 1, + aux_sym_expression_token3, + [48944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [48953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3173), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, + anon_sym_SEMI, + STATE(1149), 1, + aux_sym__name_list_repeat1, + [48966] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1384), 1, + sym_quantifier, + ACTIONS(3329), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [48977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + STATE(1568), 1, + sym_record_definition, + [48999] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_COMMA, + ACTIONS(3993), 1, + anon_sym_RPAREN, + STATE(1247), 1, + aux_sym_actual_parameter_part_repeat1, + [49012] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3995), 1, + anon_sym_SEMI, + STATE(1828), 1, + sym_aspect_specification, + [49025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3754), 1, + sym_identifier, + STATE(980), 1, + sym__aspect_mark, + STATE(1022), 1, + sym_aspect_association, + [49038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3997), 1, + anon_sym_SEMI, + STATE(1879), 1, + sym_aspect_specification, + [49051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3999), 1, + aux_sym__package_specification_token2, + STATE(2080), 1, + sym_aspect_specification, + [49064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4001), 1, + anon_sym_COMMA, + ACTIONS(4004), 1, + anon_sym_RPAREN, + STATE(1286), 1, + aux_sym_case_expression_repeat1, + [49077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4006), 1, + anon_sym_SEMI, + STATE(1875), 1, + sym_aspect_specification, + [49090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4008), 1, + anon_sym_SEMI, + STATE(1869), 1, + sym_aspect_specification, + [49103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3594), 1, + aux_sym_iterator_filter_token1, + STATE(1138), 2, + sym_exception_handler, + aux_sym_handled_sequence_of_statements_repeat1, + [49114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3520), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RPAREN, + STATE(1398), 1, + aux_sym__enumeration_literal_list_repeat1, + [49145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4016), 1, + anon_sym_SEMI, + STATE(1718), 1, + sym_aspect_specification, + [49158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4018), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49167] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1471), 1, + sym__enumeration_literal_specification, + ACTIONS(4020), 2, + sym_identifier, + sym_character_literal, + [49178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_SEMI, + STATE(1296), 1, + aux_sym_discriminant_specification_list_repeat1, + [49191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4027), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4031), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4033), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4035), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4037), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [49245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4043), 1, + anon_sym_SEMI, + STATE(1734), 1, + sym_aspect_specification, + [49276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4045), 1, + anon_sym_COMMA, + ACTIONS(4047), 1, + anon_sym_RBRACK, + STATE(1228), 1, + aux_sym_positional_array_aggregate_repeat1, + [49289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4049), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49298] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4051), 1, + anon_sym_SEMI, + STATE(1701), 1, + sym_aspect_specification, + [49311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4053), 1, + anon_sym_SEMI, + STATE(2026), 1, + sym_aspect_specification, + [49324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3940), 1, + anon_sym_PIPE, + ACTIONS(4057), 1, + anon_sym_EQ_GT, + STATE(1410), 1, + aux_sym_discrete_choice_list_repeat1, + [49346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [49355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4061), 1, + anon_sym_SEMI, + STATE(1617), 1, + sym_aspect_specification, + [49377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3173), 1, + anon_sym_COMMA, + ACTIONS(4063), 1, + anon_sym_SEMI, + STATE(1149), 1, + aux_sym__name_list_repeat1, + [49390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3185), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3190), 1, + anon_sym_COLON, + ACTIONS(3192), 1, + aux_sym_iterator_specification_token1, + [49403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 1, + anon_sym_COMMA, + ACTIONS(4068), 1, + anon_sym_COLON, + STATE(1317), 1, + aux_sym__defining_identifier_list_repeat1, + [49416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4070), 1, + anon_sym_SEMI, + STATE(1827), 1, + sym_aspect_specification, + [49429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4072), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4074), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4078), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, + anon_sym_RPAREN, + STATE(1322), 1, + aux_sym_global_aspect_definition_repeat1, + [49469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 3, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_expression_token3, + [49487] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4087), 1, + anon_sym_SEMI, + STATE(1809), 1, + sym_aspect_specification, + [49500] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4089), 1, + anon_sym_SEMI, + STATE(1811), 1, + sym_aspect_specification, + [49513] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(1968), 1, + sym_aspect_specification, + [49526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + anon_sym_COMMA, + ACTIONS(4096), 1, + anon_sym_RPAREN, + STATE(1328), 1, + aux_sym_record_component_association_list_repeat1, + [49539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + sym_identifier, + STATE(1545), 1, + sym_discriminant_specification, + STATE(2110), 1, + sym__defining_identifier_list, + [49552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4098), 1, + anon_sym_RPAREN, + ACTIONS(4100), 1, + anon_sym_SEMI, + STATE(1296), 1, + aux_sym_discriminant_specification_list_repeat1, + [49565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4102), 1, + anon_sym_SEMI, + STATE(1817), 1, + sym_aspect_specification, + [49578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_COMMA, + ACTIONS(4104), 1, + anon_sym_RPAREN, + STATE(1286), 1, + aux_sym_case_expression_repeat1, + [49591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4106), 1, + anon_sym_SEMI, + STATE(1973), 1, + sym_aspect_specification, + [49604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4108), 1, + anon_sym_SEMI, + STATE(1977), 1, + sym_aspect_specification, + [49617] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4110), 1, + anon_sym_SEMI, + STATE(1720), 1, + sym_aspect_specification, + [49630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_COMMA, + ACTIONS(4112), 1, + anon_sym_RPAREN, + STATE(1419), 1, + aux_sym_record_component_association_list_repeat2, + [49643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 3, + sym_identifier, + sym_string_literal, + sym_character_literal, + [49652] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_COMMA, + ACTIONS(4119), 1, + anon_sym_RPAREN, + STATE(1338), 1, + aux_sym_index_constraint_repeat1, + [49665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4121), 1, + anon_sym_RPAREN, + STATE(1292), 1, + aux_sym__enumeration_literal_list_repeat1, + [49678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4123), 1, + anon_sym_COMMA, + ACTIONS(4126), 1, + anon_sym_RPAREN, + STATE(1340), 1, + aux_sym_discriminant_constraint_repeat1, + [49691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4128), 1, + anon_sym_SEMI, + STATE(2095), 1, + sym_aspect_specification, + [49704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_RPAREN, + STATE(1404), 1, + aux_sym__index_subtype_definition_list_repeat1, + [49717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + anon_sym_COMMA, + ACTIONS(4136), 1, + anon_sym_RPAREN, + STATE(1400), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [49730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3419), 1, + anon_sym_SEMI, + STATE(2051), 1, + sym_aspect_specification, + [49752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 1, + anon_sym_EQ_GT, + ACTIONS(4142), 1, + anon_sym_PIPE, + STATE(1346), 1, + aux_sym_discriminant_association_repeat1, + [49765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4145), 1, + anon_sym_SEMI, + STATE(1638), 1, + sym_aspect_specification, + [49778] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4147), 1, + anon_sym_SEMI, + STATE(1639), 1, + sym_aspect_specification, + [49791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3619), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(4149), 1, + aux_sym_attribute_designator_token3, + STATE(1555), 1, + sym_real_range_specification, + [49804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(2043), 1, + sym_aspect_specification, + [49817] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 1, + anon_sym_COMMA, + ACTIONS(4156), 1, + anon_sym_RPAREN, + STATE(1351), 1, + aux_sym_actual_parameter_part_repeat1, + [49830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4158), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49839] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4160), 1, + anon_sym_SEMI, + STATE(1794), 1, + sym_aspect_specification, + [49852] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4162), 1, + anon_sym_COMMA, + ACTIONS(4165), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_pragma_g_repeat1, + [49865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [49874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 3, + aux_sym__package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [49883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(526), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(590), 1, + aux_sym_value_sequence_token1, + STATE(2034), 1, + sym_iterated_element_association, + [49896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4171), 1, + anon_sym_SEMI, + STATE(2035), 1, + sym_aspect_specification, + [49909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4173), 1, + anon_sym_SEMI, + STATE(2037), 1, + sym_aspect_specification, + [49922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4175), 1, + aux_sym__package_specification_token2, + STATE(1793), 1, + sym_aspect_specification, + [49935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [49944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_pragma_g_repeat1, + [49957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, + sym_identifier, + STATE(2027), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [49968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(3543), 1, + anon_sym_SEMI, + STATE(1801), 1, + sym_aspect_specification, + [49981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 3, + anon_sym_RPAREN, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [49990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4185), 1, + anon_sym_SEMI, + STATE(1797), 1, + sym_aspect_specification, + [50003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4193), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49933] = 4, + [50039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(3483), 1, - anon_sym_SEMI, - STATE(1968), 1, - sym_aspect_specification, - [49946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4195), 1, - anon_sym_COMMA, - ACTIONS(4197), 1, - anon_sym_RBRACK, - STATE(1178), 1, - aux_sym_positional_array_aggregate_repeat1, - [49959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4199), 3, + ACTIONS(4195), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49968] = 2, + [50048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4203), 1, - anon_sym_SEMI, - STATE(1974), 1, - sym_aspect_specification, - [49990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, - anon_sym_COMMA, - ACTIONS(4208), 1, - anon_sym_RPAREN, - STATE(1387), 1, - aux_sym_case_expression_repeat1, - [50003] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4127), 1, + ACTIONS(4197), 1, + anon_sym_EQ_GT, + ACTIONS(4199), 1, anon_sym_PIPE, - ACTIONS(4210), 1, - anon_sym_EQ_GT, - STATE(1257), 1, - aux_sym_discrete_choice_list_repeat1, - [50016] = 4, + STATE(1372), 1, + aux_sym_exception_choice_list_repeat1, + [50061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - STATE(1460), 1, - sym_record_definition, - [50029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 1, - anon_sym_COMMA, - ACTIONS(4212), 1, - anon_sym_RPAREN, - STATE(1244), 1, - aux_sym_record_component_association_list_repeat2, - [50042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(4214), 1, - anon_sym_SEMI, - STATE(1970), 1, + ACTIONS(4202), 1, + aux_sym__package_specification_token2, + STATE(1628), 1, sym_aspect_specification, - [50055] = 2, + [50074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [50064] = 4, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4204), 1, + aux_sym__package_specification_token2, + STATE(2080), 1, + sym_aspect_specification, + [50087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(4206), 3, anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50096] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + STATE(1494), 1, + sym_record_definition, + [50109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + aux_sym_primary_null_token1, + ACTIONS(1961), 1, + aux_sym_record_component_association_list_token1, + STATE(1483), 1, + sym_record_definition, + [50122] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3580), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3590), 1, + aux_sym_allocator_token1, + [50135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [50144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4210), 1, + anon_sym_SEMI, + STATE(1735), 1, + sym_aspect_specification, + [50157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4212), 1, + anon_sym_SEMI, + ACTIONS(4214), 1, + aux_sym_with_clause_token1, + [50170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4216), 1, + anon_sym_SEMI, + STATE(1740), 1, + sym_aspect_specification, + [50183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, ACTIONS(4218), 1, - anon_sym_RPAREN, - STATE(1296), 1, - aux_sym_discriminant_specification_list_repeat1, - [50077] = 4, + anon_sym_SEMI, + STATE(2062), 1, + sym_aspect_specification, + [50196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 1, + sym_identifier, + STATE(2134), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [50207] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4220), 1, - anon_sym_RPAREN, - ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4222), 2, anon_sym_SEMI, - STATE(1249), 1, - aux_sym__parameter_specification_list_repeat1, - [50090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, aux_sym_with_clause_token2, + [50218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2077), 1, + anon_sym_PIPE, ACTIONS(4224), 1, - anon_sym_SEMI, - STATE(1965), 1, - sym_aspect_specification, - [50103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4216), 3, - aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [50112] = 4, + STATE(1431), 1, + aux_sym_component_choice_list_repeat1, + [50231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 1, - anon_sym_COMMA, + ACTIONS(3551), 1, + aux_sym_allocator_token1, ACTIONS(4226), 1, - anon_sym_RPAREN, - STATE(1259), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [50125] = 2, + aux_sym_with_clause_token1, + ACTIONS(4228), 1, + aux_sym_private_type_declaration_token2, + [50244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 3, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4230), 1, + anon_sym_SEMI, + STATE(1618), 1, + sym_aspect_specification, + [50257] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4232), 1, + anon_sym_SEMI, + STATE(1736), 1, + sym_aspect_specification, + [50270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4234), 1, + anon_sym_SEMI, + STATE(2064), 1, + sym_aspect_specification, + [50283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4236), 1, + anon_sym_SEMI, + STATE(1724), 1, + sym_aspect_specification, + [50296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [50134] = 4, + [50305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4006), 1, - anon_sym_COMMA, - ACTIONS(4230), 1, - anon_sym_RPAREN, - STATE(1351), 1, - aux_sym_pragma_g_repeat1, - [50147] = 3, + ACTIONS(4181), 1, + sym_identifier, + STATE(1538), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [50316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, - aux_sym_iterator_filter_token1, - STATE(1177), 2, - sym_exception_handler, - aux_sym_handled_sequence_of_statements_repeat1, - [50158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 1, - anon_sym_COMMA, - ACTIONS(4232), 1, - anon_sym_RPAREN, - STATE(1274), 1, - aux_sym__index_subtype_definition_list_repeat1, - [50171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_COMMA, - ACTIONS(4234), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_positional_array_aggregate_repeat1, - [50184] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4236), 1, - anon_sym_EQ_GT, - STATE(1334), 1, - aux_sym_exception_choice_list_repeat1, - [50197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4238), 1, - anon_sym_SEMI, - STATE(1674), 1, - sym_aspect_specification, - [50210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, + ACTIONS(526), 1, + aux_sym_iterated_element_association_token1, ACTIONS(4240), 1, - anon_sym_SEMI, - STATE(1675), 1, - sym_aspect_specification, - [50223] = 4, + anon_sym_LPAREN, + STATE(1853), 1, + sym_iterated_element_association, + [50329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, ACTIONS(4242), 1, - anon_sym_SEMI, - STATE(1616), 1, + anon_sym_RPAREN, + STATE(2068), 1, sym_aspect_specification, - [50236] = 4, + [50342] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4244), 1, - anon_sym_COMMA, - ACTIONS(4247), 1, - anon_sym_COLON, - STATE(1407), 1, - aux_sym__defining_identifier_list_repeat1, - [50249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(4252), 1, anon_sym_RPAREN, - STATE(1408), 1, - aux_sym_global_aspect_definition_repeat1, - [50262] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4254), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [50271] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3190), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3195), 1, - anon_sym_COLON, - ACTIONS(3197), 1, - aux_sym_iterator_specification_token1, - [50284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 1, - sym_identifier, - STATE(2139), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [50295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4256), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [50304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4258), 1, - aux_sym__package_specification_token2, - STATE(1830), 1, - sym_aspect_specification, - [50317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3134), 1, - anon_sym_COMMA, - ACTIONS(3863), 1, + ACTIONS(4246), 1, anon_sym_SEMI, - STATE(1137), 1, - aux_sym__name_list_repeat1, - [50330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4260), 1, - anon_sym_SEMI, - STATE(1721), 1, - sym_aspect_specification, - [50343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4262), 1, - anon_sym_SEMI, - STATE(1903), 1, - sym_aspect_specification, - [50356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4264), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [50365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1866), 1, - anon_sym_PIPE, - ACTIONS(4266), 1, - anon_sym_EQ_GT, - STATE(1287), 1, - aux_sym_component_choice_list_repeat1, - [50378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, - aux_sym_with_clause_token2, - ACTIONS(4268), 1, - anon_sym_SEMI, - STATE(1715), 1, - sym_aspect_specification, - [50391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1904), 1, - aux_sym_attribute_designator_token1, - STATE(1326), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [50402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4270), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [50411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_COMMA, - ACTIONS(4275), 1, - anon_sym_RPAREN, - STATE(1422), 1, - aux_sym__enumeration_literal_list_repeat1, - [50424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4222), 1, - anon_sym_SEMI, - ACTIONS(4277), 1, - anon_sym_RPAREN, - STATE(1394), 1, + STATE(1430), 1, aux_sym__parameter_specification_list_repeat1, - [50437] = 2, + [50355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 3, + ACTIONS(4248), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [50446] = 4, + [50364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 1, + ACTIONS(4250), 1, anon_sym_COMMA, - ACTIONS(4284), 1, + ACTIONS(4253), 1, anon_sym_RPAREN, - STATE(1425), 1, - aux_sym_actual_parameter_part_repeat1, - [50459] = 4, + STATE(1398), 1, + aux_sym__enumeration_literal_list_repeat1, + [50377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 1, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_COLON, + STATE(1317), 1, + aux_sym__defining_identifier_list_repeat1, + [50390] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + anon_sym_COMMA, + ACTIONS(4257), 1, anon_sym_RPAREN, - ACTIONS(4288), 1, - anon_sym_SEMI, - STATE(1426), 1, - aux_sym_discriminant_specification_list_repeat1, - [50472] = 2, + STATE(1265), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [50403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 3, - aux_sym__package_specification_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [50481] = 2, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4259), 1, + aux_sym__package_specification_token2, + STATE(1730), 1, + sym_aspect_specification, + [50416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 3, + ACTIONS(4261), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, + [50425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3944), 1, + anon_sym_PIPE, + ACTIONS(4263), 1, + anon_sym_EQ_GT, + STATE(1262), 1, + aux_sym_exception_choice_list_repeat1, + [50438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4130), 1, + anon_sym_COMMA, + ACTIONS(4265), 1, + anon_sym_RPAREN, + STATE(1255), 1, + aux_sym__index_subtype_definition_list_repeat1, + [50451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4267), 1, + anon_sym_SEMI, + STATE(1677), 1, + sym_aspect_specification, + [50464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4269), 1, + anon_sym_SEMI, + STATE(1678), 1, + sym_aspect_specification, + [50477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4271), 1, + aux_sym__package_specification_token2, + STATE(2109), 1, + sym_aspect_specification, [50490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(4295), 1, - anon_sym_RPAREN, - STATE(1294), 1, - aux_sym_global_aspect_definition_repeat1, - [50503] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2310), 1, + ACTIONS(2381), 1, aux_sym_with_clause_token2, - ACTIONS(4297), 1, - aux_sym__package_specification_token2, - STATE(2058), 1, - sym_aspect_specification, - [50516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 3, + ACTIONS(4273), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [50525] = 2, + STATE(2085), 1, + sym_aspect_specification, + [50503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 3, + ACTIONS(3858), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, + [50512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4275), 1, + anon_sym_EQ_GT, + ACTIONS(4277), 1, + anon_sym_PIPE, + STATE(1410), 1, + aux_sym_discrete_choice_list_repeat1, + [50525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4280), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, [50534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 2, + ACTIONS(4282), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [50542] = 3, + anon_sym_RBRACK, + [50543] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3787), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [50552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4284), 1, + anon_sym_SEMI, + STATE(2138), 1, + sym_aspect_specification, + [50565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1939), 1, + aux_sym_attribute_designator_token1, + STATE(1368), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [50576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4286), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [50585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + sym_identifier, + ACTIONS(4290), 1, + aux_sym_use_clause_token2, + ACTIONS(4292), 1, + aux_sym_package_body_token1, + [50598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 1, + anon_sym_COMMA, + ACTIONS(4294), 1, + anon_sym_RPAREN, + STATE(1268), 1, + aux_sym_global_aspect_definition_repeat1, + [50611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_RPAREN, + STATE(1419), 1, + aux_sym_record_component_association_list_repeat2, + [50624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 1, + sym_identifier, ACTIONS(4303), 1, - sym_identifier, + aux_sym_use_clause_token2, ACTIONS(4305), 1, - anon_sym_SEMI, - [50552] = 3, + aux_sym_package_body_token1, + [50637] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2073), 1, + anon_sym_EQ_GT, + ACTIONS(2077), 1, + anon_sym_PIPE, + STATE(1386), 1, + aux_sym_component_choice_list_repeat1, + [50650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3973), 1, + anon_sym_COMMA, ACTIONS(4307), 1, - sym_identifier, - STATE(483), 1, - sym_reduction_attribute_designator, - [50562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4309), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50570] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4311), 2, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - [50578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 1, - aux_sym_with_clause_token2, - STATE(1443), 1, - sym_record_extension_part, - [50588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4315), 1, - aux_sym_with_clause_token2, - STATE(1531), 1, - sym_record_extension_part, - [50598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3475), 1, - anon_sym_SEMI, - ACTIONS(4151), 1, - aux_sym__package_specification_token2, - [50608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4317), 1, - anon_sym_COMMA, - STATE(1178), 1, - aux_sym_positional_array_aggregate_repeat1, - [50618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 2, - anon_sym_COMMA, - anon_sym_COLON, - [50626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4319), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50634] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4321), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4323), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [50650] = 2, + STATE(1273), 1, + aux_sym_record_component_association_list_repeat1, + [50663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 2, + ACTIONS(4309), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [50672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4311), 1, + anon_sym_SEMI, + STATE(1703), 1, + sym_aspect_specification, + [50685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [50694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + sym_identifier, + STATE(1600), 1, + sym_parameter_specification, + STATE(2057), 1, + sym__defining_identifier_list, + [50707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [50716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2381), 1, + aux_sym_with_clause_token2, + ACTIONS(4315), 1, + anon_sym_SEMI, + STATE(1935), 1, + sym_aspect_specification, + [50729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3977), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(1274), 1, + aux_sym_positional_array_aggregate_repeat1, + [50742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 1, + anon_sym_SEMI, + ACTIONS(4319), 1, + anon_sym_RPAREN, + STATE(1240), 1, + aux_sym__parameter_specification_list_repeat1, + [50755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 1, + anon_sym_EQ_GT, + ACTIONS(4323), 1, + anon_sym_PIPE, + STATE(1431), 1, + aux_sym_component_choice_list_repeat1, + [50768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4100), 1, + anon_sym_SEMI, + ACTIONS(4326), 1, + anon_sym_RPAREN, + STATE(1330), 1, + aux_sym_discriminant_specification_list_repeat1, + [50781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(4328), 1, + anon_sym_RPAREN, + STATE(1260), 1, + aux_sym_index_constraint_repeat1, + [50794] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1149), 1, + aux_sym__name_list_repeat1, + ACTIONS(4063), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + anon_sym_COMMA, + ACTIONS(4330), 1, + anon_sym_RPAREN, + STATE(1257), 1, + aux_sym_discriminant_constraint_repeat1, + [50818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4332), 1, + sym_identifier, + ACTIONS(4334), 1, + anon_sym_SEMI, + [50828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [50658] = 2, + [50836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 2, + ACTIONS(4338), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50666] = 3, + [50844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4325), 1, - sym_identifier, - ACTIONS(4327), 1, - anon_sym_SEMI, - [50676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(4331), 1, - anon_sym_EQ_GT, - [50686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4333), 1, - sym_identifier, - ACTIONS(4335), 1, - anon_sym_SEMI, - [50696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4337), 1, - aux_sym_with_clause_token1, - [50706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4339), 2, - sym_identifier, - sym_string_literal, - [50714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4341), 1, - sym_identifier, - ACTIONS(4343), 1, - anon_sym_SEMI, - [50724] = 3, + ACTIONS(4340), 1, + anon_sym_COMMA, + ACTIONS(4342), 1, + anon_sym_RPAREN, + [50854] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4345), 1, - sym_identifier, + aux_sym_compilation_unit_token1, ACTIONS(4347), 1, - anon_sym_SEMI, - [50734] = 2, + aux_sym_with_clause_token2, + [50864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4349), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50742] = 3, + [50872] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4351), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(4353), 1, - aux_sym__package_specification_token2, - [50752] = 2, + anon_sym_SEMI, + [50882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4355), 2, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [50760] = 3, + aux_sym_with_clause_token2, + [50890] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4357), 1, - anon_sym_SEMI, - ACTIONS(4359), 1, - aux_sym__package_specification_token2, - [50770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4362), 1, - aux_sym_with_clause_token2, - ACTIONS(4364), 1, - aux_sym_expression_token1, - [50780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4366), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - sym_identifier, - ACTIONS(4370), 1, - anon_sym_SEMI, - [50798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 1, - sym_identifier, - ACTIONS(4374), 1, - anon_sym_SEMI, - [50808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4378), 1, - aux_sym_access_to_subprogram_definition_token3, - [50818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4380), 1, - sym_identifier, - ACTIONS(4382), 1, - anon_sym_SEMI, - [50828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(528), 1, - aux_sym_iterated_element_association_token1, - STATE(1653), 1, - sym_iterated_element_association, - [50838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 1, - sym_identifier, - ACTIONS(4386), 1, - anon_sym_SEMI, - [50848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4388), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2926), 1, - aux_sym_result_profile_token1, - STATE(888), 1, - sym_result_profile, - [50866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3328), 1, - aux_sym_allocator_token1, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - [50876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4390), 2, aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - [50884] = 2, + STATE(1267), 1, + sym_case_expression_alternative, + [50900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 2, + ACTIONS(4359), 1, + sym_identifier, + ACTIONS(4361), 1, + anon_sym_SEMI, + [50910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 1, + sym_identifier, + ACTIONS(4365), 1, + anon_sym_SEMI, + [50920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4369), 1, + anon_sym_SEMI, + [50930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4371), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_SEMI, + [50940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3303), 1, + aux_sym_allocator_token1, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + [50950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4375), 1, + sym_identifier, + ACTIONS(4377), 1, + anon_sym_SEMI, + [50960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3878), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym_RPAREN, + [50970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 1, + sym_identifier, + ACTIONS(4381), 1, + anon_sym_SEMI, + [50980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 1, + sym_identifier, + ACTIONS(4385), 1, + anon_sym_SEMI, + [50990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_SEMI, + [51000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 1, + sym_identifier, + ACTIONS(4393), 1, + anon_sym_SEMI, + [51010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 1, + sym_identifier, + ACTIONS(4397), 1, + anon_sym_SEMI, + [51020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50892] = 2, + [51028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 2, - anon_sym_RPAREN, + ACTIONS(4401), 1, + sym_identifier, + ACTIONS(4403), 1, anon_sym_SEMI, - [50900] = 2, + [51038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 2, + ACTIONS(4405), 1, + sym_identifier, + ACTIONS(4407), 1, + anon_sym_SEMI, + [51048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50908] = 2, + [51056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [50916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4394), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50924] = 2, + ACTIONS(3353), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4275), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4396), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4400), 1, anon_sym_EQ_GT, - ACTIONS(4403), 1, anon_sym_PIPE, - [50958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [50982] = 3, + [51072] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4409), 1, + sym_identifier, ACTIONS(4411), 1, - aux_sym_with_clause_token2, - STATE(1533), 1, - sym_record_extension_part, - [50992] = 3, + anon_sym_SEMI, + [51082] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4413), 1, - sym_identifier, - ACTIONS(4415), 1, anon_sym_SEMI, - [51002] = 3, + ACTIONS(4415), 1, + aux_sym_accept_statement_token2, + [51092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + sym_identifier, + ACTIONS(4290), 1, + aux_sym_use_clause_token2, + [51102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3696), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51110] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4417), 1, sym_identifier, ACTIONS(4419), 1, anon_sym_SEMI, - [51012] = 2, + [51120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4421), 2, + ACTIONS(3694), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51020] = 3, + [51128] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4421), 1, + sym_identifier, ACTIONS(4423), 1, anon_sym_SEMI, - ACTIONS(4425), 1, - aux_sym_accept_statement_token2, - [51030] = 2, + [51138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [51038] = 2, + ACTIONS(4425), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3741), 2, + ACTIONS(4253), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [51046] = 3, + [51154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 1, + ACTIONS(4427), 1, sym_identifier, - ACTIONS(4431), 1, + ACTIONS(4429), 1, anon_sym_SEMI, - [51056] = 2, + [51164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [51064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 1, - aux_sym_with_clause_token2, - ACTIONS(4437), 1, - aux_sym_expression_token1, - [51074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 2, + ACTIONS(4431), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51082] = 2, + [51172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 1, + sym_identifier, + ACTIONS(4435), 1, + anon_sym_SEMI, + [51182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + STATE(2072), 1, + sym_entry_barrier, + [51192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4301), 1, + sym_identifier, + ACTIONS(4303), 1, + aux_sym_use_clause_token2, + [51202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + anon_sym_SEMI, + ACTIONS(4439), 1, + aux_sym__package_specification_token2, + [51212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4441), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [51090] = 2, + aux_sym_with_clause_token2, + [51220] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [51098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [51106] = 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4445), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [51114] = 2, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + [51236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 1, anon_sym_SEMI, - ACTIONS(3799), 1, - aux_sym__package_specification_token2, - [51132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4286), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [51140] = 3, + aux_sym_with_clause_token2, + [51244] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4449), 1, - aux_sym_compilation_unit_token1, + sym_identifier, ACTIONS(4451), 1, - aux_sym_with_clause_token2, - [51150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3661), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [51158] = 2, + [51254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4453), 2, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [51166] = 3, + aux_sym_with_clause_token2, + [51262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3771), 1, - aux_sym_allocator_token1, - [51176] = 2, + ACTIONS(4455), 1, + aux_sym_with_clause_token2, + STATE(1587), 1, + sym_record_extension_part, + [51272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [51184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - aux_sym_iterator_filter_token1, - STATE(1906), 1, - sym_entry_barrier, - [51194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 2, + ACTIONS(4457), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51202] = 2, + [51280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [51210] = 3, + ACTIONS(3537), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3613), 1, + aux_sym_allocator_token1, + [51290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4457), 1, - sym_identifier, ACTIONS(4459), 1, - anon_sym_SEMI, - [51220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51228] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3726), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [51236] = 3, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(4461), 1, - sym_identifier, - ACTIONS(4463), 1, anon_sym_SEMI, - [51246] = 3, + [51300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 2, + sym_identifier, + sym_string_literal, + [51308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4465), 1, - aux_sym_expression_token3, ACTIONS(4467), 1, - aux_sym_expression_token4, - [51256] = 3, - ACTIONS(3), 1, - sym_comment, + aux_sym__package_specification_token3, ACTIONS(4469), 1, - sym_identifier, - ACTIONS(4471), 1, - anon_sym_SEMI, - [51266] = 3, + aux_sym_exception_declaration_token1, + [51334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(2531), 2, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + [51342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + STATE(2041), 1, + sym_entry_barrier, + [51352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4471), 2, + anon_sym_SEMI, aux_sym_with_clause_token2, - STATE(1533), 1, - sym_record_extension_part, - [51276] = 3, + [51360] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4473), 1, - anon_sym_SEMI, + aux_sym_with_clause_token2, ACTIONS(4475), 1, + aux_sym_expression_token1, + [51370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3672), 2, + anon_sym_SEMI, aux_sym_accept_statement_token2, - [51286] = 3, + [51378] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4477), 1, - anon_sym_LPAREN, - ACTIONS(4479), 1, - anon_sym_SEMI, - [51296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3947), 1, - sym_identifier, - ACTIONS(3949), 1, - aux_sym_use_clause_token2, - [51306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3941), 1, - sym_identifier, - ACTIONS(3943), 1, - aux_sym_use_clause_token2, - [51316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4481), 1, aux_sym_with_clause_token2, - ACTIONS(4483), 1, - aux_sym_expression_token1, - [51326] = 2, + STATE(1499), 1, + sym_record_extension_part, + [51388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 1, - anon_sym_COMMA, - ACTIONS(4485), 1, - anon_sym_RBRACK, - [51344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - aux_sym__package_specification_token3, - ACTIONS(360), 1, - aux_sym_subprogram_body_token1, - [51354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 1, - aux_sym__package_specification_token3, - ACTIONS(4490), 1, - aux_sym_subprogram_body_token1, - [51364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - aux_sym_iterator_filter_token1, - STATE(1760), 1, - sym_entry_barrier, - [51374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4492), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51382] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [51390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3590), 1, + aux_sym_allocator_token1, [51398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4479), 2, anon_sym_SEMI, aux_sym_with_clause_token2, [51406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, + ACTIONS(4481), 1, sym_identifier, - ACTIONS(4502), 1, + ACTIONS(4483), 1, anon_sym_SEMI, - [51416] = 2, + [51416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 2, + ACTIONS(4485), 1, + sym_identifier, + ACTIONS(4487), 1, + anon_sym_SEMI, + [51426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, + anon_sym_SEMI, + [51436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4493), 1, + sym_identifier, + ACTIONS(4495), 1, + anon_sym_SEMI, + [51446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + anon_sym_SEMI, + ACTIONS(4499), 1, + aux_sym_accept_statement_token2, + [51456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51424] = 3, + [51464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 1, - aux_sym_with_clause_token2, - STATE(1531), 1, - sym_record_extension_part, - [51434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 2, + ACTIONS(4503), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51442] = 2, + [51472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(4505), 1, + aux_sym_expression_token3, + ACTIONS(4507), 1, + aux_sym_expression_token4, + [51482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 1, + sym_identifier, + ACTIONS(4511), 1, + anon_sym_SEMI, + [51492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [51450] = 3, + [51500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3282), 1, + ACTIONS(4513), 2, aux_sym_iterator_filter_token1, - STATE(2038), 1, - sym_entry_barrier, - [51460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3558), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [51468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_SEMI, - ACTIONS(4510), 1, - aux_sym__package_specification_token2, - [51478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - aux_sym_with_clause_token2, - STATE(1443), 1, - sym_record_extension_part, - [51488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - sym_identifier, - ACTIONS(4516), 1, - anon_sym_SEMI, - [51498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3597), 1, - aux_sym_allocator_token1, + aux_sym__package_specification_token3, [51508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [51516] = 3, + ACTIONS(4197), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4522), 1, - aux_sym_iterator_specification_token1, - [51526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4524), 2, + ACTIONS(4515), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51534] = 2, + [51524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 2, + ACTIONS(4517), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [51542] = 2, + [51532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(4519), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + [51540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4523), 1, + aux_sym_access_to_subprogram_definition_token3, [51550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 2, + ACTIONS(3819), 2, anon_sym_RPAREN, anon_sym_SEMI, [51558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4525), 2, anon_sym_RPAREN, anon_sym_SEMI, [51566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4527), 2, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + [51574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 1, + sym_identifier, + STATE(484), 1, + sym_reduction_attribute_designator, + [51584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, + aux_sym_with_clause_token2, + STATE(1525), 1, + sym_record_extension_part, + [51594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [51602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 1, + aux_sym_chunk_specification_token1, + ACTIONS(4535), 1, + aux_sym_iterator_specification_token1, + [51612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 1, + sym_identifier, + ACTIONS(4539), 1, + anon_sym_SEMI, + [51622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 1, + aux_sym_with_clause_token2, + STATE(1499), 1, + sym_record_extension_part, + [51632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4543), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51574] = 2, + [51640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [51590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 1, + ACTIONS(4545), 2, anon_sym_SEMI, - ACTIONS(4538), 1, - aux_sym__package_specification_token2, - [51600] = 3, + aux_sym_accept_statement_token2, + [51648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, - aux_sym__package_specification_token3, - ACTIONS(4542), 1, - aux_sym_exception_declaration_token1, - [51610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4546), 1, - aux_sym_with_clause_token1, - [51620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4054), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 1, - sym_identifier, - ACTIONS(4552), 1, + ACTIONS(3642), 2, anon_sym_SEMI, - [51646] = 3, + aux_sym_accept_statement_token2, + [51656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(3289), 1, aux_sym_iterator_filter_token1, - STATE(1271), 1, - sym_case_expression_alternative, - [51656] = 2, + STATE(1763), 1, + sym_entry_barrier, + [51666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, - sym_identifier, - ACTIONS(4560), 1, + ACTIONS(4547), 2, anon_sym_SEMI, + aux_sym_with_clause_token2, [51674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3642), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, [51682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 2, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - [51690] = 2, + ACTIONS(4549), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 2, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3901), 1, + aux_sym__package_specification_token2, + [51700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4551), 1, + sym_identifier, + ACTIONS(4553), 1, + anon_sym_SEMI, + [51710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 2, + anon_sym_COMMA, + anon_sym_COLON, + [51718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4554), 1, - aux_sym_iterator_filter_token1, - STATE(1473), 1, - sym_case_expression_alternative, - [51708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4568), 2, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - [51716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 1, - aux_sym_iterator_filter_token1, - STATE(2069), 1, - sym_entry_barrier, [51726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - sym_identifier, - ACTIONS(4572), 1, - anon_sym_SEMI, + ACTIONS(406), 1, + aux_sym__package_specification_token3, + ACTIONS(408), 1, + aux_sym_subprogram_body_token1, [51736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 2, + ACTIONS(3866), 2, anon_sym_RPAREN, anon_sym_SEMI, [51744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, - sym_identifier, - ACTIONS(4578), 1, - anon_sym_SEMI, + ACTIONS(4555), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(4557), 1, + anon_sym_EQ_GT, [51754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 2, - aux_sym_iterator_filter_token1, - aux_sym__package_specification_token3, - [51762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 2, - anon_sym_COMMA, + ACTIONS(3573), 2, anon_sym_RPAREN, - [51770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3996), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(4583), 1, - anon_sym_RPAREN, - [51788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4586), 1, - sym_identifier, - ACTIONS(4588), 1, anon_sym_SEMI, - [51798] = 3, + [51762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2451), 1, + ACTIONS(4559), 1, + sym_identifier, + ACTIONS(4561), 1, + anon_sym_SEMI, + [51772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(526), 1, + aux_sym_iterated_element_association_token1, + STATE(1845), 1, + sym_iterated_element_association, + [51782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4563), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [51790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2453), 1, + ACTIONS(4567), 1, aux_sym_access_to_subprogram_definition_token3, - [51808] = 2, + [51800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 1, + aux_sym__package_specification_token3, + ACTIONS(4571), 1, + aux_sym_subprogram_body_token1, + [51810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [51818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4575), 1, + anon_sym_SEMI, + ACTIONS(4577), 1, + aux_sym__package_specification_token2, + [51836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4579), 1, + sym_identifier, + ACTIONS(4581), 1, + anon_sym_SEMI, + [51846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2486), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2488), 1, + aux_sym_access_to_subprogram_definition_token3, + [51856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4583), 1, + anon_sym_SEMI, + ACTIONS(4585), 1, + aux_sym__package_specification_token2, + [51866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4140), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [51890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4590), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [51816] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + [51898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4594), 1, - aux_sym_access_to_subprogram_definition_token3, - [51826] = 3, + ACTIONS(4592), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4594), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4126), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51930] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4596), 1, sym_identifier, ACTIONS(4598), 1, anon_sym_SEMI, - [51836] = 3, + [51940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, + ACTIONS(4600), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [51948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 2, anon_sym_COMMA, - ACTIONS(4602), 1, anon_sym_RPAREN, - [51846] = 2, + [51956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 2, + ACTIONS(4604), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51854] = 3, + [51964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 1, - sym_identifier, - ACTIONS(4609), 1, - anon_sym_SEMI, - [51864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 1, + ACTIONS(4606), 1, anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RPAREN, - [51874] = 3, + STATE(1228), 1, + aux_sym_positional_array_aggregate_repeat1, + [51974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 1, - sym_identifier, - ACTIONS(4613), 1, - anon_sym_SEMI, - [51884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - sym_identifier, - ACTIONS(4617), 1, - anon_sym_SEMI, - [51894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - sym_identifier, - ACTIONS(4621), 1, - anon_sym_SEMI, - [51904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 2, + ACTIONS(4004), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51912] = 3, + [51982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, - sym_identifier, - ACTIONS(4625), 1, - anon_sym_SEMI, - [51922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4627), 1, - sym_identifier, - ACTIONS(4629), 1, - anon_sym_SEMI, - [51932] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4631), 1, - sym_identifier, - ACTIONS(4633), 1, - anon_sym_SEMI, - [51942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 2, - sym_identifier, - sym_string_literal, - [51950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4637), 1, - sym_identifier, - ACTIONS(4639), 1, - anon_sym_SEMI, - [51960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4641), 1, - sym_identifier, - ACTIONS(4643), 1, - anon_sym_SEMI, - [51970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4645), 2, + ACTIONS(4608), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51978] = 3, + [51990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(4357), 1, + aux_sym_iterator_filter_token1, + STATE(1564), 1, + sym_case_expression_alternative, + [52000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2941), 1, + aux_sym_result_profile_token1, + STATE(892), 1, + sym_result_profile, + [52010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4610), 2, anon_sym_SEMI, - ACTIONS(4649), 1, - aux_sym__package_specification_token2, - [51988] = 2, + aux_sym_with_clause_token2, + [52018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 2, + ACTIONS(4612), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4614), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 1, + aux_sym_with_clause_token2, + ACTIONS(4618), 1, + aux_sym_expression_token1, + [52044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4653), 1, - sym_identifier, - ACTIONS(4655), 1, - anon_sym_SEMI, - [52006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4657), 1, - anon_sym_SEMI, - ACTIONS(4659), 1, - aux_sym_accept_statement_token2, - [52016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3899), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [52040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4665), 1, - sym_identifier, - ACTIONS(4667), 1, - anon_sym_SEMI, - [52050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 1, - sym_identifier, - ACTIONS(4671), 1, - anon_sym_SEMI, [52060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 2, + ACTIONS(4096), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [52068] = 2, + [52068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [52076] = 2, + ACTIONS(3289), 1, + aux_sym_iterator_filter_token1, + STATE(1909), 1, + sym_entry_barrier, + [52078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [52084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4673), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [52092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 2, + ACTIONS(4623), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [52100] = 3, + [52086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 1, - sym_identifier, - ACTIONS(4677), 1, + ACTIONS(4625), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4627), 1, + aux_sym_with_clause_token1, + [52096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 1, anon_sym_SEMI, - [52110] = 2, + ACTIONS(4631), 1, + aux_sym__package_specification_token2, + [52106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52118] = 2, + ACTIONS(4633), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [52114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 2, + ACTIONS(3707), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4635), 1, + aux_sym_with_clause_token1, + [52124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 1, + aux_sym_with_clause_token2, + STATE(1587), 1, + sym_record_extension_part, + [52134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4637), 2, + aux_sym_iterator_filter_token1, + aux_sym__package_specification_token3, + [52142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + aux_sym_with_clause_token2, + ACTIONS(4641), 1, + aux_sym_expression_token1, + [52152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4643), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [52126] = 3, + [52160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 1, - sym_identifier, - ACTIONS(4683), 1, + ACTIONS(4645), 2, anon_sym_SEMI, - [52136] = 2, + aux_sym_with_clause_token2, + [52168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + anon_sym_SEMI, + [52178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4651), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [52186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + aux_sym_with_clause_token2, + STATE(1525), 1, + sym_record_extension_part, + [52196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4655), 1, + sym_identifier, + ACTIONS(4657), 1, + anon_sym_SEMI, + [52206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + anon_sym_COMMA, + ACTIONS(4659), 1, + anon_sym_RBRACK, + [52216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [52224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3752), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4664), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4666), 1, + sym_identifier, + ACTIONS(4668), 1, + anon_sym_SEMI, + [52250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4670), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [52258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, + sym_identifier, + ACTIONS(4674), 1, + anon_sym_SEMI, + [52268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_SEMI, + ACTIONS(4678), 1, + aux_sym__package_specification_token2, + [52278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4680), 1, + sym_identifier, + ACTIONS(4682), 1, + anon_sym_SEMI, + [52288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4684), 2, anon_sym_COMMA, anon_sym_RPAREN, - [52144] = 2, + [52296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, - aux_sym_interface_type_definition_token2, - [52151] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4687), 1, - aux_sym_iterator_specification_token1, - [52158] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4689), 1, + ACTIONS(3888), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [52165] = 2, + [52304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, + ACTIONS(3650), 1, anon_sym_SEMI, - [52172] = 2, + ACTIONS(3652), 1, + aux_sym__package_specification_token2, + [52314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3882), 2, anon_sym_SEMI, - [52179] = 2, + aux_sym_accept_statement_token2, + [52322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4693), 1, - aux_sym_iterated_element_association_token2, - [52186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4695), 1, - aux_sym_iterated_element_association_token2, - [52193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4697), 1, + ACTIONS(4686), 1, + sym_identifier, + ACTIONS(4688), 1, anon_sym_SEMI, - [52200] = 2, + [52332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - anon_sym_LPAREN, - [52207] = 2, + ACTIONS(4690), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4701), 1, - aux_sym_compilation_unit_token1, - [52214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4703), 1, - anon_sym_DOT_DOT, - [52221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3391), 1, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4694), 1, anon_sym_SEMI, - [52228] = 2, + [52350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [52358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_PIPE, + ACTIONS(4696), 1, + anon_sym_EQ_GT, + [52376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4699), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 2, + sym_identifier, + sym_string_literal, + [52392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4703), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52400] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4705), 1, anon_sym_SEMI, - [52235] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(4707), 1, - anon_sym_SEMI, - [52242] = 2, + aux_sym_accept_statement_token2, + [52410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, - aux_sym_subprogram_body_token1, - [52249] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3876), 1, - anon_sym_SEMI, - [52256] = 2, + ACTIONS(4709), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4711), 1, - aux_sym_attribute_designator_token4, - [52263] = 2, + anon_sym_RPAREN, + [52425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4713), 1, - anon_sym_LPAREN, - [52270] = 2, + anon_sym_SEMI, + [52432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4715), 1, - anon_sym_SEMI, - [52277] = 2, + aux_sym__package_specification_token3, + [52439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4717), 1, - aux_sym_if_expression_token1, - [52284] = 2, + anon_sym_SEMI, + [52446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4719), 1, - aux_sym_component_list_token1, - [52291] = 2, + anon_sym_SEMI, + [52453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4721), 1, - anon_sym_SEMI, - [52298] = 2, + anon_sym_LT_GT, + [52460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4723), 1, - aux_sym__package_specification_token3, - [52305] = 2, + anon_sym_SEMI, + [52467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4725), 1, - anon_sym_SEMI, - [52312] = 2, + aux_sym_compilation_unit_token1, + [52474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4727), 1, - aux_sym_compilation_unit_token1, - [52319] = 2, + anon_sym_SEMI, + [52481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3337), 1, + aux_sym_entry_declaration_token1, + [52488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4729), 1, - sym_identifier, - [52326] = 2, + aux_sym_with_clause_token2, + [52495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4731), 1, - aux_sym_subprogram_body_token1, - [52333] = 2, + aux_sym_compilation_unit_token1, + [52502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4733), 1, - anon_sym_LT_GT, - [52340] = 2, + aux_sym_with_clause_token2, + [52509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4735), 1, - anon_sym_EQ_GT, - [52347] = 2, + anon_sym_LPAREN, + [52516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4737), 1, - anon_sym_SEMI, - [52354] = 2, + aux_sym__package_specification_token2, + [52523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4739), 1, - anon_sym_SEMI, - [52361] = 2, + aux_sym_iterated_element_association_token2, + [52530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4741), 1, - anon_sym_SEMI, - [52368] = 2, + aux_sym_iterated_element_association_token2, + [52537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4743), 1, - anon_sym_EQ_GT, - [52375] = 2, + anon_sym_SEMI, + [52544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4745), 1, - aux_sym_asynchronous_select_token1, - [52382] = 2, + anon_sym_SEMI, + [52551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4747), 1, - aux_sym__package_specification_token3, - [52389] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3895), 1, anon_sym_RPAREN, - [52396] = 2, + [52558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4749), 1, - anon_sym_SEMI, - [52403] = 2, + anon_sym_EQ_GT, + [52565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, - anon_sym_RPAREN, - [52410] = 2, + anon_sym_SEMI, + [52572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4753), 1, anon_sym_SEMI, - [52417] = 2, + [52579] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4755), 1, - anon_sym_EQ_GT, - [52424] = 2, + aux_sym__package_specification_token2, + [52586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4757), 1, - anon_sym_RPAREN, - [52431] = 2, + anon_sym_SEMI, + [52593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4759), 1, - anon_sym_RBRACK, - [52438] = 2, + anon_sym_SEMI, + [52600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4761), 1, + anon_sym_EQ_GT, + [52607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3995), 1, anon_sym_SEMI, - [52445] = 2, + [52614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4763), 1, - aux_sym_if_expression_token1, - [52452] = 2, + anon_sym_RPAREN, + [52621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4765), 1, - aux_sym_if_expression_token1, - [52459] = 2, + anon_sym_SEMI, + [52628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4767), 1, - aux_sym_loop_statement_token1, - [52466] = 2, + aux_sym_if_expression_token1, + [52635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4769), 1, - anon_sym_SEMI, - [52473] = 2, + anon_sym_RPAREN, + [52642] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4771), 1, anon_sym_SEMI, - [52480] = 2, + [52649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4773), 1, - aux_sym_if_expression_token1, - [52487] = 2, + aux_sym__package_specification_token3, + [52656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4775), 1, - anon_sym_SEMI, - [52494] = 2, + anon_sym_EQ_GT, + [52663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4777), 1, - anon_sym_SEMI, - [52501] = 2, + anon_sym_EQ_GT, + [52670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4779), 1, - aux_sym__package_specification_token3, - [52508] = 2, + aux_sym_iterated_element_association_token2, + [52677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4781), 1, anon_sym_SEMI, - [52515] = 2, + [52684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4783), 1, - aux_sym_primary_null_token1, - [52522] = 2, + anon_sym_SEMI, + [52691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4785), 1, - aux_sym__package_specification_token3, - [52529] = 2, + aux_sym_loop_statement_token1, + [52698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4787), 1, - aux_sym_asynchronous_select_token2, - [52536] = 2, + aux_sym_asynchronous_select_token1, + [52705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4789), 1, - anon_sym_SEMI, - [52543] = 2, + aux_sym__package_specification_token3, + [52712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4791), 1, - anon_sym_COLON, - [52550] = 2, + anon_sym_SEMI, + [52719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4793), 1, - aux_sym_with_clause_token2, - [52557] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(344), 1, - aux_sym_subprogram_body_token1, - [52564] = 2, + anon_sym_SEMI, + [52726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4795), 1, anon_sym_SEMI, - [52571] = 2, + [52733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4797), 1, - aux_sym__package_specification_token3, - [52578] = 2, + aux_sym_asynchronous_select_token2, + [52740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4799), 1, - anon_sym_SEMI, - [52585] = 2, + anon_sym_RPAREN, + [52747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4801), 1, - anon_sym_SEMI, - [52592] = 2, + aux_sym_allocator_token1, + [52754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4803), 1, anon_sym_SEMI, - [52599] = 2, + [52761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4805), 1, - anon_sym_RPAREN, - [52606] = 2, + aux_sym_if_expression_token1, + [52768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4807), 1, - anon_sym_SEMI, - [52613] = 2, + aux_sym_if_expression_token1, + [52775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4809), 1, - anon_sym_SEMI, - [52620] = 2, + sym_identifier, + [52782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4811), 1, anon_sym_SEMI, - [52627] = 2, + [52789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4813), 1, - aux_sym_asynchronous_select_token1, - [52634] = 2, + anon_sym_SEMI, + [52796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4815), 1, - aux_sym__package_specification_token3, - [52641] = 2, + aux_sym_if_expression_token1, + [52803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3950), 1, + anon_sym_RPAREN, + [52810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4817), 1, - anon_sym_SEMI, - [52648] = 2, + aux_sym_asynchronous_select_token1, + [52817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4819), 1, - aux_sym_asynchronous_select_token2, - [52655] = 2, + anon_sym_EQ_GT, + [52824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4821), 1, - anon_sym_SEMI, - [52662] = 2, + anon_sym_RPAREN, + [52831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4823), 1, - anon_sym_RBRACK, - [52669] = 2, + aux_sym_asynchronous_select_token2, + [52838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4825), 1, - anon_sym_SEMI, - [52676] = 2, + aux_sym__package_specification_token3, + [52845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4827), 1, - anon_sym_RPAREN, - [52683] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - anon_sym_RPAREN, - [52690] = 2, + aux_sym__package_specification_token3, + [52852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4829), 1, aux_sym__package_specification_token3, - [52697] = 2, + [52859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4831), 1, - anon_sym_EQ_GT, - [52704] = 2, + anon_sym_SEMI, + [52866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4833), 1, anon_sym_SEMI, - [52711] = 2, + [52873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4835), 1, - anon_sym_SEMI, - [52718] = 2, + anon_sym_EQ_GT, + [52880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4837), 1, anon_sym_RPAREN, - [52725] = 2, + [52887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4839), 1, anon_sym_SEMI, - [52732] = 2, + [52894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4841), 1, - aux_sym_allocator_token1, - [52739] = 2, + aux_sym_asynchronous_select_token1, + [52901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4843), 1, - anon_sym_EQ_GT, - [52746] = 2, + anon_sym_SEMI, + [52908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4365), 1, + anon_sym_SEMI, + [52915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4845), 1, - anon_sym_RPAREN, - [52753] = 2, + aux_sym_if_expression_token1, + [52922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4847), 1, - anon_sym_RPAREN, - [52760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3597), 1, - aux_sym_allocator_token1, - [52767] = 2, + anon_sym_SEMI, + [52929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4849), 1, - aux_sym_loop_statement_token1, - [52774] = 2, + anon_sym_SEMI, + [52936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4851), 1, anon_sym_SEMI, - [52781] = 2, + [52943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4853), 1, - aux_sym__package_specification_token3, - [52788] = 2, + anon_sym_SEMI, + [52950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4855), 1, sym_identifier, - [52795] = 2, + [52957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4857), 1, - anon_sym_RPAREN, - [52802] = 2, + aux_sym_if_expression_token1, + [52964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4859), 1, - anon_sym_SEMI, - [52809] = 2, + aux_sym_expression_token2, + [52971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4861), 1, - anon_sym_RPAREN, - [52816] = 2, + aux_sym__package_specification_token3, + [52978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_SEMI, - [52823] = 2, + ACTIONS(4625), 1, + aux_sym_compilation_unit_token1, + [52985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3825), 1, + aux_sym__package_specification_token3, + [52992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4863), 1, - aux_sym__package_specification_token3, - [52830] = 2, + anon_sym_SEMI, + [52999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4865), 1, anon_sym_RPAREN, - [52837] = 2, + [53006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4867), 1, - sym_tick, - [52844] = 2, + anon_sym_LPAREN, + [53013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_SEMI, + [53020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4869), 1, - anon_sym_SEMI, - [52851] = 2, + aux_sym__package_specification_token3, + [53027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4871), 1, - aux_sym_record_component_association_list_token1, - [52858] = 2, + anon_sym_SEMI, + [53034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4873), 1, aux_sym_if_expression_token1, - [52865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_SEMI, - [52872] = 2, + [53041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4875), 1, - aux_sym_if_expression_token1, - [52879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2268), 1, - anon_sym_DOT_DOT, - [52886] = 2, + anon_sym_SEMI, + [53048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4877), 1, - aux_sym_if_expression_token1, - [52893] = 2, + anon_sym_SEMI, + [53055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4879), 1, anon_sym_SEMI, - [52900] = 2, + [53062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_SEMI, + [53069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4881), 1, - anon_sym_SEMI, - [52907] = 2, + aux_sym_chunk_specification_token1, + [53076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4883), 1, - anon_sym_SEMI, - [52914] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3475), 1, - anon_sym_SEMI, - [52921] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(332), 1, - aux_sym_private_type_declaration_token1, - [52928] = 2, + aux_sym_attribute_designator_token2, + [53083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4885), 1, - aux_sym_chunk_specification_token1, - [52935] = 2, + anon_sym_SEMI, + [53090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4887), 1, - aux_sym__package_specification_token3, - [52942] = 2, + aux_sym_with_clause_token2, + [53097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4889), 1, - anon_sym_SEMI, - [52949] = 2, + anon_sym_RBRACK, + [53104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4891), 1, - anon_sym_SEMI, - [52956] = 2, + aux_sym__package_specification_token3, + [53111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4893), 1, - anon_sym_RPAREN, - [52963] = 2, + aux_sym_with_clause_token2, + [53118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4895), 1, anon_sym_SEMI, - [52970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 1, - anon_sym_SEMI, - [52977] = 2, + [53125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4897), 1, anon_sym_SEMI, - [52984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_SEMI, - [52991] = 2, + [53132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4899), 1, - anon_sym_RPAREN, - [52998] = 2, + aux_sym__package_specification_token3, + [53139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, + anon_sym_SEMI, + [53146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4901), 1, - anon_sym_RBRACK, - [53005] = 2, + anon_sym_SEMI, + [53153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4903), 1, anon_sym_SEMI, - [53012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 1, - aux_sym__package_specification_token3, - [53019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4123), 1, - anon_sym_SEMI, - [53026] = 2, + [53160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4905), 1, - aux_sym_compilation_unit_token1, - [53033] = 2, + anon_sym_SEMI, + [53167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4907), 1, - aux_sym__package_specification_token2, - [53040] = 2, + aux_sym_subprogram_body_token1, + [53174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4909), 1, - aux_sym_subunit_token1, - [53047] = 2, + aux_sym_with_clause_token2, + [53181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_SEMI, + [53188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4911), 1, - aux_sym_with_clause_token2, - [53054] = 2, + anon_sym_SEMI, + [53195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4913), 1, - aux_sym__package_specification_token2, - [53061] = 2, + anon_sym_SEMI, + [53202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4915), 1, - anon_sym_SEMI, - [53068] = 2, + aux_sym__package_specification_token3, + [53209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4917), 1, - aux_sym_with_clause_token2, - [53075] = 2, + anon_sym_EQ_GT, + [53216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4919), 1, - anon_sym_SEMI, - [53082] = 2, + aux_sym__package_specification_token3, + [53223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(346), 1, - aux_sym_private_type_declaration_token1, - [53089] = 2, + ACTIONS(3453), 1, + anon_sym_SEMI, + [53230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 1, + aux_sym__package_specification_token2, + [53237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4921), 1, - anon_sym_EQ_GT, - [53096] = 2, + sym_identifier, + [53244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4923), 1, - anon_sym_SEMI, - [53103] = 2, + sym_identifier, + [53251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, - anon_sym_RPAREN, - [53110] = 2, + ACTIONS(3886), 1, + anon_sym_SEMI, + [53258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(3969), 1, anon_sym_SEMI, - [53117] = 2, + [53265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4925), 1, anon_sym_SEMI, - [53124] = 2, + [53272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4927), 1, anon_sym_SEMI, - [53131] = 2, + [53279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4889), 1, + anon_sym_RPAREN, + [53286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4929), 1, anon_sym_SEMI, - [53138] = 2, + [53293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4931), 1, - anon_sym_RPAREN, - [53145] = 2, + aux_sym_allocator_token1, + [53300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3899), 1, + anon_sym_SEMI, + [53307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4933), 1, - aux_sym_with_clause_token2, - [53152] = 2, + aux_sym_compilation_unit_token1, + [53314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4935), 1, - aux_sym_compilation_unit_token1, - [53159] = 2, + anon_sym_RPAREN, + [53321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4937), 1, - sym_identifier, - [53166] = 2, + aux_sym_loop_statement_token1, + [53328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4939), 1, - anon_sym_RPAREN, - [53173] = 2, + aux_sym_with_clause_token2, + [53335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4941), 1, - aux_sym__package_specification_token2, - [53180] = 2, + anon_sym_SEMI, + [53342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3707), 1, + aux_sym_compilation_unit_token1, + [53349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4943), 1, - aux_sym__package_specification_token2, - [53187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 1, - anon_sym_RPAREN, - [53194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 1, - anon_sym_SEMI, - [53201] = 2, + anon_sym_EQ_GT, + [53356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, - aux_sym__package_specification_token2, - [53208] = 2, + anon_sym_RPAREN, + [53363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4947), 1, - anon_sym_EQ_GT, - [53215] = 2, + aux_sym__package_specification_token3, + [53370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3359), 1, + anon_sym_RPAREN, + [53377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4949), 1, - anon_sym_SEMI, - [53222] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4649), 1, - aux_sym__package_specification_token2, - [53229] = 2, + aux_sym_allocator_token1, + [53384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4951), 1, - aux_sym_record_component_association_list_token1, - [53236] = 2, + anon_sym_RBRACK, + [53391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4953), 1, - anon_sym_RPAREN, - [53243] = 2, + aux_sym_primary_null_token1, + [53398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4955), 1, - aux_sym_compilation_unit_token1, - [53250] = 2, + anon_sym_SEMI, + [53405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4957), 1, - anon_sym_COLON, - [53257] = 2, + anon_sym_SEMI, + [53412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4959), 1, - anon_sym_RPAREN, - [53264] = 2, + anon_sym_SEMI, + [53419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4961), 1, aux_sym_allocator_token1, - [53271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 1, - anon_sym_SEMI, - [53278] = 2, + [53426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4963), 1, - anon_sym_SEMI, - [53285] = 2, + aux_sym_with_clause_token2, + [53433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4965), 1, - aux_sym_if_expression_token1, - [53292] = 2, + aux_sym_expression_token2, + [53440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4967), 1, - aux_sym_if_expression_token1, - [53299] = 2, + sym_identifier, + [53447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4969), 1, - anon_sym_SEMI, - [53306] = 2, + anon_sym_RPAREN, + [53454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4971), 1, - anon_sym_SEMI, - [53313] = 2, + aux_sym__package_specification_token2, + [53461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4973), 1, - anon_sym_SEMI, - [53320] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4975), 1, - aux_sym_if_expression_token1, - [53327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - aux_sym_expression_token2, - [53334] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - anon_sym_SEMI, - [53341] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4981), 1, - aux_sym__package_specification_token3, - [53348] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4983), 1, - anon_sym_DOT_DOT, - [53355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, - anon_sym_SEMI, - [53362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4985), 1, - anon_sym_RPAREN, - [53369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4987), 1, - aux_sym_expression_token2, - [53376] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4989), 1, - aux_sym_record_component_association_list_token1, - [53383] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_EQ_GT, - [53390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4993), 1, - aux_sym__package_specification_token3, - [53397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4995), 1, aux_sym__package_specification_token2, - [53404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4997), 1, - anon_sym_RPAREN, - [53411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4997), 1, - anon_sym_RBRACK, - [53418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(522), 1, - aux_sym_allocator_token1, - [53425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4999), 1, - anon_sym_SEMI, - [53432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5001), 1, - anon_sym_SEMI, - [53439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5003), 1, - anon_sym_SEMI, - [53446] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5005), 1, - aux_sym_record_component_association_list_token1, - [53453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5007), 1, - aux_sym_with_clause_token2, - [53460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5009), 1, - aux_sym_range_attribute_designator_token1, - [53467] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4382), 1, - anon_sym_SEMI, - [53474] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5011), 1, - aux_sym__package_specification_token2, - [53481] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5013), 1, - anon_sym_SEMI, - [53488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 1, - aux_sym__package_specification_token3, - [53495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5017), 1, - aux_sym_record_component_association_list_token1, - [53502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5019), 1, - anon_sym_SEMI, - [53509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5021), 1, - anon_sym_SEMI, - [53516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5023), 1, - aux_sym_package_body_token1, - [53523] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5025), 1, - anon_sym_EQ_GT, - [53530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5027), 1, - aux_sym_compilation_unit_token1, - [53537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 1, - anon_sym_SEMI, - [53544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5029), 1, - anon_sym_SEMI, - [53551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5031), 1, - aux_sym_with_clause_token2, - [53558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5033), 1, - aux_sym_package_body_token1, - [53565] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5035), 1, - sym_tick, - [53572] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_SEMI, - [53579] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5039), 1, - aux_sym_package_body_token1, - [53586] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5041), 1, - aux_sym_if_expression_token1, - [53593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5043), 1, - anon_sym_SEMI, - [53600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5045), 1, - anon_sym_SEMI, - [53607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5047), 1, - aux_sym_if_expression_token1, - [53614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5049), 1, - aux_sym_expression_token2, - [53621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5051), 1, - aux_sym__package_specification_token3, - [53628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5053), 1, - anon_sym_SEMI, - [53635] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5055), 1, - anon_sym_SEMI, - [53642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5057), 1, - anon_sym_SEMI, - [53649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5059), 1, - anon_sym_SEMI, - [53656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4297), 1, - aux_sym__package_specification_token2, - [53663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5061), 1, - aux_sym_if_expression_token1, - [53670] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5063), 1, - aux_sym__package_specification_token2, - [53677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5065), 1, - anon_sym_COLON, - [53684] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5067), 1, - aux_sym__package_specification_token3, - [53691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5069), 1, - anon_sym_SEMI, - [53698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - anon_sym_RPAREN, - [53705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5073), 1, - aux_sym__package_specification_token3, - [53712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5075), 1, - anon_sym_SEMI, - [53719] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5077), 1, - aux_sym__package_specification_token2, - [53726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5079), 1, - anon_sym_SEMI, - [53733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5081), 1, - anon_sym_SEMI, - [53740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5083), 1, - aux_sym_if_expression_token1, - [53747] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5085), 1, - aux_sym__package_specification_token3, - [53754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5087), 1, - anon_sym_COLON, - [53761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5089), 1, - anon_sym_SEMI, - [53768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5091), 1, - aux_sym_asynchronous_select_token1, - [53775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5093), 1, - aux_sym__package_specification_token3, - [53782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5095), 1, - anon_sym_SEMI, - [53789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 1, - anon_sym_SEMI, - [53796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5099), 1, - aux_sym_allocator_token1, - [53803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5101), 1, - anon_sym_SEMI, - [53810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5103), 1, - aux_sym__package_specification_token3, - [53817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5105), 1, - aux_sym_at_clause_token1, - [53824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 1, - sym_tick, - [53831] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5109), 1, - anon_sym_SEMI, - [53838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5111), 1, - sym_identifier, - [53845] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5113), 1, - anon_sym_SEMI, - [53852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5115), 1, - aux_sym_asynchronous_select_token1, - [53859] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5117), 1, - anon_sym_RBRACK, - [53866] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4212), 1, - anon_sym_RPAREN, - [53873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5119), 1, - aux_sym_asynchronous_select_token1, - [53880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - aux_sym_compilation_unit_token1, - [53887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5121), 1, - anon_sym_DOT_DOT, - [53894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5123), 1, - anon_sym_SEMI, - [53901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5125), 1, - aux_sym_result_profile_token1, - [53908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5127), 1, - sym_identifier, - [53915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5129), 1, - aux_sym_object_renaming_declaration_token1, - [53922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5131), 1, - anon_sym_EQ_GT, - [53929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5133), 1, - sym_identifier, - [53936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5135), 1, - aux_sym_object_renaming_declaration_token1, - [53943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - aux_sym_if_expression_token1, - [53950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5139), 1, - anon_sym_SEMI, - [53957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_COLON, - [53964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5143), 1, - aux_sym_primary_null_token1, - [53971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5145), 1, - anon_sym_SEMI, - [53978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5147), 1, - aux_sym__package_specification_token2, - [53985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5149), 1, - anon_sym_SEMI, - [53992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5151), 1, - aux_sym_iterator_specification_token1, - [53999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5153), 1, - aux_sym_expression_token2, - [54006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5155), 1, - anon_sym_EQ_GT, - [54013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5157), 1, - aux_sym_case_expression_token1, - [54020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5159), 1, - anon_sym_LT_GT, - [54027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - anon_sym_SEMI, - [54034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5161), 1, - anon_sym_SEMI, - [54041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - anon_sym_SEMI, - [54048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_SEMI, - [54055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_SEMI, - [54062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 1, - anon_sym_SEMI, - [54069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5169), 1, - aux_sym_with_clause_token2, - [54076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5171), 1, - aux_sym_primary_null_token1, - [54083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5173), 1, - anon_sym_SEMI, - [54090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 1, - aux_sym_compilation_unit_token1, - [54097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, - aux_sym_compilation_unit_token1, - [54104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5179), 1, - anon_sym_SEMI, - [54111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5181), 1, - anon_sym_SEMI, - [54118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5183), 1, - aux_sym_attribute_designator_token2, - [54125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5185), 1, - aux_sym_with_clause_token2, - [54132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5187), 1, - aux_sym_if_expression_token1, - [54139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5189), 1, - aux_sym_if_expression_token1, - [54146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5191), 1, - sym_identifier, - [54153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_SEMI, - [54160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5195), 1, - aux_sym_loop_statement_token1, - [54167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5197), 1, - aux_sym_chunk_specification_token1, - [54174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3483), 1, - anon_sym_SEMI, - [54181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_SEMI, - [54188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5201), 1, - aux_sym_if_expression_token1, - [54195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(426), 1, - aux_sym_subprogram_body_token1, - [54202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - aux_sym__package_specification_token2, - [54209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5205), 1, - anon_sym_SEMI, - [54216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5207), 1, - anon_sym_SEMI, - [54223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5209), 1, - anon_sym_SEMI, - [54230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5211), 1, - anon_sym_SEMI, - [54237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4185), 1, - anon_sym_SEMI, - [54244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - aux_sym_entry_declaration_token1, - [54251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5213), 1, - aux_sym__package_specification_token2, - [54258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5215), 1, - anon_sym_SEMI, - [54265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5217), 1, - anon_sym_SEMI, - [54272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5219), 1, - aux_sym_if_expression_token1, - [54279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5221), 1, - aux_sym_loop_statement_token1, - [54286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - aux_sym__package_specification_token3, - [54293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5225), 1, - anon_sym_SEMI, - [54300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5227), 1, - aux_sym__package_specification_token3, - [54307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5229), 1, - anon_sym_SEMI, - [54314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5231), 1, - anon_sym_RPAREN, - [54321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5233), 1, - anon_sym_SEMI, - [54328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - aux_sym_iterated_element_association_token2, - [54335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5237), 1, - aux_sym_expression_token2, - [54342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5239), 1, - anon_sym_SEMI, - [54349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5241), 1, - anon_sym_SEMI, - [54356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 1, - anon_sym_SEMI, - [54363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4415), 1, - anon_sym_SEMI, - [54370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5245), 1, - aux_sym_asynchronous_select_token1, - [54377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5247), 1, - aux_sym_asynchronous_select_token1, - [54384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5249), 1, - anon_sym_SEMI, - [54391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5251), 1, - aux_sym_with_clause_token2, - [54398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 1, - aux_sym_compilation_unit_token1, - [54405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5255), 1, - aux_sym_compilation_unit_token1, - [54412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 1, - anon_sym_SEMI, - [54419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5259), 1, - aux_sym_with_clause_token2, - [54426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 1, - sym_identifier, - [54433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5263), 1, - anon_sym_SEMI, - [54440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5265), 1, - anon_sym_LT_GT, - [54447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5267), 1, - sym_identifier, - [54454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 1, - aux_sym__package_specification_token2, - [54461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5269), 1, - anon_sym_LT_GT, - [54468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5271), 1, - anon_sym_SEMI, - [54475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5273), 1, - aux_sym__package_specification_token2, - [54482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5275), 1, - anon_sym_SEMI, - [54489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5277), 1, - aux_sym_expression_token2, - [54496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5279), 1, - aux_sym_if_expression_token1, - [54503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5281), 1, - aux_sym_expression_token2, - [54510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5283), 1, - anon_sym_LT_GT, - [54517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5285), 1, - anon_sym_SEMI, - [54524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5287), 1, - anon_sym_SEMI, - [54531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5289), 1, - aux_sym__package_specification_token3, - [54538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5291), 1, - anon_sym_SEMI, - [54545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5293), 1, - aux_sym_expression_token2, - [54552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 1, - anon_sym_LT_GT, - [54559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5297), 1, - anon_sym_SEMI, - [54566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5299), 1, - anon_sym_GT_GT, - [54573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5301), 1, - anon_sym_LT_GT, - [54580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5303), 1, - anon_sym_COLON, - [54587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5305), 1, - anon_sym_SEMI, - [54594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5307), 1, - sym_identifier, - [54601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5309), 1, - anon_sym_RPAREN, - [54608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5311), 1, - anon_sym_SEMI, - [54615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5313), 1, - anon_sym_SEMI, - [54622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 1, - anon_sym_SEMI, - [54629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5315), 1, - anon_sym_SEMI, - [54636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4115), 1, - anon_sym_SEMI, - [54643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5317), 1, - sym_identifier, - [54650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5319), 1, - anon_sym_SEMI, - [54657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5321), 1, - aux_sym_allocator_token1, - [54664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5323), 1, - aux_sym__aspect_mark_token1, - [54671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 1, - sym_identifier, - [54678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5327), 1, - anon_sym_SEMI, - [54685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5329), 1, - aux_sym_compilation_unit_token1, - [54692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5331), 1, - sym_identifier, - [54699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5333), 1, - anon_sym_SEMI, - [54706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5335), 1, - anon_sym_SEMI, - [54713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5337), 1, - aux_sym_with_clause_token2, - [54720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5339), 1, - aux_sym__package_specification_token2, - [54727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5341), 1, - anon_sym_SEMI, - [54734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(410), 1, - aux_sym_subprogram_body_token1, - [54741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5343), 1, - anon_sym_SEMI, - [54748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5345), 1, - sym_identifier, - [54755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5347), 1, - aux_sym__package_specification_token2, - [54762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5349), 1, - aux_sym__package_specification_token2, - [54769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(422), 1, - aux_sym_subprogram_body_token1, - [54776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5351), 1, - sym_identifier, - [54783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - aux_sym_subprogram_body_token1, - [54790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5355), 1, - aux_sym__package_specification_token3, - [54797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5357), 1, - anon_sym_SEMI, - [54804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5359), 1, - anon_sym_SEMI, - [54811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(434), 1, - aux_sym_subprogram_body_token1, - [54818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - anon_sym_SEMI, - [54825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - aux_sym__package_specification_token3, - [54832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3753), 1, - anon_sym_SEMI, - [54839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5363), 1, - aux_sym_iterated_element_association_token2, - [54846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4040), 1, - anon_sym_SEMI, - [54853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5365), 1, - anon_sym_SEMI, - [54860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 1, - aux_sym__package_specification_token3, - [54867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 1, - aux_sym_iterated_element_association_token2, - [54874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - aux_sym_compilation_unit_token1, - [54881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5371), 1, - anon_sym_SEMI, - [54888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_SEMI, - [54895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5373), 1, - anon_sym_SEMI, - [54902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5375), 1, - aux_sym_compilation_unit_token1, - [54909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5377), 1, - aux_sym_allocator_token1, - [54916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5379), 1, - aux_sym_with_clause_token2, - [54923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5381), 1, - aux_sym_with_clause_token2, - [54930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(432), 1, - aux_sym_subprogram_body_token1, - [54937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4536), 1, - anon_sym_SEMI, - [54944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - [54951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - anon_sym_SEMI, - [54958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_SEMI, - [54965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5387), 1, - anon_sym_SEMI, - [54972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5389), 1, - anon_sym_SEMI, - [54979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5391), 1, - aux_sym_with_clause_token2, - [54986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5393), 1, - aux_sym_if_expression_token1, - [54993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 1, - anon_sym_SEMI, - [55000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5395), 1, - anon_sym_SEMI, - [55007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5397), 1, - anon_sym_RPAREN, - [55014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5399), 1, - anon_sym_SEMI, - [55021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5401), 1, - anon_sym_SEMI, - [55028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5403), 1, - aux_sym_with_clause_token2, - [55035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5405), 1, - anon_sym_SEMI, - [55042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4047), 1, - anon_sym_SEMI, - [55049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5407), 1, - aux_sym_use_clause_token2, - [55056] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5409), 1, - aux_sym_iterated_element_association_token2, - [55063] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5411), 1, - aux_sym_loop_statement_token1, - [55070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5413), 1, - anon_sym_SEMI, - [55077] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5415), 1, - anon_sym_SEMI, - [55084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5417), 1, - anon_sym_SEMI, - [55091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5419), 1, - anon_sym_SEMI, - [55098] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5421), 1, - anon_sym_SEMI, - [55105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5423), 1, - aux_sym_compilation_unit_token1, - [55112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5425), 1, - anon_sym_RBRACK, - [55119] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5427), 1, - anon_sym_SEMI, - [55126] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5429), 1, - aux_sym__package_specification_token2, - [55133] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5431), 1, - aux_sym_subprogram_body_token1, - [55140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5433), 1, - anon_sym_SEMI, - [55147] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5435), 1, - aux_sym__package_specification_token2, - [55154] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 1, - aux_sym__package_specification_token3, - [55161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5439), 1, - aux_sym__package_specification_token3, - [55168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5441), 1, - anon_sym_SEMI, - [55175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - anon_sym_RPAREN, - [55182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - aux_sym_subprogram_body_token1, - [55189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - aux_sym__package_specification_token3, - [55196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5447), 1, - anon_sym_EQ_GT, - [55203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5449), 1, - sym_identifier, - [55210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5451), 1, - anon_sym_SEMI, - [55217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3294), 1, - aux_sym_loop_statement_token1, - [55224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 1, - aux_sym_with_clause_token2, - [55231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5455), 1, - aux_sym_compilation_unit_token1, - [55238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5457), 1, - aux_sym_with_clause_token2, - [55245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5459), 1, - aux_sym__package_specification_token3, - [55252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5461), 1, - anon_sym_SEMI, - [55259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5463), 1, - aux_sym__package_specification_token3, - [55266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5465), 1, - aux_sym__package_specification_token2, - [55273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5467), 1, - anon_sym_SEMI, - [55280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5469), 1, - aux_sym_case_expression_token1, - [55287] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5471), 1, - anon_sym_SEMI, - [55294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, - anon_sym_EQ_GT, - [55301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5475), 1, - anon_sym_SEMI, - [55308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 1, - anon_sym_SEMI, - [55315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 1, - anon_sym_RPAREN, - [55322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 1, - sym_tick, - [55329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5483), 1, - anon_sym_COLON, - [55336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(424), 1, - aux_sym_subprogram_body_token1, - [55343] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5485), 1, - aux_sym__package_specification_token2, - [55350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5487), 1, - anon_sym_RPAREN, - [55357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5489), 1, - aux_sym__package_specification_token3, - [55364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5491), 1, - aux_sym__package_specification_token3, - [55371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 1, - anon_sym_SEMI, - [55378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_EQ_GT, - [55385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5495), 1, - aux_sym__package_specification_token3, - [55392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5497), 1, - ts_builtin_sym_end, - [55399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5499), 1, - anon_sym_RBRACK, - [55406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5501), 1, - aux_sym_asynchronous_select_token1, - [55413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5503), 1, - sym_identifier, - [55420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5505), 1, - sym_identifier, - [55427] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5507), 1, - sym_identifier, - [55434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5509), 1, - anon_sym_SEMI, - [55441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5511), 1, - sym_identifier, - [55448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5513), 1, - aux_sym_subprogram_body_token1, - [55455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5515), 1, - aux_sym__package_specification_token3, - [55462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5517), 1, - anon_sym_EQ_GT, - [55469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - sym_identifier, - [55476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(420), 1, - aux_sym_subprogram_body_token1, - [55483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_SEMI, - [55490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5521), 1, - anon_sym_SEMI, - [55497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5499), 1, - anon_sym_RPAREN, - [55504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5523), 1, - anon_sym_RPAREN, - [55511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 1, - aux_sym__package_specification_token3, - [55518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_SEMI, - [55525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5527), 1, - anon_sym_RPAREN, - [55532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3840), 1, - aux_sym__package_specification_token3, - [55539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5529), 1, - aux_sym__package_specification_token3, - [55546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5531), 1, - anon_sym_SEMI, - [55553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5533), 1, - anon_sym_RPAREN, - [55560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5535), 1, - anon_sym_SEMI, - [55567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5537), 1, - aux_sym_subprogram_body_token1, - [55574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - aux_sym__package_specification_token3, - [55581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 1, - aux_sym__package_specification_token3, - [55588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_SEMI, - [55595] = 2, + [53468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4629), 1, anon_sym_SEMI, - [55602] = 2, + [53475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4975), 1, + anon_sym_SEMI, + [53482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4977), 1, + aux_sym__package_specification_token2, + [53489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4979), 1, + sym_identifier, + [53496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4981), 1, + anon_sym_SEMI, + [53503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4983), 1, + aux_sym_iterated_element_association_token2, + [53510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4951), 1, + anon_sym_RPAREN, + [53517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4985), 1, + anon_sym_SEMI, + [53524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4987), 1, + aux_sym__package_specification_token3, + [53531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4989), 1, + anon_sym_RPAREN, + [53538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4991), 1, + aux_sym_iterated_element_association_token2, + [53545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3798), 1, + anon_sym_SEMI, + [53552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(348), 1, + aux_sym_subprogram_body_token1, + [53559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4993), 1, + anon_sym_SEMI, + [53566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4995), 1, + aux_sym_if_expression_token1, + [53573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4997), 1, + aux_sym_if_expression_token1, + [53580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4999), 1, + aux_sym_record_component_association_list_token1, + [53587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5001), 1, + anon_sym_SEMI, + [53594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 1, + anon_sym_SEMI, + [53601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5005), 1, + aux_sym_if_expression_token1, + [53608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(514), 1, + aux_sym_allocator_token1, + [53615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 1, + anon_sym_SEMI, + [53622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5009), 1, + aux_sym__package_specification_token2, + [53629] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5011), 1, + anon_sym_EQ_GT, + [53636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 1, + anon_sym_RPAREN, + [53643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 1, + anon_sym_SEMI, + [53650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 1, + aux_sym_expression_token2, + [53657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 1, + anon_sym_SEMI, + [53664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(440), 1, + aux_sym_subprogram_body_token1, + [53671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5021), 1, + aux_sym__package_specification_token2, + [53678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3897), 1, + anon_sym_SEMI, + [53685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5023), 1, + anon_sym_RPAREN, + [53692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5023), 1, + anon_sym_RBRACK, + [53699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5025), 1, + anon_sym_SEMI, + [53706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + anon_sym_SEMI, + [53713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5029), 1, + anon_sym_SEMI, + [53720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5031), 1, + anon_sym_SEMI, + [53727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_SEMI, + [53734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5033), 1, + aux_sym_with_clause_token2, + [53741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 1, + anon_sym_SEMI, + [53748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4581), 1, + anon_sym_SEMI, + [53755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5035), 1, + aux_sym_expression_token2, + [53762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5037), 1, + anon_sym_SEMI, + [53769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 1, + aux_sym__package_specification_token3, + [53776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5041), 1, + aux_sym_if_expression_token1, + [53783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_SEMI, + [53790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_SEMI, + [53797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4006), 1, + anon_sym_SEMI, + [53804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 1, + aux_sym_if_expression_token1, + [53811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5047), 1, + aux_sym_compilation_unit_token1, + [53818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5049), 1, + anon_sym_SEMI, + [53825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5051), 1, + aux_sym__package_specification_token3, + [53832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5053), 1, + aux_sym_with_clause_token2, + [53839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5055), 1, + anon_sym_SEMI, + [53846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5057), 1, + aux_sym__aspect_mark_token1, + [53853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5059), 1, + aux_sym_loop_statement_token1, + [53860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(350), 1, + aux_sym_private_type_declaration_token1, + [53867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5061), 1, + anon_sym_SEMI, + [53874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5063), 1, + aux_sym__package_specification_token2, + [53881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5065), 1, + anon_sym_SEMI, + [53888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5067), 1, + anon_sym_SEMI, + [53895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + anon_sym_SEMI, + [53902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 1, + aux_sym__package_specification_token3, + [53909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5071), 1, + anon_sym_SEMI, + [53916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5073), 1, + anon_sym_SEMI, + [53923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5075), 1, + anon_sym_SEMI, + [53930] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 1, + aux_sym_record_component_association_list_token1, + [53937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5079), 1, + aux_sym__package_specification_token3, + [53944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5081), 1, + aux_sym_if_expression_token1, + [53951] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5083), 1, + aux_sym_if_expression_token1, + [53958] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5085), 1, + anon_sym_SEMI, + [53965] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5087), 1, + anon_sym_SEMI, + [53972] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5089), 1, + anon_sym_SEMI, + [53979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5091), 1, + anon_sym_SEMI, + [53986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5093), 1, + aux_sym__package_specification_token3, + [53993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5095), 1, + anon_sym_EQ_GT, + [54000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5097), 1, + anon_sym_SEMI, + [54007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5099), 1, + anon_sym_SEMI, + [54014] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5101), 1, + anon_sym_SEMI, + [54021] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + aux_sym_if_expression_token1, + [54028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5105), 1, + anon_sym_SEMI, + [54035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5107), 1, + anon_sym_RBRACK, + [54042] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5109), 1, + anon_sym_SEMI, + [54049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5111), 1, + anon_sym_RPAREN, + [54056] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 1, + anon_sym_SEMI, + [54063] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 1, + aux_sym_at_clause_token1, + [54070] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5117), 1, + sym_tick, + [54077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5119), 1, + aux_sym_expression_token2, + [54084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5121), 1, + anon_sym_SEMI, + [54091] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5123), 1, + anon_sym_RBRACK, + [54098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5125), 1, + aux_sym_record_component_association_list_token1, + [54105] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5127), 1, + anon_sym_SEMI, + [54112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5129), 1, + anon_sym_SEMI, + [54119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5131), 1, + aux_sym_object_renaming_declaration_token1, + [54126] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5133), 1, + anon_sym_SEMI, + [54133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5135), 1, + aux_sym_if_expression_token1, + [54140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5137), 1, + aux_sym_object_renaming_declaration_token1, + [54147] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5139), 1, + anon_sym_RPAREN, + [54154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5141), 1, + aux_sym_subprogram_body_token1, + [54161] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5143), 1, + anon_sym_SEMI, + [54168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5145), 1, + anon_sym_DOT_DOT, + [54175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5147), 1, + aux_sym_primary_null_token1, + [54182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_RPAREN, + [54189] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + aux_sym_private_type_declaration_token1, + [54196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym__package_specification_token2, + [54203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 1, + anon_sym_SEMI, + [54210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3471), 1, + anon_sym_SEMI, + [54217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5155), 1, + aux_sym_primary_null_token1, + [54224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5157), 1, + aux_sym__package_specification_token3, + [54231] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + anon_sym_SEMI, + [54238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5159), 1, + sym_tick, + [54245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_SEMI, + [54252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 1, + anon_sym_SEMI, + [54259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + aux_sym_subprogram_body_token1, + [54266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5167), 1, + aux_sym__package_specification_token2, + [54273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_SEMI, + [54280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 1, + anon_sym_SEMI, + [54287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_EQ_GT, + [54294] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 1, + aux_sym_case_expression_token1, + [54301] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5177), 1, + anon_sym_SEMI, + [54308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 1, + anon_sym_RPAREN, + [54315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 1, + anon_sym_SEMI, + [54322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 1, + aux_sym_asynchronous_select_token1, + [54329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5185), 1, + aux_sym_if_expression_token1, + [54336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5187), 1, + anon_sym_COLON, + [54343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2328), 1, + anon_sym_DOT_DOT, + [54350] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5189), 1, + aux_sym_with_clause_token2, + [54357] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + aux_sym_loop_statement_token1, + [54364] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5193), 1, + anon_sym_SEMI, + [54371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, + aux_sym_compilation_unit_token1, + [54378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5197), 1, + aux_sym_compilation_unit_token1, + [54385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5199), 1, + aux_sym__package_specification_token3, + [54392] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5201), 1, + anon_sym_SEMI, + [54399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5203), 1, + anon_sym_SEMI, + [54406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5205), 1, + aux_sym_with_clause_token2, + [54413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5207), 1, + anon_sym_SEMI, + [54420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5209), 1, + anon_sym_SEMI, + [54427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5211), 1, + anon_sym_RPAREN, + [54434] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5213), 1, + anon_sym_SEMI, + [54441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5215), 1, + anon_sym_RPAREN, + [54448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 1, + aux_sym_chunk_specification_token1, + [54455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5219), 1, + anon_sym_SEMI, + [54462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5221), 1, + aux_sym__package_specification_token2, + [54469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 1, + aux_sym_loop_statement_token1, + [54476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(424), 1, + aux_sym_subprogram_body_token1, + [54483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5225), 1, + aux_sym__package_specification_token2, + [54490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 1, + aux_sym__package_specification_token3, + [54497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5229), 1, + anon_sym_SEMI, + [54504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5231), 1, + anon_sym_SEMI, + [54511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 1, + aux_sym_asynchronous_select_token1, + [54518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5235), 1, + anon_sym_SEMI, + [54525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5237), 1, + anon_sym_SEMI, + [54532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5239), 1, + anon_sym_RPAREN, + [54539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5241), 1, + anon_sym_SEMI, + [54546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5243), 1, + anon_sym_SEMI, + [54553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5245), 1, + aux_sym_if_expression_token1, + [54560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5247), 1, + anon_sym_RPAREN, + [54567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5249), 1, + aux_sym_expression_token2, + [54574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5251), 1, + anon_sym_SEMI, + [54581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5253), 1, + anon_sym_COLON, + [54588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3419), 1, + anon_sym_SEMI, + [54595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + anon_sym_RPAREN, + [54602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 1, + anon_sym_SEMI, + [54609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5259), 1, + aux_sym_asynchronous_select_token1, + [54616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 1, + anon_sym_SEMI, + [54623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_SEMI, + [54630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5263), 1, + anon_sym_SEMI, + [54637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5265), 1, + aux_sym_expression_token2, + [54644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4511), 1, + anon_sym_SEMI, + [54651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5267), 1, + anon_sym_EQ_GT, + [54658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5269), 1, + anon_sym_SEMI, + [54665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4160), 1, + anon_sym_SEMI, + [54672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5271), 1, + aux_sym_with_clause_token2, + [54679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5273), 1, + aux_sym_compilation_unit_token1, + [54686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5275), 1, + aux_sym_compilation_unit_token1, + [54693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4631), 1, + aux_sym__package_specification_token2, + [54700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5277), 1, + anon_sym_SEMI, + [54707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 1, + aux_sym_if_expression_token1, + [54714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_SEMI, + [54721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5283), 1, + aux_sym__package_specification_token3, + [54728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5285), 1, + anon_sym_DOT_DOT, + [54735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_SEMI, + [54742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5289), 1, + sym_identifier, + [54749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5291), 1, + anon_sym_SEMI, + [54756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 1, + anon_sym_SEMI, + [54763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5295), 1, + anon_sym_SEMI, + [54770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 1, + anon_sym_SEMI, + [54777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + anon_sym_RBRACK, + [54784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5299), 1, + anon_sym_SEMI, + [54791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5301), 1, + aux_sym_expression_token2, + [54798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5303), 1, + anon_sym_SEMI, + [54805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5305), 1, + anon_sym_SEMI, + [54812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5307), 1, + anon_sym_GT_GT, + [54819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5309), 1, + aux_sym_if_expression_token1, + [54826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5311), 1, + aux_sym_with_clause_token2, + [54833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5313), 1, + aux_sym_expression_token2, + [54840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 1, + sym_identifier, + [54847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5317), 1, + aux_sym__package_specification_token3, + [54854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + anon_sym_RPAREN, + [54861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5319), 1, + aux_sym_component_list_token1, + [54868] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5321), 1, + sym_identifier, + [54875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 1, + sym_identifier, + [54882] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5325), 1, + aux_sym_asynchronous_select_token1, + [54889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5327), 1, + sym_identifier, + [54896] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5329), 1, + anon_sym_SEMI, + [54903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 1, + aux_sym__package_specification_token3, + [54910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5333), 1, + anon_sym_SEMI, + [54917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5335), 1, + aux_sym__package_specification_token2, + [54924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(438), 1, + aux_sym_subprogram_body_token1, + [54931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5337), 1, + anon_sym_SEMI, + [54938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5339), 1, + anon_sym_SEMI, + [54945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym_SEMI, + [54952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5343), 1, + aux_sym__package_specification_token3, + [54959] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5345), 1, + anon_sym_SEMI, + [54966] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5347), 1, + aux_sym_compilation_unit_token1, + [54973] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5349), 1, + aux_sym_asynchronous_select_token1, + [54980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5351), 1, + aux_sym_compilation_unit_token1, + [54987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5353), 1, + aux_sym_result_profile_token1, + [54994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5355), 1, + aux_sym_with_clause_token2, + [55001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5357), 1, + sym_identifier, + [55008] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + anon_sym_RPAREN, + [55015] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5359), 1, + sym_identifier, + [55022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5361), 1, + anon_sym_SEMI, + [55029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5363), 1, + anon_sym_SEMI, + [55036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5365), 1, + aux_sym_compilation_unit_token1, + [55043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5367), 1, + aux_sym__package_specification_token2, + [55050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5369), 1, + anon_sym_COLON, + [55057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5371), 1, + aux_sym__package_specification_token3, + [55064] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5373), 1, + aux_sym_subprogram_body_token1, + [55071] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5375), 1, + aux_sym__package_specification_token3, + [55078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5377), 1, + aux_sym_if_expression_token1, + [55085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4216), 1, + anon_sym_SEMI, + [55092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(434), 1, + aux_sym_subprogram_body_token1, + [55099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5379), 1, + sym_identifier, + [55106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5381), 1, + aux_sym_if_expression_token1, + [55113] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5383), 1, + aux_sym_if_expression_token1, + [55120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5385), 1, + aux_sym__package_specification_token3, + [55127] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5387), 1, + aux_sym_allocator_token1, + [55134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5389), 1, + anon_sym_SEMI, + [55141] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5391), 1, + anon_sym_SEMI, + [55148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3613), 1, + aux_sym_allocator_token1, + [55155] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3543), 1, + anon_sym_SEMI, + [55162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5393), 1, + anon_sym_SEMI, + [55169] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5395), 1, + anon_sym_SEMI, + [55176] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5397), 1, + anon_sym_SEMI, + [55183] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5399), 1, + aux_sym_compilation_unit_token1, + [55190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 1, + anon_sym_SEMI, + [55197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5401), 1, + aux_sym_iterated_element_association_token2, + [55204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5403), 1, + aux_sym_with_clause_token2, + [55211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5405), 1, + aux_sym_attribute_designator_token4, + [55218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5407), 1, + anon_sym_SEMI, + [55225] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5409), 1, + anon_sym_SEMI, + [55232] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5411), 1, + anon_sym_SEMI, + [55239] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5413), 1, + anon_sym_LT_GT, + [55246] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5415), 1, + anon_sym_LT_GT, + [55253] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5417), 1, + anon_sym_SEMI, + [55260] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5419), 1, + anon_sym_LT_GT, + [55267] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5421), 1, + anon_sym_LT_GT, + [55274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5423), 1, + anon_sym_SEMI, + [55281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5425), 1, + anon_sym_SEMI, + [55288] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5427), 1, + anon_sym_LT_GT, + [55295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5429), 1, + aux_sym_use_clause_token2, + [55302] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 1, + anon_sym_SEMI, + [55309] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5433), 1, + aux_sym_loop_statement_token1, + [55316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5435), 1, + aux_sym_subunit_token1, + [55323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5437), 1, + aux_sym__package_specification_token3, + [55330] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5439), 1, + anon_sym_RPAREN, + [55337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5441), 1, + aux_sym_allocator_token1, + [55344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(420), 1, + aux_sym_subprogram_body_token1, + [55351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5443), 1, + aux_sym__package_specification_token2, + [55358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5445), 1, + anon_sym_RBRACK, + [55365] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5447), 1, + anon_sym_SEMI, + [55372] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + anon_sym_SEMI, + [55379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5449), 1, + anon_sym_SEMI, + [55386] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5451), 1, + aux_sym_compilation_unit_token1, + [55393] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5453), 1, + aux_sym_package_body_token1, + [55400] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5455), 1, + anon_sym_SEMI, + [55407] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5457), 1, + aux_sym__package_specification_token2, + [55414] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5459), 1, + aux_sym_package_body_token1, + [55421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5461), 1, + anon_sym_SEMI, + [55428] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5463), 1, + aux_sym__package_specification_token2, + [55435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5465), 1, + aux_sym__package_specification_token3, + [55442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + sym_identifier, + [55449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5469), 1, + anon_sym_DOT_DOT, + [55456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5471), 1, + aux_sym_package_body_token1, + [55463] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5473), 1, + aux_sym_subprogram_body_token1, + [55470] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5475), 1, + aux_sym__package_specification_token3, + [55477] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 1, + anon_sym_SEMI, + [55484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3391), 1, + aux_sym_loop_statement_token1, + [55491] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 1, + aux_sym_with_clause_token2, + [55498] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 1, + anon_sym_SEMI, + [55505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5481), 1, + anon_sym_LT_GT, + [55512] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5483), 1, + aux_sym_compilation_unit_token1, + [55519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5485), 1, + anon_sym_COLON, + [55526] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5487), 1, + anon_sym_COLON, + [55533] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5489), 1, + anon_sym_EQ_GT, + [55540] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5491), 1, + aux_sym_case_expression_token1, + [55547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_EQ_GT, + [55554] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5495), 1, + anon_sym_SEMI, + [55561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5497), 1, + anon_sym_SEMI, + [55568] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5499), 1, + anon_sym_SEMI, + [55575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5501), 1, + sym_tick, + [55582] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5503), 1, + anon_sym_COLON, + [55589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5505), 1, + aux_sym_iterator_specification_token1, + [55596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5507), 1, + anon_sym_RPAREN, + [55603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_SEMI, + [55610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 1, + ts_builtin_sym_end, + [55617] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(412), 1, + aux_sym_subprogram_body_token1, + [55624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5511), 1, + aux_sym__package_specification_token2, + [55631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5513), 1, + sym_identifier, + [55638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5515), 1, + aux_sym_iterator_specification_token1, + [55645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5517), 1, + aux_sym__package_specification_token3, + [55652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_SEMI, + [55659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + aux_sym_with_clause_token2, + [55666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5521), 1, + aux_sym__package_specification_token3, + [55673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5523), 1, + sym_identifier, + [55680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5525), 1, + aux_sym__package_specification_token2, + [55687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5527), 1, + anon_sym_EQ_GT, + [55694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5529), 1, + sym_identifier, + [55701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5531), 1, + sym_identifier, + [55708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5533), 1, + aux_sym_record_component_association_list_token1, + [55715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5535), 1, + anon_sym_SEMI, + [55722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 1, + sym_identifier, + [55729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + aux_sym_subprogram_body_token1, + [55736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5541), 1, + aux_sym__package_specification_token3, + [55743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3365), 1, + aux_sym_interface_type_definition_token2, + [55750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5543), 1, - anon_sym_RPAREN, - [55609] = 2, + anon_sym_SEMI, + [55757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(432), 1, + aux_sym_subprogram_body_token1, + [55764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_SEMI, + [55771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, + aux_sym__package_specification_token2, + [55778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5545), 1, - aux_sym_if_expression_token1, - [55616] = 2, + aux_sym__package_specification_token3, + [55785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5547), 1, anon_sym_SEMI, - [55623] = 2, + [55792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5549), 1, aux_sym__package_specification_token3, - [55630] = 2, + [55799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(4403), 1, anon_sym_SEMI, - [55637] = 2, + [55806] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5551), 1, - anon_sym_EQ_GT, - [55644] = 2, + anon_sym_SEMI, + [55813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5553), 1, - aux_sym__package_specification_token3, - [55651] = 2, + anon_sym_SEMI, + [55820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5555), 1, - aux_sym_global_mode_token1, - [55658] = 2, + aux_sym__package_specification_token3, + [55827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5557), 1, - anon_sym_SEMI, - [55665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4327), 1, - anon_sym_SEMI, - [55672] = 2, + aux_sym_global_mode_token1, + [55834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5559), 1, - anon_sym_SEMI, - [55679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4667), 1, - anon_sym_SEMI, - [55686] = 2, + anon_sym_RPAREN, + [55841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5561), 1, - aux_sym_if_expression_token1, - [55693] = 2, + anon_sym_LPAREN, + [55848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5563), 1, - anon_sym_SEMI, - [55700] = 2, + aux_sym_subprogram_body_token1, + [55855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5565), 1, - anon_sym_SEMI, - [55707] = 2, + aux_sym__package_specification_token3, + [55862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5567), 1, - aux_sym__package_specification_token3, - [55714] = 2, + anon_sym_SEMI, + [55869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 1, + ACTIONS(4397), 1, anon_sym_SEMI, - [55721] = 2, + [55876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 1, + anon_sym_SEMI, + [55883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5569), 1, - anon_sym_SEMI, - [55728] = 2, + aux_sym__package_specification_token2, + [55890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5571), 1, - aux_sym_if_expression_token1, - [55735] = 2, + anon_sym_COLON, + [55897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5573), 1, - aux_sym_expression_token2, - [55742] = 2, + anon_sym_RPAREN, + [55904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5575), 1, - anon_sym_SEMI, - [55749] = 2, + aux_sym__package_specification_token3, + [55911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4677), 1, + ACTIONS(4389), 1, anon_sym_SEMI, - [55756] = 2, + [55918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5577), 1, - anon_sym_EQ_GT, - [55763] = 2, + anon_sym_RPAREN, + [55925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3536), 1, - anon_sym_SEMI, - [55770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 1, - anon_sym_SEMI, - [55777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5580), 1, - aux_sym_loop_statement_token1, - [55784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5582), 1, - anon_sym_SEMI, - [55791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5584), 1, + ACTIONS(5579), 1, aux_sym__package_specification_token3, - [55798] = 2, + [55932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, - aux_sym_allocator_token1, - [55805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5588), 1, - anon_sym_SEMI, - [55812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5590), 1, - anon_sym_LPAREN, - [55819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 1, + ACTIONS(5581), 1, sym_identifier, - [55826] = 2, + [55939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5594), 1, + ACTIONS(5583), 1, + aux_sym_record_component_association_list_token1, + [55946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5585), 1, + aux_sym_range_attribute_designator_token1, + [55953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5587), 1, anon_sym_SEMI, - [55833] = 2, + [55960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(4369), 1, + anon_sym_SEMI, + [55967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_SEMI, + [55974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 1, + anon_sym_SEMI, + [55981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 1, anon_sym_EQ_GT, + [55988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5595), 1, + aux_sym__package_specification_token3, + [55995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4361), 1, + anon_sym_SEMI, + [56002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5597), 1, + anon_sym_EQ_GT, + [56009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5600), 1, + sym_identifier, + [56016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 1, + aux_sym__package_specification_token3, + [56023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5604), 1, + anon_sym_SEMI, + [56030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4353), 1, + anon_sym_SEMI, + [56037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5606), 1, + anon_sym_RPAREN, + [56044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5608), 1, + anon_sym_SEMI, + [56051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + anon_sym_SEMI, + [56058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5610), 1, + anon_sym_EQ_GT, + [56065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5612), 1, + anon_sym_SEMI, + [56072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5614), 1, + aux_sym_if_expression_token1, + [56079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5616), 1, + anon_sym_SEMI, + [56086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_SEMI, + [56093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_SEMI, + [56100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5618), 1, + sym_tick, + [56107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5620), 1, + anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(111)] = 0, - [SMALL_STATE(112)] = 130, - [SMALL_STATE(113)] = 250, - [SMALL_STATE(114)] = 388, - [SMALL_STATE(115)] = 518, - [SMALL_STATE(116)] = 635, - [SMALL_STATE(117)] = 750, - [SMALL_STATE(118)] = 867, - [SMALL_STATE(119)] = 984, - [SMALL_STATE(120)] = 1101, - [SMALL_STATE(121)] = 1233, - [SMALL_STATE(122)] = 1347, - [SMALL_STATE(123)] = 1461, - [SMALL_STATE(124)] = 1575, - [SMALL_STATE(125)] = 1689, - [SMALL_STATE(126)] = 1803, - [SMALL_STATE(127)] = 1923, - [SMALL_STATE(128)] = 2037, - [SMALL_STATE(129)] = 2166, - [SMALL_STATE(130)] = 2295, - [SMALL_STATE(131)] = 2421, - [SMALL_STATE(132)] = 2547, - [SMALL_STATE(133)] = 2670, - [SMALL_STATE(134)] = 2781, - [SMALL_STATE(135)] = 2895, - [SMALL_STATE(136)] = 3009, - [SMALL_STATE(137)] = 3123, - [SMALL_STATE(138)] = 3235, - [SMALL_STATE(139)] = 3296, - [SMALL_STATE(140)] = 3357, - [SMALL_STATE(141)] = 3418, - [SMALL_STATE(142)] = 3479, - [SMALL_STATE(143)] = 3540, - [SMALL_STATE(144)] = 3601, - [SMALL_STATE(145)] = 3662, - [SMALL_STATE(146)] = 3723, - [SMALL_STATE(147)] = 3784, - [SMALL_STATE(148)] = 3845, - [SMALL_STATE(149)] = 3906, - [SMALL_STATE(150)] = 3967, - [SMALL_STATE(151)] = 4028, - [SMALL_STATE(152)] = 4089, - [SMALL_STATE(153)] = 4150, - [SMALL_STATE(154)] = 4211, - [SMALL_STATE(155)] = 4272, - [SMALL_STATE(156)] = 4333, - [SMALL_STATE(157)] = 4394, - [SMALL_STATE(158)] = 4455, - [SMALL_STATE(159)] = 4516, - [SMALL_STATE(160)] = 4577, - [SMALL_STATE(161)] = 4638, - [SMALL_STATE(162)] = 4699, - [SMALL_STATE(163)] = 4760, - [SMALL_STATE(164)] = 4821, - [SMALL_STATE(165)] = 4882, - [SMALL_STATE(166)] = 4943, - [SMALL_STATE(167)] = 5004, - [SMALL_STATE(168)] = 5065, - [SMALL_STATE(169)] = 5126, - [SMALL_STATE(170)] = 5187, - [SMALL_STATE(171)] = 5248, - [SMALL_STATE(172)] = 5309, - [SMALL_STATE(173)] = 5370, - [SMALL_STATE(174)] = 5431, - [SMALL_STATE(175)] = 5492, - [SMALL_STATE(176)] = 5553, - [SMALL_STATE(177)] = 5614, - [SMALL_STATE(178)] = 5675, - [SMALL_STATE(179)] = 5736, - [SMALL_STATE(180)] = 5797, - [SMALL_STATE(181)] = 5858, - [SMALL_STATE(182)] = 5919, - [SMALL_STATE(183)] = 5980, - [SMALL_STATE(184)] = 6041, - [SMALL_STATE(185)] = 6102, - [SMALL_STATE(186)] = 6163, - [SMALL_STATE(187)] = 6224, - [SMALL_STATE(188)] = 6285, - [SMALL_STATE(189)] = 6346, - [SMALL_STATE(190)] = 6457, - [SMALL_STATE(191)] = 6518, - [SMALL_STATE(192)] = 6579, - [SMALL_STATE(193)] = 6640, - [SMALL_STATE(194)] = 6701, - [SMALL_STATE(195)] = 6762, - [SMALL_STATE(196)] = 6823, - [SMALL_STATE(197)] = 6884, - [SMALL_STATE(198)] = 6945, - [SMALL_STATE(199)] = 7006, - [SMALL_STATE(200)] = 7067, - [SMALL_STATE(201)] = 7128, - [SMALL_STATE(202)] = 7189, - [SMALL_STATE(203)] = 7250, - [SMALL_STATE(204)] = 7311, - [SMALL_STATE(205)] = 7372, - [SMALL_STATE(206)] = 7433, - [SMALL_STATE(207)] = 7494, - [SMALL_STATE(208)] = 7555, - [SMALL_STATE(209)] = 7616, - [SMALL_STATE(210)] = 7677, - [SMALL_STATE(211)] = 7738, - [SMALL_STATE(212)] = 7846, - [SMALL_STATE(213)] = 7949, - [SMALL_STATE(214)] = 8054, - [SMALL_STATE(215)] = 8159, - [SMALL_STATE(216)] = 8262, - [SMALL_STATE(217)] = 8365, - [SMALL_STATE(218)] = 8469, - [SMALL_STATE(219)] = 8569, - [SMALL_STATE(220)] = 8673, - [SMALL_STATE(221)] = 8773, - [SMALL_STATE(222)] = 8877, - [SMALL_STATE(223)] = 8974, - [SMALL_STATE(224)] = 9071, - [SMALL_STATE(225)] = 9168, - [SMALL_STATE(226)] = 9265, - [SMALL_STATE(227)] = 9362, - [SMALL_STATE(228)] = 9459, - [SMALL_STATE(229)] = 9556, - [SMALL_STATE(230)] = 9655, - [SMALL_STATE(231)] = 9752, - [SMALL_STATE(232)] = 9849, - [SMALL_STATE(233)] = 9946, - [SMALL_STATE(234)] = 10043, - [SMALL_STATE(235)] = 10140, - [SMALL_STATE(236)] = 10234, - [SMALL_STATE(237)] = 10328, - [SMALL_STATE(238)] = 10384, - [SMALL_STATE(239)] = 10478, - [SMALL_STATE(240)] = 10572, - [SMALL_STATE(241)] = 10666, - [SMALL_STATE(242)] = 10760, - [SMALL_STATE(243)] = 10854, - [SMALL_STATE(244)] = 10948, - [SMALL_STATE(245)] = 11042, - [SMALL_STATE(246)] = 11136, - [SMALL_STATE(247)] = 11230, - [SMALL_STATE(248)] = 11324, - [SMALL_STATE(249)] = 11418, - [SMALL_STATE(250)] = 11474, - [SMALL_STATE(251)] = 11568, - [SMALL_STATE(252)] = 11662, - [SMALL_STATE(253)] = 11756, - [SMALL_STATE(254)] = 11850, - [SMALL_STATE(255)] = 11906, - [SMALL_STATE(256)] = 12000, - [SMALL_STATE(257)] = 12094, - [SMALL_STATE(258)] = 12188, - [SMALL_STATE(259)] = 12282, - [SMALL_STATE(260)] = 12380, - [SMALL_STATE(261)] = 12474, - [SMALL_STATE(262)] = 12568, - [SMALL_STATE(263)] = 12624, - [SMALL_STATE(264)] = 12718, - [SMALL_STATE(265)] = 12812, - [SMALL_STATE(266)] = 12906, - [SMALL_STATE(267)] = 13000, - [SMALL_STATE(268)] = 13094, - [SMALL_STATE(269)] = 13188, - [SMALL_STATE(270)] = 13282, - [SMALL_STATE(271)] = 13376, - [SMALL_STATE(272)] = 13432, - [SMALL_STATE(273)] = 13526, - [SMALL_STATE(274)] = 13620, - [SMALL_STATE(275)] = 13714, - [SMALL_STATE(276)] = 13808, - [SMALL_STATE(277)] = 13902, - [SMALL_STATE(278)] = 13996, - [SMALL_STATE(279)] = 14090, - [SMALL_STATE(280)] = 14146, - [SMALL_STATE(281)] = 14240, - [SMALL_STATE(282)] = 14334, - [SMALL_STATE(283)] = 14428, - [SMALL_STATE(284)] = 14484, - [SMALL_STATE(285)] = 14578, - [SMALL_STATE(286)] = 14634, - [SMALL_STATE(287)] = 14690, - [SMALL_STATE(288)] = 14784, - [SMALL_STATE(289)] = 14878, - [SMALL_STATE(290)] = 14972, - [SMALL_STATE(291)] = 15066, - [SMALL_STATE(292)] = 15121, - [SMALL_STATE(293)] = 15176, - [SMALL_STATE(294)] = 15231, - [SMALL_STATE(295)] = 15286, - [SMALL_STATE(296)] = 15381, - [SMALL_STATE(297)] = 15436, - [SMALL_STATE(298)] = 15491, - [SMALL_STATE(299)] = 15546, - [SMALL_STATE(300)] = 15601, - [SMALL_STATE(301)] = 15656, - [SMALL_STATE(302)] = 15747, - [SMALL_STATE(303)] = 15802, - [SMALL_STATE(304)] = 15857, - [SMALL_STATE(305)] = 15912, - [SMALL_STATE(306)] = 15967, - [SMALL_STATE(307)] = 16022, - [SMALL_STATE(308)] = 16077, - [SMALL_STATE(309)] = 16132, - [SMALL_STATE(310)] = 16187, - [SMALL_STATE(311)] = 16242, - [SMALL_STATE(312)] = 16297, - [SMALL_STATE(313)] = 16352, - [SMALL_STATE(314)] = 16407, - [SMALL_STATE(315)] = 16462, - [SMALL_STATE(316)] = 16517, - [SMALL_STATE(317)] = 16572, - [SMALL_STATE(318)] = 16627, - [SMALL_STATE(319)] = 16682, - [SMALL_STATE(320)] = 16737, - [SMALL_STATE(321)] = 16828, - [SMALL_STATE(322)] = 16883, - [SMALL_STATE(323)] = 16974, - [SMALL_STATE(324)] = 17029, - [SMALL_STATE(325)] = 17084, - [SMALL_STATE(326)] = 17139, - [SMALL_STATE(327)] = 17194, - [SMALL_STATE(328)] = 17249, - [SMALL_STATE(329)] = 17304, - [SMALL_STATE(330)] = 17359, - [SMALL_STATE(331)] = 17414, - [SMALL_STATE(332)] = 17469, - [SMALL_STATE(333)] = 17524, - [SMALL_STATE(334)] = 17579, - [SMALL_STATE(335)] = 17634, - [SMALL_STATE(336)] = 17689, - [SMALL_STATE(337)] = 17744, - [SMALL_STATE(338)] = 17799, - [SMALL_STATE(339)] = 17854, - [SMALL_STATE(340)] = 17909, - [SMALL_STATE(341)] = 17964, - [SMALL_STATE(342)] = 18019, - [SMALL_STATE(343)] = 18074, - [SMALL_STATE(344)] = 18129, - [SMALL_STATE(345)] = 18184, - [SMALL_STATE(346)] = 18239, - [SMALL_STATE(347)] = 18294, - [SMALL_STATE(348)] = 18349, - [SMALL_STATE(349)] = 18444, - [SMALL_STATE(350)] = 18499, - [SMALL_STATE(351)] = 18554, - [SMALL_STATE(352)] = 18609, - [SMALL_STATE(353)] = 18664, - [SMALL_STATE(354)] = 18719, - [SMALL_STATE(355)] = 18774, - [SMALL_STATE(356)] = 18829, - [SMALL_STATE(357)] = 18884, - [SMALL_STATE(358)] = 18939, - [SMALL_STATE(359)] = 18994, - [SMALL_STATE(360)] = 19049, - [SMALL_STATE(361)] = 19104, - [SMALL_STATE(362)] = 19159, - [SMALL_STATE(363)] = 19214, - [SMALL_STATE(364)] = 19269, - [SMALL_STATE(365)] = 19324, - [SMALL_STATE(366)] = 19379, - [SMALL_STATE(367)] = 19434, - [SMALL_STATE(368)] = 19489, - [SMALL_STATE(369)] = 19544, - [SMALL_STATE(370)] = 19599, - [SMALL_STATE(371)] = 19654, - [SMALL_STATE(372)] = 19709, - [SMALL_STATE(373)] = 19764, - [SMALL_STATE(374)] = 19819, - [SMALL_STATE(375)] = 19874, - [SMALL_STATE(376)] = 19929, - [SMALL_STATE(377)] = 19984, - [SMALL_STATE(378)] = 20039, - [SMALL_STATE(379)] = 20094, - [SMALL_STATE(380)] = 20149, - [SMALL_STATE(381)] = 20204, - [SMALL_STATE(382)] = 20259, - [SMALL_STATE(383)] = 20314, - [SMALL_STATE(384)] = 20369, - [SMALL_STATE(385)] = 20424, - [SMALL_STATE(386)] = 20479, - [SMALL_STATE(387)] = 20534, - [SMALL_STATE(388)] = 20589, - [SMALL_STATE(389)] = 20644, - [SMALL_STATE(390)] = 20699, - [SMALL_STATE(391)] = 20754, - [SMALL_STATE(392)] = 20809, - [SMALL_STATE(393)] = 20864, - [SMALL_STATE(394)] = 20919, - [SMALL_STATE(395)] = 20974, - [SMALL_STATE(396)] = 21069, - [SMALL_STATE(397)] = 21124, - [SMALL_STATE(398)] = 21179, - [SMALL_STATE(399)] = 21234, - [SMALL_STATE(400)] = 21289, - [SMALL_STATE(401)] = 21344, - [SMALL_STATE(402)] = 21399, - [SMALL_STATE(403)] = 21454, - [SMALL_STATE(404)] = 21509, - [SMALL_STATE(405)] = 21564, - [SMALL_STATE(406)] = 21619, - [SMALL_STATE(407)] = 21674, - [SMALL_STATE(408)] = 21729, - [SMALL_STATE(409)] = 21784, - [SMALL_STATE(410)] = 21839, - [SMALL_STATE(411)] = 21894, - [SMALL_STATE(412)] = 21949, - [SMALL_STATE(413)] = 22004, - [SMALL_STATE(414)] = 22059, - [SMALL_STATE(415)] = 22114, - [SMALL_STATE(416)] = 22169, - [SMALL_STATE(417)] = 22224, - [SMALL_STATE(418)] = 22279, - [SMALL_STATE(419)] = 22374, - [SMALL_STATE(420)] = 22429, - [SMALL_STATE(421)] = 22484, - [SMALL_STATE(422)] = 22539, - [SMALL_STATE(423)] = 22594, - [SMALL_STATE(424)] = 22649, - [SMALL_STATE(425)] = 22704, - [SMALL_STATE(426)] = 22759, - [SMALL_STATE(427)] = 22814, - [SMALL_STATE(428)] = 22869, - [SMALL_STATE(429)] = 22924, - [SMALL_STATE(430)] = 22979, - [SMALL_STATE(431)] = 23034, - [SMALL_STATE(432)] = 23089, - [SMALL_STATE(433)] = 23144, - [SMALL_STATE(434)] = 23199, - [SMALL_STATE(435)] = 23254, - [SMALL_STATE(436)] = 23309, - [SMALL_STATE(437)] = 23364, - [SMALL_STATE(438)] = 23419, - [SMALL_STATE(439)] = 23474, - [SMALL_STATE(440)] = 23529, - [SMALL_STATE(441)] = 23584, - [SMALL_STATE(442)] = 23639, - [SMALL_STATE(443)] = 23694, - [SMALL_STATE(444)] = 23749, - [SMALL_STATE(445)] = 23804, - [SMALL_STATE(446)] = 23859, - [SMALL_STATE(447)] = 23954, - [SMALL_STATE(448)] = 24009, - [SMALL_STATE(449)] = 24064, - [SMALL_STATE(450)] = 24119, - [SMALL_STATE(451)] = 24174, - [SMALL_STATE(452)] = 24229, - [SMALL_STATE(453)] = 24284, - [SMALL_STATE(454)] = 24339, - [SMALL_STATE(455)] = 24394, - [SMALL_STATE(456)] = 24449, - [SMALL_STATE(457)] = 24504, - [SMALL_STATE(458)] = 24559, - [SMALL_STATE(459)] = 24614, - [SMALL_STATE(460)] = 24669, - [SMALL_STATE(461)] = 24724, - [SMALL_STATE(462)] = 24779, - [SMALL_STATE(463)] = 24834, - [SMALL_STATE(464)] = 24889, - [SMALL_STATE(465)] = 24944, - [SMALL_STATE(466)] = 24999, - [SMALL_STATE(467)] = 25054, - [SMALL_STATE(468)] = 25109, - [SMALL_STATE(469)] = 25164, - [SMALL_STATE(470)] = 25219, - [SMALL_STATE(471)] = 25273, - [SMALL_STATE(472)] = 25327, - [SMALL_STATE(473)] = 25381, - [SMALL_STATE(474)] = 25471, - [SMALL_STATE(475)] = 25525, - [SMALL_STATE(476)] = 25579, - [SMALL_STATE(477)] = 25633, - [SMALL_STATE(478)] = 25687, - [SMALL_STATE(479)] = 25741, - [SMALL_STATE(480)] = 25831, - [SMALL_STATE(481)] = 25885, - [SMALL_STATE(482)] = 25939, - [SMALL_STATE(483)] = 25993, - [SMALL_STATE(484)] = 26047, - [SMALL_STATE(485)] = 26101, - [SMALL_STATE(486)] = 26155, - [SMALL_STATE(487)] = 26209, - [SMALL_STATE(488)] = 26263, - [SMALL_STATE(489)] = 26317, - [SMALL_STATE(490)] = 26371, - [SMALL_STATE(491)] = 26425, - [SMALL_STATE(492)] = 26479, - [SMALL_STATE(493)] = 26532, - [SMALL_STATE(494)] = 26585, - [SMALL_STATE(495)] = 26638, - [SMALL_STATE(496)] = 26725, - [SMALL_STATE(497)] = 26777, - [SMALL_STATE(498)] = 26829, - [SMALL_STATE(499)] = 26881, - [SMALL_STATE(500)] = 26933, - [SMALL_STATE(501)] = 26985, - [SMALL_STATE(502)] = 27037, - [SMALL_STATE(503)] = 27089, - [SMALL_STATE(504)] = 27151, - [SMALL_STATE(505)] = 27213, - [SMALL_STATE(506)] = 27265, - [SMALL_STATE(507)] = 27351, - [SMALL_STATE(508)] = 27403, - [SMALL_STATE(509)] = 27489, - [SMALL_STATE(510)] = 27541, - [SMALL_STATE(511)] = 27593, - [SMALL_STATE(512)] = 27645, - [SMALL_STATE(513)] = 27697, - [SMALL_STATE(514)] = 27749, - [SMALL_STATE(515)] = 27801, - [SMALL_STATE(516)] = 27884, - [SMALL_STATE(517)] = 27935, - [SMALL_STATE(518)] = 27986, - [SMALL_STATE(519)] = 28051, - [SMALL_STATE(520)] = 28102, - [SMALL_STATE(521)] = 28153, - [SMALL_STATE(522)] = 28212, - [SMALL_STATE(523)] = 28295, - [SMALL_STATE(524)] = 28346, - [SMALL_STATE(525)] = 28397, - [SMALL_STATE(526)] = 28480, - [SMALL_STATE(527)] = 28563, - [SMALL_STATE(528)] = 28646, - [SMALL_STATE(529)] = 28729, - [SMALL_STATE(530)] = 28780, - [SMALL_STATE(531)] = 28863, - [SMALL_STATE(532)] = 28946, - [SMALL_STATE(533)] = 29029, - [SMALL_STATE(534)] = 29112, - [SMALL_STATE(535)] = 29195, - [SMALL_STATE(536)] = 29252, - [SMALL_STATE(537)] = 29308, - [SMALL_STATE(538)] = 29374, - [SMALL_STATE(539)] = 29430, - [SMALL_STATE(540)] = 29486, - [SMALL_STATE(541)] = 29553, - [SMALL_STATE(542)] = 29620, - [SMALL_STATE(543)] = 29667, - [SMALL_STATE(544)] = 29714, - [SMALL_STATE(545)] = 29761, - [SMALL_STATE(546)] = 29808, - [SMALL_STATE(547)] = 29879, - [SMALL_STATE(548)] = 29950, - [SMALL_STATE(549)] = 29997, - [SMALL_STATE(550)] = 30044, - [SMALL_STATE(551)] = 30091, - [SMALL_STATE(552)] = 30140, - [SMALL_STATE(553)] = 30208, - [SMALL_STATE(554)] = 30254, - [SMALL_STATE(555)] = 30338, - [SMALL_STATE(556)] = 30384, - [SMALL_STATE(557)] = 30430, - [SMALL_STATE(558)] = 30476, - [SMALL_STATE(559)] = 30555, - [SMALL_STATE(560)] = 30607, - [SMALL_STATE(561)] = 30659, - [SMALL_STATE(562)] = 30711, - [SMALL_STATE(563)] = 30763, - [SMALL_STATE(564)] = 30821, - [SMALL_STATE(565)] = 30873, - [SMALL_STATE(566)] = 30920, - [SMALL_STATE(567)] = 31001, - [SMALL_STATE(568)] = 31082, - [SMALL_STATE(569)] = 31124, - [SMALL_STATE(570)] = 31165, - [SMALL_STATE(571)] = 31220, - [SMALL_STATE(572)] = 31276, - [SMALL_STATE(573)] = 31332, - [SMALL_STATE(574)] = 31388, - [SMALL_STATE(575)] = 31444, - [SMALL_STATE(576)] = 31487, - [SMALL_STATE(577)] = 31557, - [SMALL_STATE(578)] = 31607, - [SMALL_STATE(579)] = 31652, - [SMALL_STATE(580)] = 31701, - [SMALL_STATE(581)] = 31743, - [SMALL_STATE(582)] = 31784, - [SMALL_STATE(583)] = 31839, - [SMALL_STATE(584)] = 31875, - [SMALL_STATE(585)] = 31931, - [SMALL_STATE(586)] = 31971, - [SMALL_STATE(587)] = 32027, - [SMALL_STATE(588)] = 32083, - [SMALL_STATE(589)] = 32139, - [SMALL_STATE(590)] = 32195, - [SMALL_STATE(591)] = 32242, - [SMALL_STATE(592)] = 32299, - [SMALL_STATE(593)] = 32356, - [SMALL_STATE(594)] = 32413, - [SMALL_STATE(595)] = 32450, - [SMALL_STATE(596)] = 32507, - [SMALL_STATE(597)] = 32564, - [SMALL_STATE(598)] = 32596, - [SMALL_STATE(599)] = 32650, - [SMALL_STATE(600)] = 32704, - [SMALL_STATE(601)] = 32758, - [SMALL_STATE(602)] = 32808, - [SMALL_STATE(603)] = 32866, - [SMALL_STATE(604)] = 32920, - [SMALL_STATE(605)] = 32974, - [SMALL_STATE(606)] = 33008, - [SMALL_STATE(607)] = 33062, - [SMALL_STATE(608)] = 33102, - [SMALL_STATE(609)] = 33153, - [SMALL_STATE(610)] = 33204, - [SMALL_STATE(611)] = 33245, - [SMALL_STATE(612)] = 33294, - [SMALL_STATE(613)] = 33349, - [SMALL_STATE(614)] = 33400, - [SMALL_STATE(615)] = 33455, - [SMALL_STATE(616)] = 33506, - [SMALL_STATE(617)] = 33535, - [SMALL_STATE(618)] = 33586, - [SMALL_STATE(619)] = 33641, - [SMALL_STATE(620)] = 33670, - [SMALL_STATE(621)] = 33699, - [SMALL_STATE(622)] = 33750, - [SMALL_STATE(623)] = 33802, - [SMALL_STATE(624)] = 33854, - [SMALL_STATE(625)] = 33906, - [SMALL_STATE(626)] = 33957, - [SMALL_STATE(627)] = 34000, - [SMALL_STATE(628)] = 34049, - [SMALL_STATE(629)] = 34100, - [SMALL_STATE(630)] = 34149, - [SMALL_STATE(631)] = 34180, - [SMALL_STATE(632)] = 34227, - [SMALL_STATE(633)] = 34256, - [SMALL_STATE(634)] = 34299, - [SMALL_STATE(635)] = 34348, - [SMALL_STATE(636)] = 34399, - [SMALL_STATE(637)] = 34430, - [SMALL_STATE(638)] = 34471, - [SMALL_STATE(639)] = 34520, - [SMALL_STATE(640)] = 34551, - [SMALL_STATE(641)] = 34595, - [SMALL_STATE(642)] = 34623, - [SMALL_STATE(643)] = 34651, - [SMALL_STATE(644)] = 34697, - [SMALL_STATE(645)] = 34743, - [SMALL_STATE(646)] = 34769, - [SMALL_STATE(647)] = 34795, - [SMALL_STATE(648)] = 34823, - [SMALL_STATE(649)] = 34851, - [SMALL_STATE(650)] = 34879, - [SMALL_STATE(651)] = 34905, - [SMALL_STATE(652)] = 34933, - [SMALL_STATE(653)] = 34961, - [SMALL_STATE(654)] = 34989, - [SMALL_STATE(655)] = 35015, - [SMALL_STATE(656)] = 35043, - [SMALL_STATE(657)] = 35089, - [SMALL_STATE(658)] = 35117, - [SMALL_STATE(659)] = 35143, - [SMALL_STATE(660)] = 35186, - [SMALL_STATE(661)] = 35215, - [SMALL_STATE(662)] = 35256, - [SMALL_STATE(663)] = 35291, - [SMALL_STATE(664)] = 35320, - [SMALL_STATE(665)] = 35365, - [SMALL_STATE(666)] = 35408, - [SMALL_STATE(667)] = 35453, - [SMALL_STATE(668)] = 35496, - [SMALL_STATE(669)] = 35541, - [SMALL_STATE(670)] = 35586, - [SMALL_STATE(671)] = 35615, - [SMALL_STATE(672)] = 35644, - [SMALL_STATE(673)] = 35673, - [SMALL_STATE(674)] = 35708, - [SMALL_STATE(675)] = 35737, - [SMALL_STATE(676)] = 35782, - [SMALL_STATE(677)] = 35819, - [SMALL_STATE(678)] = 35864, - [SMALL_STATE(679)] = 35904, - [SMALL_STATE(680)] = 35928, - [SMALL_STATE(681)] = 35968, - [SMALL_STATE(682)] = 36008, - [SMALL_STATE(683)] = 36032, - [SMALL_STATE(684)] = 36072, - [SMALL_STATE(685)] = 36114, - [SMALL_STATE(686)] = 36156, - [SMALL_STATE(687)] = 36196, - [SMALL_STATE(688)] = 36220, - [SMALL_STATE(689)] = 36262, - [SMALL_STATE(690)] = 36302, - [SMALL_STATE(691)] = 36342, - [SMALL_STATE(692)] = 36366, - [SMALL_STATE(693)] = 36408, - [SMALL_STATE(694)] = 36448, - [SMALL_STATE(695)] = 36486, - [SMALL_STATE(696)] = 36510, - [SMALL_STATE(697)] = 36552, - [SMALL_STATE(698)] = 36592, - [SMALL_STATE(699)] = 36627, - [SMALL_STATE(700)] = 36666, - [SMALL_STATE(701)] = 36703, - [SMALL_STATE(702)] = 36742, - [SMALL_STATE(703)] = 36769, - [SMALL_STATE(704)] = 36796, - [SMALL_STATE(705)] = 36835, - [SMALL_STATE(706)] = 36872, - [SMALL_STATE(707)] = 36911, - [SMALL_STATE(708)] = 36950, - [SMALL_STATE(709)] = 36989, - [SMALL_STATE(710)] = 37024, - [SMALL_STATE(711)] = 37063, - [SMALL_STATE(712)] = 37102, - [SMALL_STATE(713)] = 37137, - [SMALL_STATE(714)] = 37176, - [SMALL_STATE(715)] = 37215, - [SMALL_STATE(716)] = 37254, - [SMALL_STATE(717)] = 37293, - [SMALL_STATE(718)] = 37332, - [SMALL_STATE(719)] = 37371, - [SMALL_STATE(720)] = 37406, - [SMALL_STATE(721)] = 37443, - [SMALL_STATE(722)] = 37480, - [SMALL_STATE(723)] = 37517, - [SMALL_STATE(724)] = 37553, - [SMALL_STATE(725)] = 37589, - [SMALL_STATE(726)] = 37623, - [SMALL_STATE(727)] = 37655, - [SMALL_STATE(728)] = 37689, - [SMALL_STATE(729)] = 37725, - [SMALL_STATE(730)] = 37759, - [SMALL_STATE(731)] = 37795, - [SMALL_STATE(732)] = 37829, - [SMALL_STATE(733)] = 37861, - [SMALL_STATE(734)] = 37901, - [SMALL_STATE(735)] = 37930, - [SMALL_STATE(736)] = 37961, - [SMALL_STATE(737)] = 37990, - [SMALL_STATE(738)] = 38019, - [SMALL_STATE(739)] = 38040, - [SMALL_STATE(740)] = 38071, - [SMALL_STATE(741)] = 38100, - [SMALL_STATE(742)] = 38133, - [SMALL_STATE(743)] = 38162, - [SMALL_STATE(744)] = 38193, - [SMALL_STATE(745)] = 38222, - [SMALL_STATE(746)] = 38251, - [SMALL_STATE(747)] = 38282, - [SMALL_STATE(748)] = 38311, - [SMALL_STATE(749)] = 38340, - [SMALL_STATE(750)] = 38369, - [SMALL_STATE(751)] = 38398, - [SMALL_STATE(752)] = 38427, - [SMALL_STATE(753)] = 38456, - [SMALL_STATE(754)] = 38485, - [SMALL_STATE(755)] = 38514, - [SMALL_STATE(756)] = 38543, - [SMALL_STATE(757)] = 38572, - [SMALL_STATE(758)] = 38601, - [SMALL_STATE(759)] = 38630, - [SMALL_STATE(760)] = 38661, - [SMALL_STATE(761)] = 38692, - [SMALL_STATE(762)] = 38723, - [SMALL_STATE(763)] = 38752, - [SMALL_STATE(764)] = 38781, - [SMALL_STATE(765)] = 38810, - [SMALL_STATE(766)] = 38839, - [SMALL_STATE(767)] = 38868, - [SMALL_STATE(768)] = 38899, - [SMALL_STATE(769)] = 38928, - [SMALL_STATE(770)] = 38957, - [SMALL_STATE(771)] = 38978, - [SMALL_STATE(772)] = 39007, - [SMALL_STATE(773)] = 39036, - [SMALL_STATE(774)] = 39065, - [SMALL_STATE(775)] = 39094, - [SMALL_STATE(776)] = 39115, - [SMALL_STATE(777)] = 39136, - [SMALL_STATE(778)] = 39165, - [SMALL_STATE(779)] = 39194, - [SMALL_STATE(780)] = 39223, - [SMALL_STATE(781)] = 39252, - [SMALL_STATE(782)] = 39281, - [SMALL_STATE(783)] = 39310, - [SMALL_STATE(784)] = 39339, - [SMALL_STATE(785)] = 39368, - [SMALL_STATE(786)] = 39397, - [SMALL_STATE(787)] = 39426, - [SMALL_STATE(788)] = 39455, - [SMALL_STATE(789)] = 39484, - [SMALL_STATE(790)] = 39515, - [SMALL_STATE(791)] = 39544, - [SMALL_STATE(792)] = 39573, - [SMALL_STATE(793)] = 39598, - [SMALL_STATE(794)] = 39619, - [SMALL_STATE(795)] = 39640, - [SMALL_STATE(796)] = 39661, - [SMALL_STATE(797)] = 39690, - [SMALL_STATE(798)] = 39721, - [SMALL_STATE(799)] = 39750, - [SMALL_STATE(800)] = 39779, - [SMALL_STATE(801)] = 39800, - [SMALL_STATE(802)] = 39829, - [SMALL_STATE(803)] = 39858, - [SMALL_STATE(804)] = 39887, - [SMALL_STATE(805)] = 39916, - [SMALL_STATE(806)] = 39942, - [SMALL_STATE(807)] = 39970, - [SMALL_STATE(808)] = 39996, - [SMALL_STATE(809)] = 40022, - [SMALL_STATE(810)] = 40048, - [SMALL_STATE(811)] = 40074, - [SMALL_STATE(812)] = 40100, - [SMALL_STATE(813)] = 40126, - [SMALL_STATE(814)] = 40152, - [SMALL_STATE(815)] = 40178, - [SMALL_STATE(816)] = 40204, - [SMALL_STATE(817)] = 40230, - [SMALL_STATE(818)] = 40258, - [SMALL_STATE(819)] = 40284, - [SMALL_STATE(820)] = 40310, - [SMALL_STATE(821)] = 40336, - [SMALL_STATE(822)] = 40362, - [SMALL_STATE(823)] = 40388, - [SMALL_STATE(824)] = 40414, - [SMALL_STATE(825)] = 40440, - [SMALL_STATE(826)] = 40466, - [SMALL_STATE(827)] = 40492, - [SMALL_STATE(828)] = 40518, - [SMALL_STATE(829)] = 40544, - [SMALL_STATE(830)] = 40570, - [SMALL_STATE(831)] = 40596, - [SMALL_STATE(832)] = 40618, - [SMALL_STATE(833)] = 40640, - [SMALL_STATE(834)] = 40672, - [SMALL_STATE(835)] = 40698, - [SMALL_STATE(836)] = 40724, - [SMALL_STATE(837)] = 40750, - [SMALL_STATE(838)] = 40776, - [SMALL_STATE(839)] = 40802, - [SMALL_STATE(840)] = 40828, - [SMALL_STATE(841)] = 40854, - [SMALL_STATE(842)] = 40880, - [SMALL_STATE(843)] = 40908, - [SMALL_STATE(844)] = 40936, - [SMALL_STATE(845)] = 40962, - [SMALL_STATE(846)] = 40988, - [SMALL_STATE(847)] = 41016, - [SMALL_STATE(848)] = 41042, - [SMALL_STATE(849)] = 41068, - [SMALL_STATE(850)] = 41096, - [SMALL_STATE(851)] = 41124, - [SMALL_STATE(852)] = 41150, - [SMALL_STATE(853)] = 41176, - [SMALL_STATE(854)] = 41202, - [SMALL_STATE(855)] = 41228, - [SMALL_STATE(856)] = 41254, - [SMALL_STATE(857)] = 41280, - [SMALL_STATE(858)] = 41306, - [SMALL_STATE(859)] = 41332, - [SMALL_STATE(860)] = 41358, - [SMALL_STATE(861)] = 41384, - [SMALL_STATE(862)] = 41406, - [SMALL_STATE(863)] = 41432, - [SMALL_STATE(864)] = 41460, - [SMALL_STATE(865)] = 41486, - [SMALL_STATE(866)] = 41512, - [SMALL_STATE(867)] = 41538, - [SMALL_STATE(868)] = 41564, - [SMALL_STATE(869)] = 41587, - [SMALL_STATE(870)] = 41620, - [SMALL_STATE(871)] = 41655, - [SMALL_STATE(872)] = 41688, - [SMALL_STATE(873)] = 41721, - [SMALL_STATE(874)] = 41744, - [SMALL_STATE(875)] = 41767, - [SMALL_STATE(876)] = 41787, - [SMALL_STATE(877)] = 41807, - [SMALL_STATE(878)] = 41829, - [SMALL_STATE(879)] = 41849, - [SMALL_STATE(880)] = 41871, - [SMALL_STATE(881)] = 41889, - [SMALL_STATE(882)] = 41911, - [SMALL_STATE(883)] = 41931, - [SMALL_STATE(884)] = 41950, - [SMALL_STATE(885)] = 41979, - [SMALL_STATE(886)] = 41998, - [SMALL_STATE(887)] = 42017, - [SMALL_STATE(888)] = 42046, - [SMALL_STATE(889)] = 42062, - [SMALL_STATE(890)] = 42078, - [SMALL_STATE(891)] = 42110, - [SMALL_STATE(892)] = 42142, - [SMALL_STATE(893)] = 42158, - [SMALL_STATE(894)] = 42174, - [SMALL_STATE(895)] = 42190, - [SMALL_STATE(896)] = 42222, - [SMALL_STATE(897)] = 42254, - [SMALL_STATE(898)] = 42286, - [SMALL_STATE(899)] = 42318, - [SMALL_STATE(900)] = 42345, - [SMALL_STATE(901)] = 42370, - [SMALL_STATE(902)] = 42397, - [SMALL_STATE(903)] = 42426, - [SMALL_STATE(904)] = 42453, - [SMALL_STATE(905)] = 42480, - [SMALL_STATE(906)] = 42509, - [SMALL_STATE(907)] = 42536, - [SMALL_STATE(908)] = 42567, - [SMALL_STATE(909)] = 42594, - [SMALL_STATE(910)] = 42621, - [SMALL_STATE(911)] = 42652, - [SMALL_STATE(912)] = 42679, - [SMALL_STATE(913)] = 42710, - [SMALL_STATE(914)] = 42737, - [SMALL_STATE(915)] = 42763, - [SMALL_STATE(916)] = 42789, - [SMALL_STATE(917)] = 42805, - [SMALL_STATE(918)] = 42821, - [SMALL_STATE(919)] = 42847, - [SMALL_STATE(920)] = 42863, - [SMALL_STATE(921)] = 42879, - [SMALL_STATE(922)] = 42895, - [SMALL_STATE(923)] = 42911, - [SMALL_STATE(924)] = 42927, - [SMALL_STATE(925)] = 42949, - [SMALL_STATE(926)] = 42971, - [SMALL_STATE(927)] = 42987, - [SMALL_STATE(928)] = 43003, - [SMALL_STATE(929)] = 43019, - [SMALL_STATE(930)] = 43035, - [SMALL_STATE(931)] = 43051, - [SMALL_STATE(932)] = 43067, - [SMALL_STATE(933)] = 43083, - [SMALL_STATE(934)] = 43099, - [SMALL_STATE(935)] = 43115, - [SMALL_STATE(936)] = 43131, - [SMALL_STATE(937)] = 43147, - [SMALL_STATE(938)] = 43163, - [SMALL_STATE(939)] = 43187, - [SMALL_STATE(940)] = 43203, - [SMALL_STATE(941)] = 43219, - [SMALL_STATE(942)] = 43235, - [SMALL_STATE(943)] = 43251, - [SMALL_STATE(944)] = 43267, - [SMALL_STATE(945)] = 43283, - [SMALL_STATE(946)] = 43299, - [SMALL_STATE(947)] = 43315, - [SMALL_STATE(948)] = 43331, - [SMALL_STATE(949)] = 43347, - [SMALL_STATE(950)] = 43371, - [SMALL_STATE(951)] = 43387, - [SMALL_STATE(952)] = 43415, - [SMALL_STATE(953)] = 43431, - [SMALL_STATE(954)] = 43447, - [SMALL_STATE(955)] = 43463, - [SMALL_STATE(956)] = 43479, - [SMALL_STATE(957)] = 43495, - [SMALL_STATE(958)] = 43511, - [SMALL_STATE(959)] = 43527, - [SMALL_STATE(960)] = 43553, - [SMALL_STATE(961)] = 43569, - [SMALL_STATE(962)] = 43585, - [SMALL_STATE(963)] = 43610, - [SMALL_STATE(964)] = 43623, - [SMALL_STATE(965)] = 43648, - [SMALL_STATE(966)] = 43671, - [SMALL_STATE(967)] = 43686, - [SMALL_STATE(968)] = 43703, - [SMALL_STATE(969)] = 43716, - [SMALL_STATE(970)] = 43729, - [SMALL_STATE(971)] = 43754, - [SMALL_STATE(972)] = 43779, - [SMALL_STATE(973)] = 43804, - [SMALL_STATE(974)] = 43829, - [SMALL_STATE(975)] = 43854, - [SMALL_STATE(976)] = 43879, - [SMALL_STATE(977)] = 43892, - [SMALL_STATE(978)] = 43917, - [SMALL_STATE(979)] = 43942, - [SMALL_STATE(980)] = 43955, - [SMALL_STATE(981)] = 43970, - [SMALL_STATE(982)] = 43983, - [SMALL_STATE(983)] = 43998, - [SMALL_STATE(984)] = 44023, - [SMALL_STATE(985)] = 44036, - [SMALL_STATE(986)] = 44061, - [SMALL_STATE(987)] = 44082, - [SMALL_STATE(988)] = 44107, - [SMALL_STATE(989)] = 44122, - [SMALL_STATE(990)] = 44147, - [SMALL_STATE(991)] = 44168, - [SMALL_STATE(992)] = 44183, - [SMALL_STATE(993)] = 44208, - [SMALL_STATE(994)] = 44233, - [SMALL_STATE(995)] = 44246, - [SMALL_STATE(996)] = 44259, - [SMALL_STATE(997)] = 44284, - [SMALL_STATE(998)] = 44299, - [SMALL_STATE(999)] = 44312, - [SMALL_STATE(1000)] = 44329, - [SMALL_STATE(1001)] = 44354, - [SMALL_STATE(1002)] = 44375, - [SMALL_STATE(1003)] = 44388, - [SMALL_STATE(1004)] = 44405, - [SMALL_STATE(1005)] = 44418, - [SMALL_STATE(1006)] = 44443, - [SMALL_STATE(1007)] = 44456, - [SMALL_STATE(1008)] = 44469, - [SMALL_STATE(1009)] = 44494, - [SMALL_STATE(1010)] = 44507, - [SMALL_STATE(1011)] = 44520, - [SMALL_STATE(1012)] = 44533, - [SMALL_STATE(1013)] = 44555, - [SMALL_STATE(1014)] = 44577, - [SMALL_STATE(1015)] = 44597, - [SMALL_STATE(1016)] = 44619, - [SMALL_STATE(1017)] = 44631, - [SMALL_STATE(1018)] = 44643, - [SMALL_STATE(1019)] = 44655, - [SMALL_STATE(1020)] = 44675, - [SMALL_STATE(1021)] = 44687, - [SMALL_STATE(1022)] = 44709, - [SMALL_STATE(1023)] = 44721, - [SMALL_STATE(1024)] = 44743, - [SMALL_STATE(1025)] = 44765, - [SMALL_STATE(1026)] = 44785, - [SMALL_STATE(1027)] = 44807, - [SMALL_STATE(1028)] = 44829, - [SMALL_STATE(1029)] = 44851, - [SMALL_STATE(1030)] = 44871, - [SMALL_STATE(1031)] = 44891, - [SMALL_STATE(1032)] = 44911, - [SMALL_STATE(1033)] = 44931, - [SMALL_STATE(1034)] = 44945, - [SMALL_STATE(1035)] = 44965, - [SMALL_STATE(1036)] = 44983, - [SMALL_STATE(1037)] = 45001, - [SMALL_STATE(1038)] = 45023, - [SMALL_STATE(1039)] = 45039, - [SMALL_STATE(1040)] = 45061, - [SMALL_STATE(1041)] = 45083, - [SMALL_STATE(1042)] = 45105, - [SMALL_STATE(1043)] = 45125, - [SMALL_STATE(1044)] = 45143, - [SMALL_STATE(1045)] = 45165, - [SMALL_STATE(1046)] = 45185, - [SMALL_STATE(1047)] = 45205, - [SMALL_STATE(1048)] = 45224, - [SMALL_STATE(1049)] = 45243, - [SMALL_STATE(1050)] = 45258, - [SMALL_STATE(1051)] = 45277, - [SMALL_STATE(1052)] = 45288, - [SMALL_STATE(1053)] = 45307, - [SMALL_STATE(1054)] = 45322, - [SMALL_STATE(1055)] = 45341, - [SMALL_STATE(1056)] = 45360, - [SMALL_STATE(1057)] = 45379, - [SMALL_STATE(1058)] = 45396, - [SMALL_STATE(1059)] = 45411, - [SMALL_STATE(1060)] = 45430, - [SMALL_STATE(1061)] = 45445, - [SMALL_STATE(1062)] = 45464, - [SMALL_STATE(1063)] = 45483, - [SMALL_STATE(1064)] = 45500, - [SMALL_STATE(1065)] = 45519, - [SMALL_STATE(1066)] = 45538, - [SMALL_STATE(1067)] = 45555, - [SMALL_STATE(1068)] = 45574, - [SMALL_STATE(1069)] = 45593, - [SMALL_STATE(1070)] = 45612, - [SMALL_STATE(1071)] = 45631, - [SMALL_STATE(1072)] = 45650, - [SMALL_STATE(1073)] = 45667, - [SMALL_STATE(1074)] = 45686, - [SMALL_STATE(1075)] = 45705, - [SMALL_STATE(1076)] = 45718, - [SMALL_STATE(1077)] = 45737, - [SMALL_STATE(1078)] = 45756, - [SMALL_STATE(1079)] = 45775, - [SMALL_STATE(1080)] = 45794, - [SMALL_STATE(1081)] = 45813, - [SMALL_STATE(1082)] = 45832, - [SMALL_STATE(1083)] = 45847, - [SMALL_STATE(1084)] = 45866, - [SMALL_STATE(1085)] = 45881, - [SMALL_STATE(1086)] = 45900, - [SMALL_STATE(1087)] = 45919, - [SMALL_STATE(1088)] = 45938, - [SMALL_STATE(1089)] = 45957, - [SMALL_STATE(1090)] = 45976, - [SMALL_STATE(1091)] = 45995, - [SMALL_STATE(1092)] = 46012, - [SMALL_STATE(1093)] = 46031, - [SMALL_STATE(1094)] = 46050, - [SMALL_STATE(1095)] = 46069, - [SMALL_STATE(1096)] = 46088, - [SMALL_STATE(1097)] = 46105, - [SMALL_STATE(1098)] = 46124, - [SMALL_STATE(1099)] = 46143, - [SMALL_STATE(1100)] = 46162, - [SMALL_STATE(1101)] = 46181, - [SMALL_STATE(1102)] = 46196, - [SMALL_STATE(1103)] = 46215, - [SMALL_STATE(1104)] = 46228, - [SMALL_STATE(1105)] = 46247, - [SMALL_STATE(1106)] = 46264, - [SMALL_STATE(1107)] = 46283, - [SMALL_STATE(1108)] = 46302, - [SMALL_STATE(1109)] = 46321, - [SMALL_STATE(1110)] = 46340, - [SMALL_STATE(1111)] = 46357, - [SMALL_STATE(1112)] = 46376, - [SMALL_STATE(1113)] = 46391, - [SMALL_STATE(1114)] = 46410, - [SMALL_STATE(1115)] = 46429, - [SMALL_STATE(1116)] = 46448, - [SMALL_STATE(1117)] = 46461, - [SMALL_STATE(1118)] = 46480, - [SMALL_STATE(1119)] = 46491, - [SMALL_STATE(1120)] = 46506, - [SMALL_STATE(1121)] = 46525, - [SMALL_STATE(1122)] = 46544, - [SMALL_STATE(1123)] = 46561, - [SMALL_STATE(1124)] = 46578, - [SMALL_STATE(1125)] = 46597, - [SMALL_STATE(1126)] = 46616, - [SMALL_STATE(1127)] = 46631, - [SMALL_STATE(1128)] = 46650, - [SMALL_STATE(1129)] = 46669, - [SMALL_STATE(1130)] = 46688, - [SMALL_STATE(1131)] = 46707, - [SMALL_STATE(1132)] = 46723, - [SMALL_STATE(1133)] = 46737, - [SMALL_STATE(1134)] = 46747, - [SMALL_STATE(1135)] = 46763, - [SMALL_STATE(1136)] = 46777, - [SMALL_STATE(1137)] = 46789, - [SMALL_STATE(1138)] = 46803, - [SMALL_STATE(1139)] = 46817, - [SMALL_STATE(1140)] = 46827, - [SMALL_STATE(1141)] = 46839, - [SMALL_STATE(1142)] = 46855, - [SMALL_STATE(1143)] = 46871, - [SMALL_STATE(1144)] = 46885, - [SMALL_STATE(1145)] = 46895, - [SMALL_STATE(1146)] = 46907, - [SMALL_STATE(1147)] = 46923, - [SMALL_STATE(1148)] = 46939, - [SMALL_STATE(1149)] = 46955, - [SMALL_STATE(1150)] = 46969, - [SMALL_STATE(1151)] = 46985, - [SMALL_STATE(1152)] = 46999, - [SMALL_STATE(1153)] = 47013, - [SMALL_STATE(1154)] = 47029, - [SMALL_STATE(1155)] = 47045, - [SMALL_STATE(1156)] = 47059, - [SMALL_STATE(1157)] = 47069, - [SMALL_STATE(1158)] = 47079, - [SMALL_STATE(1159)] = 47089, - [SMALL_STATE(1160)] = 47099, - [SMALL_STATE(1161)] = 47113, - [SMALL_STATE(1162)] = 47127, - [SMALL_STATE(1163)] = 47143, - [SMALL_STATE(1164)] = 47157, - [SMALL_STATE(1165)] = 47173, - [SMALL_STATE(1166)] = 47187, - [SMALL_STATE(1167)] = 47201, - [SMALL_STATE(1168)] = 47217, - [SMALL_STATE(1169)] = 47233, - [SMALL_STATE(1170)] = 47249, - [SMALL_STATE(1171)] = 47263, - [SMALL_STATE(1172)] = 47279, - [SMALL_STATE(1173)] = 47293, - [SMALL_STATE(1174)] = 47309, - [SMALL_STATE(1175)] = 47321, - [SMALL_STATE(1176)] = 47337, - [SMALL_STATE(1177)] = 47347, - [SMALL_STATE(1178)] = 47361, - [SMALL_STATE(1179)] = 47375, - [SMALL_STATE(1180)] = 47389, - [SMALL_STATE(1181)] = 47405, - [SMALL_STATE(1182)] = 47421, - [SMALL_STATE(1183)] = 47437, - [SMALL_STATE(1184)] = 47453, - [SMALL_STATE(1185)] = 47469, - [SMALL_STATE(1186)] = 47479, - [SMALL_STATE(1187)] = 47489, - [SMALL_STATE(1188)] = 47501, - [SMALL_STATE(1189)] = 47517, - [SMALL_STATE(1190)] = 47533, - [SMALL_STATE(1191)] = 47547, - [SMALL_STATE(1192)] = 47561, - [SMALL_STATE(1193)] = 47577, - [SMALL_STATE(1194)] = 47591, - [SMALL_STATE(1195)] = 47607, - [SMALL_STATE(1196)] = 47623, - [SMALL_STATE(1197)] = 47637, - [SMALL_STATE(1198)] = 47651, - [SMALL_STATE(1199)] = 47665, - [SMALL_STATE(1200)] = 47679, - [SMALL_STATE(1201)] = 47695, - [SMALL_STATE(1202)] = 47707, - [SMALL_STATE(1203)] = 47719, - [SMALL_STATE(1204)] = 47733, - [SMALL_STATE(1205)] = 47749, - [SMALL_STATE(1206)] = 47765, - [SMALL_STATE(1207)] = 47781, - [SMALL_STATE(1208)] = 47797, - [SMALL_STATE(1209)] = 47813, - [SMALL_STATE(1210)] = 47827, - [SMALL_STATE(1211)] = 47843, - [SMALL_STATE(1212)] = 47859, - [SMALL_STATE(1213)] = 47875, - [SMALL_STATE(1214)] = 47891, - [SMALL_STATE(1215)] = 47907, - [SMALL_STATE(1216)] = 47919, - [SMALL_STATE(1217)] = 47935, - [SMALL_STATE(1218)] = 47949, - [SMALL_STATE(1219)] = 47965, - [SMALL_STATE(1220)] = 47981, - [SMALL_STATE(1221)] = 47995, - [SMALL_STATE(1222)] = 48011, - [SMALL_STATE(1223)] = 48025, - [SMALL_STATE(1224)] = 48041, - [SMALL_STATE(1225)] = 48055, - [SMALL_STATE(1226)] = 48067, - [SMALL_STATE(1227)] = 48083, - [SMALL_STATE(1228)] = 48097, - [SMALL_STATE(1229)] = 48109, - [SMALL_STATE(1230)] = 48125, - [SMALL_STATE(1231)] = 48141, - [SMALL_STATE(1232)] = 48157, - [SMALL_STATE(1233)] = 48167, - [SMALL_STATE(1234)] = 48181, - [SMALL_STATE(1235)] = 48194, - [SMALL_STATE(1236)] = 48207, - [SMALL_STATE(1237)] = 48220, - [SMALL_STATE(1238)] = 48233, - [SMALL_STATE(1239)] = 48246, - [SMALL_STATE(1240)] = 48257, - [SMALL_STATE(1241)] = 48270, - [SMALL_STATE(1242)] = 48279, - [SMALL_STATE(1243)] = 48292, - [SMALL_STATE(1244)] = 48305, - [SMALL_STATE(1245)] = 48318, - [SMALL_STATE(1246)] = 48331, - [SMALL_STATE(1247)] = 48344, - [SMALL_STATE(1248)] = 48353, - [SMALL_STATE(1249)] = 48362, - [SMALL_STATE(1250)] = 48375, - [SMALL_STATE(1251)] = 48388, - [SMALL_STATE(1252)] = 48397, - [SMALL_STATE(1253)] = 48406, - [SMALL_STATE(1254)] = 48419, - [SMALL_STATE(1255)] = 48432, - [SMALL_STATE(1256)] = 48443, - [SMALL_STATE(1257)] = 48456, - [SMALL_STATE(1258)] = 48469, - [SMALL_STATE(1259)] = 48482, - [SMALL_STATE(1260)] = 48495, - [SMALL_STATE(1261)] = 48508, - [SMALL_STATE(1262)] = 48521, - [SMALL_STATE(1263)] = 48534, - [SMALL_STATE(1264)] = 48547, - [SMALL_STATE(1265)] = 48560, - [SMALL_STATE(1266)] = 48573, - [SMALL_STATE(1267)] = 48586, - [SMALL_STATE(1268)] = 48599, - [SMALL_STATE(1269)] = 48608, - [SMALL_STATE(1270)] = 48621, - [SMALL_STATE(1271)] = 48630, - [SMALL_STATE(1272)] = 48643, - [SMALL_STATE(1273)] = 48656, - [SMALL_STATE(1274)] = 48669, - [SMALL_STATE(1275)] = 48682, - [SMALL_STATE(1276)] = 48695, - [SMALL_STATE(1277)] = 48708, - [SMALL_STATE(1278)] = 48717, - [SMALL_STATE(1279)] = 48728, - [SMALL_STATE(1280)] = 48737, - [SMALL_STATE(1281)] = 48746, - [SMALL_STATE(1282)] = 48755, - [SMALL_STATE(1283)] = 48764, - [SMALL_STATE(1284)] = 48773, - [SMALL_STATE(1285)] = 48782, - [SMALL_STATE(1286)] = 48795, - [SMALL_STATE(1287)] = 48808, - [SMALL_STATE(1288)] = 48821, - [SMALL_STATE(1289)] = 48834, - [SMALL_STATE(1290)] = 48843, - [SMALL_STATE(1291)] = 48856, - [SMALL_STATE(1292)] = 48869, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48887, - [SMALL_STATE(1295)] = 48900, - [SMALL_STATE(1296)] = 48913, - [SMALL_STATE(1297)] = 48926, - [SMALL_STATE(1298)] = 48939, - [SMALL_STATE(1299)] = 48952, - [SMALL_STATE(1300)] = 48965, - [SMALL_STATE(1301)] = 48978, - [SMALL_STATE(1302)] = 48989, - [SMALL_STATE(1303)] = 49002, - [SMALL_STATE(1304)] = 49015, - [SMALL_STATE(1305)] = 49028, - [SMALL_STATE(1306)] = 49041, - [SMALL_STATE(1307)] = 49054, - [SMALL_STATE(1308)] = 49067, - [SMALL_STATE(1309)] = 49076, - [SMALL_STATE(1310)] = 49089, - [SMALL_STATE(1311)] = 49102, - [SMALL_STATE(1312)] = 49115, - [SMALL_STATE(1313)] = 49128, - [SMALL_STATE(1314)] = 49137, - [SMALL_STATE(1315)] = 49150, - [SMALL_STATE(1316)] = 49163, - [SMALL_STATE(1317)] = 49172, - [SMALL_STATE(1318)] = 49181, - [SMALL_STATE(1319)] = 49190, - [SMALL_STATE(1320)] = 49199, - [SMALL_STATE(1321)] = 49208, - [SMALL_STATE(1322)] = 49217, - [SMALL_STATE(1323)] = 49230, - [SMALL_STATE(1324)] = 49243, - [SMALL_STATE(1325)] = 49254, - [SMALL_STATE(1326)] = 49263, - [SMALL_STATE(1327)] = 49272, - [SMALL_STATE(1328)] = 49281, - [SMALL_STATE(1329)] = 49290, - [SMALL_STATE(1330)] = 49303, - [SMALL_STATE(1331)] = 49316, - [SMALL_STATE(1332)] = 49329, - [SMALL_STATE(1333)] = 49342, - [SMALL_STATE(1334)] = 49355, - [SMALL_STATE(1335)] = 49368, - [SMALL_STATE(1336)] = 49381, - [SMALL_STATE(1337)] = 49392, - [SMALL_STATE(1338)] = 49405, - [SMALL_STATE(1339)] = 49418, - [SMALL_STATE(1340)] = 49431, - [SMALL_STATE(1341)] = 49444, - [SMALL_STATE(1342)] = 49457, - [SMALL_STATE(1343)] = 49470, - [SMALL_STATE(1344)] = 49483, - [SMALL_STATE(1345)] = 49496, - [SMALL_STATE(1346)] = 49509, - [SMALL_STATE(1347)] = 49522, - [SMALL_STATE(1348)] = 49535, - [SMALL_STATE(1349)] = 49548, - [SMALL_STATE(1350)] = 49561, - [SMALL_STATE(1351)] = 49574, - [SMALL_STATE(1352)] = 49587, - [SMALL_STATE(1353)] = 49600, - [SMALL_STATE(1354)] = 49613, - [SMALL_STATE(1355)] = 49626, - [SMALL_STATE(1356)] = 49635, - [SMALL_STATE(1357)] = 49644, - [SMALL_STATE(1358)] = 49657, - [SMALL_STATE(1359)] = 49670, - [SMALL_STATE(1360)] = 49683, - [SMALL_STATE(1361)] = 49696, - [SMALL_STATE(1362)] = 49709, - [SMALL_STATE(1363)] = 49722, - [SMALL_STATE(1364)] = 49735, - [SMALL_STATE(1365)] = 49744, - [SMALL_STATE(1366)] = 49753, - [SMALL_STATE(1367)] = 49762, - [SMALL_STATE(1368)] = 49775, - [SMALL_STATE(1369)] = 49788, - [SMALL_STATE(1370)] = 49797, - [SMALL_STATE(1371)] = 49810, - [SMALL_STATE(1372)] = 49819, - [SMALL_STATE(1373)] = 49828, - [SMALL_STATE(1374)] = 49839, - [SMALL_STATE(1375)] = 49850, - [SMALL_STATE(1376)] = 49863, - [SMALL_STATE(1377)] = 49876, - [SMALL_STATE(1378)] = 49885, - [SMALL_STATE(1379)] = 49898, - [SMALL_STATE(1380)] = 49911, - [SMALL_STATE(1381)] = 49924, - [SMALL_STATE(1382)] = 49933, - [SMALL_STATE(1383)] = 49946, - [SMALL_STATE(1384)] = 49959, - [SMALL_STATE(1385)] = 49968, - [SMALL_STATE(1386)] = 49977, - [SMALL_STATE(1387)] = 49990, - [SMALL_STATE(1388)] = 50003, - [SMALL_STATE(1389)] = 50016, - [SMALL_STATE(1390)] = 50029, - [SMALL_STATE(1391)] = 50042, - [SMALL_STATE(1392)] = 50055, - [SMALL_STATE(1393)] = 50064, - [SMALL_STATE(1394)] = 50077, - [SMALL_STATE(1395)] = 50090, - [SMALL_STATE(1396)] = 50103, - [SMALL_STATE(1397)] = 50112, - [SMALL_STATE(1398)] = 50125, - [SMALL_STATE(1399)] = 50134, - [SMALL_STATE(1400)] = 50147, - [SMALL_STATE(1401)] = 50158, - [SMALL_STATE(1402)] = 50171, - [SMALL_STATE(1403)] = 50184, - [SMALL_STATE(1404)] = 50197, - [SMALL_STATE(1405)] = 50210, - [SMALL_STATE(1406)] = 50223, - [SMALL_STATE(1407)] = 50236, - [SMALL_STATE(1408)] = 50249, - [SMALL_STATE(1409)] = 50262, - [SMALL_STATE(1410)] = 50271, - [SMALL_STATE(1411)] = 50284, - [SMALL_STATE(1412)] = 50295, - [SMALL_STATE(1413)] = 50304, - [SMALL_STATE(1414)] = 50317, - [SMALL_STATE(1415)] = 50330, - [SMALL_STATE(1416)] = 50343, - [SMALL_STATE(1417)] = 50356, - [SMALL_STATE(1418)] = 50365, - [SMALL_STATE(1419)] = 50378, - [SMALL_STATE(1420)] = 50391, - [SMALL_STATE(1421)] = 50402, - [SMALL_STATE(1422)] = 50411, - [SMALL_STATE(1423)] = 50424, - [SMALL_STATE(1424)] = 50437, - [SMALL_STATE(1425)] = 50446, - [SMALL_STATE(1426)] = 50459, - [SMALL_STATE(1427)] = 50472, - [SMALL_STATE(1428)] = 50481, - [SMALL_STATE(1429)] = 50490, - [SMALL_STATE(1430)] = 50503, - [SMALL_STATE(1431)] = 50516, - [SMALL_STATE(1432)] = 50525, - [SMALL_STATE(1433)] = 50534, - [SMALL_STATE(1434)] = 50542, - [SMALL_STATE(1435)] = 50552, - [SMALL_STATE(1436)] = 50562, - [SMALL_STATE(1437)] = 50570, - [SMALL_STATE(1438)] = 50578, - [SMALL_STATE(1439)] = 50588, - [SMALL_STATE(1440)] = 50598, - [SMALL_STATE(1441)] = 50608, - [SMALL_STATE(1442)] = 50618, - [SMALL_STATE(1443)] = 50626, - [SMALL_STATE(1444)] = 50634, - [SMALL_STATE(1445)] = 50642, - [SMALL_STATE(1446)] = 50650, - [SMALL_STATE(1447)] = 50658, - [SMALL_STATE(1448)] = 50666, - [SMALL_STATE(1449)] = 50676, - [SMALL_STATE(1450)] = 50686, - [SMALL_STATE(1451)] = 50696, - [SMALL_STATE(1452)] = 50706, - [SMALL_STATE(1453)] = 50714, - [SMALL_STATE(1454)] = 50724, - [SMALL_STATE(1455)] = 50734, - [SMALL_STATE(1456)] = 50742, - [SMALL_STATE(1457)] = 50752, - [SMALL_STATE(1458)] = 50760, - [SMALL_STATE(1459)] = 50770, - [SMALL_STATE(1460)] = 50780, - [SMALL_STATE(1461)] = 50788, - [SMALL_STATE(1462)] = 50798, - [SMALL_STATE(1463)] = 50808, - [SMALL_STATE(1464)] = 50818, - [SMALL_STATE(1465)] = 50828, - [SMALL_STATE(1466)] = 50838, - [SMALL_STATE(1467)] = 50848, - [SMALL_STATE(1468)] = 50856, - [SMALL_STATE(1469)] = 50866, - [SMALL_STATE(1470)] = 50876, - [SMALL_STATE(1471)] = 50884, - [SMALL_STATE(1472)] = 50892, - [SMALL_STATE(1473)] = 50900, - [SMALL_STATE(1474)] = 50908, - [SMALL_STATE(1475)] = 50916, - [SMALL_STATE(1476)] = 50924, - [SMALL_STATE(1477)] = 50932, - [SMALL_STATE(1478)] = 50940, - [SMALL_STATE(1479)] = 50948, - [SMALL_STATE(1480)] = 50958, - [SMALL_STATE(1481)] = 50966, - [SMALL_STATE(1482)] = 50974, - [SMALL_STATE(1483)] = 50982, - [SMALL_STATE(1484)] = 50992, - [SMALL_STATE(1485)] = 51002, - [SMALL_STATE(1486)] = 51012, - [SMALL_STATE(1487)] = 51020, - [SMALL_STATE(1488)] = 51030, - [SMALL_STATE(1489)] = 51038, - [SMALL_STATE(1490)] = 51046, - [SMALL_STATE(1491)] = 51056, - [SMALL_STATE(1492)] = 51064, - [SMALL_STATE(1493)] = 51074, - [SMALL_STATE(1494)] = 51082, - [SMALL_STATE(1495)] = 51090, - [SMALL_STATE(1496)] = 51098, - [SMALL_STATE(1497)] = 51106, - [SMALL_STATE(1498)] = 51114, - [SMALL_STATE(1499)] = 51122, - [SMALL_STATE(1500)] = 51132, - [SMALL_STATE(1501)] = 51140, - [SMALL_STATE(1502)] = 51150, - [SMALL_STATE(1503)] = 51158, - [SMALL_STATE(1504)] = 51166, - [SMALL_STATE(1505)] = 51176, - [SMALL_STATE(1506)] = 51184, - [SMALL_STATE(1507)] = 51194, - [SMALL_STATE(1508)] = 51202, - [SMALL_STATE(1509)] = 51210, - [SMALL_STATE(1510)] = 51220, - [SMALL_STATE(1511)] = 51228, - [SMALL_STATE(1512)] = 51236, - [SMALL_STATE(1513)] = 51246, - [SMALL_STATE(1514)] = 51256, - [SMALL_STATE(1515)] = 51266, - [SMALL_STATE(1516)] = 51276, - [SMALL_STATE(1517)] = 51286, - [SMALL_STATE(1518)] = 51296, - [SMALL_STATE(1519)] = 51306, - [SMALL_STATE(1520)] = 51316, - [SMALL_STATE(1521)] = 51326, - [SMALL_STATE(1522)] = 51334, - [SMALL_STATE(1523)] = 51344, - [SMALL_STATE(1524)] = 51354, - [SMALL_STATE(1525)] = 51364, - [SMALL_STATE(1526)] = 51374, - [SMALL_STATE(1527)] = 51382, - [SMALL_STATE(1528)] = 51390, - [SMALL_STATE(1529)] = 51398, - [SMALL_STATE(1530)] = 51406, - [SMALL_STATE(1531)] = 51416, - [SMALL_STATE(1532)] = 51424, - [SMALL_STATE(1533)] = 51434, - [SMALL_STATE(1534)] = 51442, - [SMALL_STATE(1535)] = 51450, - [SMALL_STATE(1536)] = 51460, - [SMALL_STATE(1537)] = 51468, - [SMALL_STATE(1538)] = 51478, - [SMALL_STATE(1539)] = 51488, - [SMALL_STATE(1540)] = 51498, - [SMALL_STATE(1541)] = 51508, - [SMALL_STATE(1542)] = 51516, - [SMALL_STATE(1543)] = 51526, - [SMALL_STATE(1544)] = 51534, - [SMALL_STATE(1545)] = 51542, - [SMALL_STATE(1546)] = 51550, - [SMALL_STATE(1547)] = 51558, - [SMALL_STATE(1548)] = 51566, - [SMALL_STATE(1549)] = 51574, - [SMALL_STATE(1550)] = 51582, - [SMALL_STATE(1551)] = 51590, - [SMALL_STATE(1552)] = 51600, - [SMALL_STATE(1553)] = 51610, - [SMALL_STATE(1554)] = 51620, - [SMALL_STATE(1555)] = 51628, - [SMALL_STATE(1556)] = 51636, - [SMALL_STATE(1557)] = 51646, - [SMALL_STATE(1558)] = 51656, - [SMALL_STATE(1559)] = 51664, - [SMALL_STATE(1560)] = 51674, - [SMALL_STATE(1561)] = 51682, - [SMALL_STATE(1562)] = 51690, - [SMALL_STATE(1563)] = 51698, - [SMALL_STATE(1564)] = 51708, - [SMALL_STATE(1565)] = 51716, - [SMALL_STATE(1566)] = 51726, - [SMALL_STATE(1567)] = 51736, - [SMALL_STATE(1568)] = 51744, - [SMALL_STATE(1569)] = 51754, - [SMALL_STATE(1570)] = 51762, - [SMALL_STATE(1571)] = 51770, - [SMALL_STATE(1572)] = 51778, - [SMALL_STATE(1573)] = 51788, - [SMALL_STATE(1574)] = 51798, - [SMALL_STATE(1575)] = 51808, - [SMALL_STATE(1576)] = 51816, - [SMALL_STATE(1577)] = 51826, - [SMALL_STATE(1578)] = 51836, - [SMALL_STATE(1579)] = 51846, - [SMALL_STATE(1580)] = 51854, - [SMALL_STATE(1581)] = 51864, - [SMALL_STATE(1582)] = 51874, - [SMALL_STATE(1583)] = 51884, - [SMALL_STATE(1584)] = 51894, - [SMALL_STATE(1585)] = 51904, - [SMALL_STATE(1586)] = 51912, - [SMALL_STATE(1587)] = 51922, - [SMALL_STATE(1588)] = 51932, - [SMALL_STATE(1589)] = 51942, - [SMALL_STATE(1590)] = 51950, - [SMALL_STATE(1591)] = 51960, - [SMALL_STATE(1592)] = 51970, - [SMALL_STATE(1593)] = 51978, - [SMALL_STATE(1594)] = 51988, - [SMALL_STATE(1595)] = 51996, - [SMALL_STATE(1596)] = 52006, - [SMALL_STATE(1597)] = 52016, - [SMALL_STATE(1598)] = 52024, - [SMALL_STATE(1599)] = 52032, - [SMALL_STATE(1600)] = 52040, - [SMALL_STATE(1601)] = 52050, - [SMALL_STATE(1602)] = 52060, - [SMALL_STATE(1603)] = 52068, - [SMALL_STATE(1604)] = 52076, - [SMALL_STATE(1605)] = 52084, - [SMALL_STATE(1606)] = 52092, - [SMALL_STATE(1607)] = 52100, - [SMALL_STATE(1608)] = 52110, - [SMALL_STATE(1609)] = 52118, - [SMALL_STATE(1610)] = 52126, - [SMALL_STATE(1611)] = 52136, - [SMALL_STATE(1612)] = 52144, - [SMALL_STATE(1613)] = 52151, - [SMALL_STATE(1614)] = 52158, - [SMALL_STATE(1615)] = 52165, - [SMALL_STATE(1616)] = 52172, - [SMALL_STATE(1617)] = 52179, - [SMALL_STATE(1618)] = 52186, - [SMALL_STATE(1619)] = 52193, - [SMALL_STATE(1620)] = 52200, - [SMALL_STATE(1621)] = 52207, - [SMALL_STATE(1622)] = 52214, - [SMALL_STATE(1623)] = 52221, - [SMALL_STATE(1624)] = 52228, - [SMALL_STATE(1625)] = 52235, - [SMALL_STATE(1626)] = 52242, - [SMALL_STATE(1627)] = 52249, - [SMALL_STATE(1628)] = 52256, - [SMALL_STATE(1629)] = 52263, - [SMALL_STATE(1630)] = 52270, - [SMALL_STATE(1631)] = 52277, - [SMALL_STATE(1632)] = 52284, - [SMALL_STATE(1633)] = 52291, - [SMALL_STATE(1634)] = 52298, - [SMALL_STATE(1635)] = 52305, - [SMALL_STATE(1636)] = 52312, - [SMALL_STATE(1637)] = 52319, - [SMALL_STATE(1638)] = 52326, - [SMALL_STATE(1639)] = 52333, - [SMALL_STATE(1640)] = 52340, - [SMALL_STATE(1641)] = 52347, - [SMALL_STATE(1642)] = 52354, - [SMALL_STATE(1643)] = 52361, - [SMALL_STATE(1644)] = 52368, - [SMALL_STATE(1645)] = 52375, - [SMALL_STATE(1646)] = 52382, - [SMALL_STATE(1647)] = 52389, - [SMALL_STATE(1648)] = 52396, - [SMALL_STATE(1649)] = 52403, - [SMALL_STATE(1650)] = 52410, - [SMALL_STATE(1651)] = 52417, - [SMALL_STATE(1652)] = 52424, - [SMALL_STATE(1653)] = 52431, - [SMALL_STATE(1654)] = 52438, - [SMALL_STATE(1655)] = 52445, - [SMALL_STATE(1656)] = 52452, - [SMALL_STATE(1657)] = 52459, - [SMALL_STATE(1658)] = 52466, - [SMALL_STATE(1659)] = 52473, - [SMALL_STATE(1660)] = 52480, - [SMALL_STATE(1661)] = 52487, - [SMALL_STATE(1662)] = 52494, - [SMALL_STATE(1663)] = 52501, - [SMALL_STATE(1664)] = 52508, - [SMALL_STATE(1665)] = 52515, - [SMALL_STATE(1666)] = 52522, - [SMALL_STATE(1667)] = 52529, - [SMALL_STATE(1668)] = 52536, - [SMALL_STATE(1669)] = 52543, - [SMALL_STATE(1670)] = 52550, - [SMALL_STATE(1671)] = 52557, - [SMALL_STATE(1672)] = 52564, - [SMALL_STATE(1673)] = 52571, - [SMALL_STATE(1674)] = 52578, - [SMALL_STATE(1675)] = 52585, - [SMALL_STATE(1676)] = 52592, - [SMALL_STATE(1677)] = 52599, - [SMALL_STATE(1678)] = 52606, - [SMALL_STATE(1679)] = 52613, - [SMALL_STATE(1680)] = 52620, - [SMALL_STATE(1681)] = 52627, - [SMALL_STATE(1682)] = 52634, - [SMALL_STATE(1683)] = 52641, - [SMALL_STATE(1684)] = 52648, - [SMALL_STATE(1685)] = 52655, - [SMALL_STATE(1686)] = 52662, - [SMALL_STATE(1687)] = 52669, - [SMALL_STATE(1688)] = 52676, - [SMALL_STATE(1689)] = 52683, - [SMALL_STATE(1690)] = 52690, - [SMALL_STATE(1691)] = 52697, - [SMALL_STATE(1692)] = 52704, - [SMALL_STATE(1693)] = 52711, - [SMALL_STATE(1694)] = 52718, - [SMALL_STATE(1695)] = 52725, - [SMALL_STATE(1696)] = 52732, - [SMALL_STATE(1697)] = 52739, - [SMALL_STATE(1698)] = 52746, - [SMALL_STATE(1699)] = 52753, - [SMALL_STATE(1700)] = 52760, - [SMALL_STATE(1701)] = 52767, - [SMALL_STATE(1702)] = 52774, - [SMALL_STATE(1703)] = 52781, - [SMALL_STATE(1704)] = 52788, - [SMALL_STATE(1705)] = 52795, - [SMALL_STATE(1706)] = 52802, - [SMALL_STATE(1707)] = 52809, - [SMALL_STATE(1708)] = 52816, - [SMALL_STATE(1709)] = 52823, - [SMALL_STATE(1710)] = 52830, - [SMALL_STATE(1711)] = 52837, - [SMALL_STATE(1712)] = 52844, - [SMALL_STATE(1713)] = 52851, - [SMALL_STATE(1714)] = 52858, - [SMALL_STATE(1715)] = 52865, - [SMALL_STATE(1716)] = 52872, - [SMALL_STATE(1717)] = 52879, - [SMALL_STATE(1718)] = 52886, - [SMALL_STATE(1719)] = 52893, - [SMALL_STATE(1720)] = 52900, - [SMALL_STATE(1721)] = 52907, - [SMALL_STATE(1722)] = 52914, - [SMALL_STATE(1723)] = 52921, - [SMALL_STATE(1724)] = 52928, - [SMALL_STATE(1725)] = 52935, - [SMALL_STATE(1726)] = 52942, - [SMALL_STATE(1727)] = 52949, - [SMALL_STATE(1728)] = 52956, - [SMALL_STATE(1729)] = 52963, - [SMALL_STATE(1730)] = 52970, - [SMALL_STATE(1731)] = 52977, - [SMALL_STATE(1732)] = 52984, - [SMALL_STATE(1733)] = 52991, - [SMALL_STATE(1734)] = 52998, - [SMALL_STATE(1735)] = 53005, - [SMALL_STATE(1736)] = 53012, - [SMALL_STATE(1737)] = 53019, - [SMALL_STATE(1738)] = 53026, - [SMALL_STATE(1739)] = 53033, - [SMALL_STATE(1740)] = 53040, - [SMALL_STATE(1741)] = 53047, - [SMALL_STATE(1742)] = 53054, - [SMALL_STATE(1743)] = 53061, - [SMALL_STATE(1744)] = 53068, - [SMALL_STATE(1745)] = 53075, - [SMALL_STATE(1746)] = 53082, - [SMALL_STATE(1747)] = 53089, - [SMALL_STATE(1748)] = 53096, - [SMALL_STATE(1749)] = 53103, - [SMALL_STATE(1750)] = 53110, - [SMALL_STATE(1751)] = 53117, - [SMALL_STATE(1752)] = 53124, - [SMALL_STATE(1753)] = 53131, - [SMALL_STATE(1754)] = 53138, - [SMALL_STATE(1755)] = 53145, - [SMALL_STATE(1756)] = 53152, - [SMALL_STATE(1757)] = 53159, - [SMALL_STATE(1758)] = 53166, - [SMALL_STATE(1759)] = 53173, - [SMALL_STATE(1760)] = 53180, - [SMALL_STATE(1761)] = 53187, - [SMALL_STATE(1762)] = 53194, - [SMALL_STATE(1763)] = 53201, - [SMALL_STATE(1764)] = 53208, - [SMALL_STATE(1765)] = 53215, - [SMALL_STATE(1766)] = 53222, - [SMALL_STATE(1767)] = 53229, - [SMALL_STATE(1768)] = 53236, - [SMALL_STATE(1769)] = 53243, - [SMALL_STATE(1770)] = 53250, - [SMALL_STATE(1771)] = 53257, - [SMALL_STATE(1772)] = 53264, - [SMALL_STATE(1773)] = 53271, - [SMALL_STATE(1774)] = 53278, - [SMALL_STATE(1775)] = 53285, - [SMALL_STATE(1776)] = 53292, - [SMALL_STATE(1777)] = 53299, - [SMALL_STATE(1778)] = 53306, - [SMALL_STATE(1779)] = 53313, - [SMALL_STATE(1780)] = 53320, - [SMALL_STATE(1781)] = 53327, - [SMALL_STATE(1782)] = 53334, - [SMALL_STATE(1783)] = 53341, - [SMALL_STATE(1784)] = 53348, - [SMALL_STATE(1785)] = 53355, - [SMALL_STATE(1786)] = 53362, - [SMALL_STATE(1787)] = 53369, - [SMALL_STATE(1788)] = 53376, - [SMALL_STATE(1789)] = 53383, - [SMALL_STATE(1790)] = 53390, - [SMALL_STATE(1791)] = 53397, - [SMALL_STATE(1792)] = 53404, - [SMALL_STATE(1793)] = 53411, - [SMALL_STATE(1794)] = 53418, - [SMALL_STATE(1795)] = 53425, - [SMALL_STATE(1796)] = 53432, - [SMALL_STATE(1797)] = 53439, - [SMALL_STATE(1798)] = 53446, - [SMALL_STATE(1799)] = 53453, - [SMALL_STATE(1800)] = 53460, - [SMALL_STATE(1801)] = 53467, - [SMALL_STATE(1802)] = 53474, - [SMALL_STATE(1803)] = 53481, - [SMALL_STATE(1804)] = 53488, - [SMALL_STATE(1805)] = 53495, - [SMALL_STATE(1806)] = 53502, - [SMALL_STATE(1807)] = 53509, - [SMALL_STATE(1808)] = 53516, - [SMALL_STATE(1809)] = 53523, - [SMALL_STATE(1810)] = 53530, - [SMALL_STATE(1811)] = 53537, - [SMALL_STATE(1812)] = 53544, - [SMALL_STATE(1813)] = 53551, - [SMALL_STATE(1814)] = 53558, - [SMALL_STATE(1815)] = 53565, - [SMALL_STATE(1816)] = 53572, - [SMALL_STATE(1817)] = 53579, - [SMALL_STATE(1818)] = 53586, - [SMALL_STATE(1819)] = 53593, - [SMALL_STATE(1820)] = 53600, - [SMALL_STATE(1821)] = 53607, - [SMALL_STATE(1822)] = 53614, - [SMALL_STATE(1823)] = 53621, - [SMALL_STATE(1824)] = 53628, - [SMALL_STATE(1825)] = 53635, - [SMALL_STATE(1826)] = 53642, - [SMALL_STATE(1827)] = 53649, - [SMALL_STATE(1828)] = 53656, - [SMALL_STATE(1829)] = 53663, - [SMALL_STATE(1830)] = 53670, - [SMALL_STATE(1831)] = 53677, - [SMALL_STATE(1832)] = 53684, - [SMALL_STATE(1833)] = 53691, - [SMALL_STATE(1834)] = 53698, - [SMALL_STATE(1835)] = 53705, - [SMALL_STATE(1836)] = 53712, - [SMALL_STATE(1837)] = 53719, - [SMALL_STATE(1838)] = 53726, - [SMALL_STATE(1839)] = 53733, - [SMALL_STATE(1840)] = 53740, - [SMALL_STATE(1841)] = 53747, - [SMALL_STATE(1842)] = 53754, - [SMALL_STATE(1843)] = 53761, - [SMALL_STATE(1844)] = 53768, - [SMALL_STATE(1845)] = 53775, - [SMALL_STATE(1846)] = 53782, - [SMALL_STATE(1847)] = 53789, - [SMALL_STATE(1848)] = 53796, - [SMALL_STATE(1849)] = 53803, - [SMALL_STATE(1850)] = 53810, - [SMALL_STATE(1851)] = 53817, - [SMALL_STATE(1852)] = 53824, - [SMALL_STATE(1853)] = 53831, - [SMALL_STATE(1854)] = 53838, - [SMALL_STATE(1855)] = 53845, - [SMALL_STATE(1856)] = 53852, - [SMALL_STATE(1857)] = 53859, - [SMALL_STATE(1858)] = 53866, - [SMALL_STATE(1859)] = 53873, - [SMALL_STATE(1860)] = 53880, - [SMALL_STATE(1861)] = 53887, - [SMALL_STATE(1862)] = 53894, - [SMALL_STATE(1863)] = 53901, - [SMALL_STATE(1864)] = 53908, - [SMALL_STATE(1865)] = 53915, - [SMALL_STATE(1866)] = 53922, - [SMALL_STATE(1867)] = 53929, - [SMALL_STATE(1868)] = 53936, - [SMALL_STATE(1869)] = 53943, - [SMALL_STATE(1870)] = 53950, - [SMALL_STATE(1871)] = 53957, - [SMALL_STATE(1872)] = 53964, - [SMALL_STATE(1873)] = 53971, - [SMALL_STATE(1874)] = 53978, - [SMALL_STATE(1875)] = 53985, - [SMALL_STATE(1876)] = 53992, - [SMALL_STATE(1877)] = 53999, - [SMALL_STATE(1878)] = 54006, - [SMALL_STATE(1879)] = 54013, - [SMALL_STATE(1880)] = 54020, - [SMALL_STATE(1881)] = 54027, - [SMALL_STATE(1882)] = 54034, - [SMALL_STATE(1883)] = 54041, - [SMALL_STATE(1884)] = 54048, - [SMALL_STATE(1885)] = 54055, - [SMALL_STATE(1886)] = 54062, - [SMALL_STATE(1887)] = 54069, - [SMALL_STATE(1888)] = 54076, - [SMALL_STATE(1889)] = 54083, - [SMALL_STATE(1890)] = 54090, - [SMALL_STATE(1891)] = 54097, - [SMALL_STATE(1892)] = 54104, - [SMALL_STATE(1893)] = 54111, - [SMALL_STATE(1894)] = 54118, - [SMALL_STATE(1895)] = 54125, - [SMALL_STATE(1896)] = 54132, - [SMALL_STATE(1897)] = 54139, - [SMALL_STATE(1898)] = 54146, - [SMALL_STATE(1899)] = 54153, - [SMALL_STATE(1900)] = 54160, - [SMALL_STATE(1901)] = 54167, - [SMALL_STATE(1902)] = 54174, - [SMALL_STATE(1903)] = 54181, - [SMALL_STATE(1904)] = 54188, - [SMALL_STATE(1905)] = 54195, - [SMALL_STATE(1906)] = 54202, - [SMALL_STATE(1907)] = 54209, - [SMALL_STATE(1908)] = 54216, - [SMALL_STATE(1909)] = 54223, - [SMALL_STATE(1910)] = 54230, - [SMALL_STATE(1911)] = 54237, - [SMALL_STATE(1912)] = 54244, - [SMALL_STATE(1913)] = 54251, - [SMALL_STATE(1914)] = 54258, - [SMALL_STATE(1915)] = 54265, - [SMALL_STATE(1916)] = 54272, - [SMALL_STATE(1917)] = 54279, - [SMALL_STATE(1918)] = 54286, - [SMALL_STATE(1919)] = 54293, - [SMALL_STATE(1920)] = 54300, - [SMALL_STATE(1921)] = 54307, - [SMALL_STATE(1922)] = 54314, - [SMALL_STATE(1923)] = 54321, - [SMALL_STATE(1924)] = 54328, - [SMALL_STATE(1925)] = 54335, - [SMALL_STATE(1926)] = 54342, - [SMALL_STATE(1927)] = 54349, - [SMALL_STATE(1928)] = 54356, - [SMALL_STATE(1929)] = 54363, - [SMALL_STATE(1930)] = 54370, - [SMALL_STATE(1931)] = 54377, - [SMALL_STATE(1932)] = 54384, - [SMALL_STATE(1933)] = 54391, - [SMALL_STATE(1934)] = 54398, - [SMALL_STATE(1935)] = 54405, - [SMALL_STATE(1936)] = 54412, - [SMALL_STATE(1937)] = 54419, - [SMALL_STATE(1938)] = 54426, - [SMALL_STATE(1939)] = 54433, - [SMALL_STATE(1940)] = 54440, - [SMALL_STATE(1941)] = 54447, - [SMALL_STATE(1942)] = 54454, - [SMALL_STATE(1943)] = 54461, - [SMALL_STATE(1944)] = 54468, - [SMALL_STATE(1945)] = 54475, - [SMALL_STATE(1946)] = 54482, - [SMALL_STATE(1947)] = 54489, - [SMALL_STATE(1948)] = 54496, - [SMALL_STATE(1949)] = 54503, - [SMALL_STATE(1950)] = 54510, - [SMALL_STATE(1951)] = 54517, - [SMALL_STATE(1952)] = 54524, - [SMALL_STATE(1953)] = 54531, - [SMALL_STATE(1954)] = 54538, - [SMALL_STATE(1955)] = 54545, - [SMALL_STATE(1956)] = 54552, - [SMALL_STATE(1957)] = 54559, - [SMALL_STATE(1958)] = 54566, - [SMALL_STATE(1959)] = 54573, - [SMALL_STATE(1960)] = 54580, - [SMALL_STATE(1961)] = 54587, - [SMALL_STATE(1962)] = 54594, - [SMALL_STATE(1963)] = 54601, - [SMALL_STATE(1964)] = 54608, - [SMALL_STATE(1965)] = 54615, - [SMALL_STATE(1966)] = 54622, - [SMALL_STATE(1967)] = 54629, - [SMALL_STATE(1968)] = 54636, - [SMALL_STATE(1969)] = 54643, - [SMALL_STATE(1970)] = 54650, - [SMALL_STATE(1971)] = 54657, - [SMALL_STATE(1972)] = 54664, - [SMALL_STATE(1973)] = 54671, - [SMALL_STATE(1974)] = 54678, - [SMALL_STATE(1975)] = 54685, - [SMALL_STATE(1976)] = 54692, - [SMALL_STATE(1977)] = 54699, - [SMALL_STATE(1978)] = 54706, - [SMALL_STATE(1979)] = 54713, - [SMALL_STATE(1980)] = 54720, - [SMALL_STATE(1981)] = 54727, - [SMALL_STATE(1982)] = 54734, - [SMALL_STATE(1983)] = 54741, - [SMALL_STATE(1984)] = 54748, - [SMALL_STATE(1985)] = 54755, - [SMALL_STATE(1986)] = 54762, - [SMALL_STATE(1987)] = 54769, - [SMALL_STATE(1988)] = 54776, - [SMALL_STATE(1989)] = 54783, - [SMALL_STATE(1990)] = 54790, - [SMALL_STATE(1991)] = 54797, - [SMALL_STATE(1992)] = 54804, - [SMALL_STATE(1993)] = 54811, - [SMALL_STATE(1994)] = 54818, - [SMALL_STATE(1995)] = 54825, - [SMALL_STATE(1996)] = 54832, - [SMALL_STATE(1997)] = 54839, - [SMALL_STATE(1998)] = 54846, - [SMALL_STATE(1999)] = 54853, - [SMALL_STATE(2000)] = 54860, - [SMALL_STATE(2001)] = 54867, - [SMALL_STATE(2002)] = 54874, - [SMALL_STATE(2003)] = 54881, - [SMALL_STATE(2004)] = 54888, - [SMALL_STATE(2005)] = 54895, - [SMALL_STATE(2006)] = 54902, - [SMALL_STATE(2007)] = 54909, - [SMALL_STATE(2008)] = 54916, - [SMALL_STATE(2009)] = 54923, - [SMALL_STATE(2010)] = 54930, - [SMALL_STATE(2011)] = 54937, - [SMALL_STATE(2012)] = 54944, - [SMALL_STATE(2013)] = 54951, - [SMALL_STATE(2014)] = 54958, - [SMALL_STATE(2015)] = 54965, - [SMALL_STATE(2016)] = 54972, - [SMALL_STATE(2017)] = 54979, - [SMALL_STATE(2018)] = 54986, - [SMALL_STATE(2019)] = 54993, - [SMALL_STATE(2020)] = 55000, - [SMALL_STATE(2021)] = 55007, - [SMALL_STATE(2022)] = 55014, - [SMALL_STATE(2023)] = 55021, - [SMALL_STATE(2024)] = 55028, - [SMALL_STATE(2025)] = 55035, - [SMALL_STATE(2026)] = 55042, - [SMALL_STATE(2027)] = 55049, - [SMALL_STATE(2028)] = 55056, - [SMALL_STATE(2029)] = 55063, - [SMALL_STATE(2030)] = 55070, - [SMALL_STATE(2031)] = 55077, - [SMALL_STATE(2032)] = 55084, - [SMALL_STATE(2033)] = 55091, - [SMALL_STATE(2034)] = 55098, - [SMALL_STATE(2035)] = 55105, - [SMALL_STATE(2036)] = 55112, - [SMALL_STATE(2037)] = 55119, - [SMALL_STATE(2038)] = 55126, - [SMALL_STATE(2039)] = 55133, - [SMALL_STATE(2040)] = 55140, - [SMALL_STATE(2041)] = 55147, - [SMALL_STATE(2042)] = 55154, - [SMALL_STATE(2043)] = 55161, - [SMALL_STATE(2044)] = 55168, - [SMALL_STATE(2045)] = 55175, - [SMALL_STATE(2046)] = 55182, - [SMALL_STATE(2047)] = 55189, - [SMALL_STATE(2048)] = 55196, - [SMALL_STATE(2049)] = 55203, - [SMALL_STATE(2050)] = 55210, - [SMALL_STATE(2051)] = 55217, - [SMALL_STATE(2052)] = 55224, - [SMALL_STATE(2053)] = 55231, - [SMALL_STATE(2054)] = 55238, - [SMALL_STATE(2055)] = 55245, - [SMALL_STATE(2056)] = 55252, - [SMALL_STATE(2057)] = 55259, - [SMALL_STATE(2058)] = 55266, - [SMALL_STATE(2059)] = 55273, - [SMALL_STATE(2060)] = 55280, - [SMALL_STATE(2061)] = 55287, - [SMALL_STATE(2062)] = 55294, - [SMALL_STATE(2063)] = 55301, - [SMALL_STATE(2064)] = 55308, - [SMALL_STATE(2065)] = 55315, - [SMALL_STATE(2066)] = 55322, - [SMALL_STATE(2067)] = 55329, - [SMALL_STATE(2068)] = 55336, - [SMALL_STATE(2069)] = 55343, - [SMALL_STATE(2070)] = 55350, - [SMALL_STATE(2071)] = 55357, - [SMALL_STATE(2072)] = 55364, - [SMALL_STATE(2073)] = 55371, - [SMALL_STATE(2074)] = 55378, - [SMALL_STATE(2075)] = 55385, - [SMALL_STATE(2076)] = 55392, - [SMALL_STATE(2077)] = 55399, - [SMALL_STATE(2078)] = 55406, - [SMALL_STATE(2079)] = 55413, - [SMALL_STATE(2080)] = 55420, - [SMALL_STATE(2081)] = 55427, - [SMALL_STATE(2082)] = 55434, - [SMALL_STATE(2083)] = 55441, - [SMALL_STATE(2084)] = 55448, - [SMALL_STATE(2085)] = 55455, - [SMALL_STATE(2086)] = 55462, - [SMALL_STATE(2087)] = 55469, - [SMALL_STATE(2088)] = 55476, - [SMALL_STATE(2089)] = 55483, - [SMALL_STATE(2090)] = 55490, - [SMALL_STATE(2091)] = 55497, - [SMALL_STATE(2092)] = 55504, - [SMALL_STATE(2093)] = 55511, - [SMALL_STATE(2094)] = 55518, - [SMALL_STATE(2095)] = 55525, - [SMALL_STATE(2096)] = 55532, - [SMALL_STATE(2097)] = 55539, - [SMALL_STATE(2098)] = 55546, - [SMALL_STATE(2099)] = 55553, - [SMALL_STATE(2100)] = 55560, - [SMALL_STATE(2101)] = 55567, - [SMALL_STATE(2102)] = 55574, - [SMALL_STATE(2103)] = 55581, - [SMALL_STATE(2104)] = 55588, - [SMALL_STATE(2105)] = 55595, - [SMALL_STATE(2106)] = 55602, - [SMALL_STATE(2107)] = 55609, - [SMALL_STATE(2108)] = 55616, - [SMALL_STATE(2109)] = 55623, - [SMALL_STATE(2110)] = 55630, - [SMALL_STATE(2111)] = 55637, - [SMALL_STATE(2112)] = 55644, - [SMALL_STATE(2113)] = 55651, - [SMALL_STATE(2114)] = 55658, - [SMALL_STATE(2115)] = 55665, - [SMALL_STATE(2116)] = 55672, - [SMALL_STATE(2117)] = 55679, - [SMALL_STATE(2118)] = 55686, - [SMALL_STATE(2119)] = 55693, - [SMALL_STATE(2120)] = 55700, - [SMALL_STATE(2121)] = 55707, - [SMALL_STATE(2122)] = 55714, - [SMALL_STATE(2123)] = 55721, - [SMALL_STATE(2124)] = 55728, - [SMALL_STATE(2125)] = 55735, - [SMALL_STATE(2126)] = 55742, - [SMALL_STATE(2127)] = 55749, - [SMALL_STATE(2128)] = 55756, - [SMALL_STATE(2129)] = 55763, - [SMALL_STATE(2130)] = 55770, - [SMALL_STATE(2131)] = 55777, - [SMALL_STATE(2132)] = 55784, - [SMALL_STATE(2133)] = 55791, - [SMALL_STATE(2134)] = 55798, - [SMALL_STATE(2135)] = 55805, - [SMALL_STATE(2136)] = 55812, - [SMALL_STATE(2137)] = 55819, - [SMALL_STATE(2138)] = 55826, - [SMALL_STATE(2139)] = 55833, + [SMALL_STATE(110)] = 0, + [SMALL_STATE(111)] = 120, + [SMALL_STATE(112)] = 250, + [SMALL_STATE(113)] = 388, + [SMALL_STATE(114)] = 518, + [SMALL_STATE(115)] = 635, + [SMALL_STATE(116)] = 750, + [SMALL_STATE(117)] = 867, + [SMALL_STATE(118)] = 984, + [SMALL_STATE(119)] = 1101, + [SMALL_STATE(120)] = 1215, + [SMALL_STATE(121)] = 1329, + [SMALL_STATE(122)] = 1449, + [SMALL_STATE(123)] = 1581, + [SMALL_STATE(124)] = 1695, + [SMALL_STATE(125)] = 1809, + [SMALL_STATE(126)] = 1923, + [SMALL_STATE(127)] = 2037, + [SMALL_STATE(128)] = 2166, + [SMALL_STATE(129)] = 2295, + [SMALL_STATE(130)] = 2421, + [SMALL_STATE(131)] = 2547, + [SMALL_STATE(132)] = 2670, + [SMALL_STATE(133)] = 2781, + [SMALL_STATE(134)] = 2895, + [SMALL_STATE(135)] = 3007, + [SMALL_STATE(136)] = 3121, + [SMALL_STATE(137)] = 3235, + [SMALL_STATE(138)] = 3296, + [SMALL_STATE(139)] = 3357, + [SMALL_STATE(140)] = 3418, + [SMALL_STATE(141)] = 3479, + [SMALL_STATE(142)] = 3540, + [SMALL_STATE(143)] = 3601, + [SMALL_STATE(144)] = 3662, + [SMALL_STATE(145)] = 3723, + [SMALL_STATE(146)] = 3784, + [SMALL_STATE(147)] = 3845, + [SMALL_STATE(148)] = 3906, + [SMALL_STATE(149)] = 3967, + [SMALL_STATE(150)] = 4028, + [SMALL_STATE(151)] = 4089, + [SMALL_STATE(152)] = 4150, + [SMALL_STATE(153)] = 4211, + [SMALL_STATE(154)] = 4272, + [SMALL_STATE(155)] = 4333, + [SMALL_STATE(156)] = 4394, + [SMALL_STATE(157)] = 4455, + [SMALL_STATE(158)] = 4516, + [SMALL_STATE(159)] = 4627, + [SMALL_STATE(160)] = 4688, + [SMALL_STATE(161)] = 4749, + [SMALL_STATE(162)] = 4810, + [SMALL_STATE(163)] = 4871, + [SMALL_STATE(164)] = 4932, + [SMALL_STATE(165)] = 4993, + [SMALL_STATE(166)] = 5054, + [SMALL_STATE(167)] = 5115, + [SMALL_STATE(168)] = 5176, + [SMALL_STATE(169)] = 5237, + [SMALL_STATE(170)] = 5298, + [SMALL_STATE(171)] = 5359, + [SMALL_STATE(172)] = 5420, + [SMALL_STATE(173)] = 5481, + [SMALL_STATE(174)] = 5542, + [SMALL_STATE(175)] = 5603, + [SMALL_STATE(176)] = 5664, + [SMALL_STATE(177)] = 5725, + [SMALL_STATE(178)] = 5786, + [SMALL_STATE(179)] = 5847, + [SMALL_STATE(180)] = 5908, + [SMALL_STATE(181)] = 5969, + [SMALL_STATE(182)] = 6030, + [SMALL_STATE(183)] = 6091, + [SMALL_STATE(184)] = 6152, + [SMALL_STATE(185)] = 6213, + [SMALL_STATE(186)] = 6274, + [SMALL_STATE(187)] = 6335, + [SMALL_STATE(188)] = 6396, + [SMALL_STATE(189)] = 6457, + [SMALL_STATE(190)] = 6518, + [SMALL_STATE(191)] = 6579, + [SMALL_STATE(192)] = 6640, + [SMALL_STATE(193)] = 6701, + [SMALL_STATE(194)] = 6762, + [SMALL_STATE(195)] = 6823, + [SMALL_STATE(196)] = 6884, + [SMALL_STATE(197)] = 6945, + [SMALL_STATE(198)] = 7006, + [SMALL_STATE(199)] = 7067, + [SMALL_STATE(200)] = 7128, + [SMALL_STATE(201)] = 7189, + [SMALL_STATE(202)] = 7250, + [SMALL_STATE(203)] = 7311, + [SMALL_STATE(204)] = 7372, + [SMALL_STATE(205)] = 7433, + [SMALL_STATE(206)] = 7494, + [SMALL_STATE(207)] = 7555, + [SMALL_STATE(208)] = 7616, + [SMALL_STATE(209)] = 7677, + [SMALL_STATE(210)] = 7738, + [SMALL_STATE(211)] = 7846, + [SMALL_STATE(212)] = 7951, + [SMALL_STATE(213)] = 8054, + [SMALL_STATE(214)] = 8157, + [SMALL_STATE(215)] = 8260, + [SMALL_STATE(216)] = 8365, + [SMALL_STATE(217)] = 8469, + [SMALL_STATE(218)] = 8573, + [SMALL_STATE(219)] = 8677, + [SMALL_STATE(220)] = 8777, + [SMALL_STATE(221)] = 8877, + [SMALL_STATE(222)] = 8974, + [SMALL_STATE(223)] = 9071, + [SMALL_STATE(224)] = 9168, + [SMALL_STATE(225)] = 9265, + [SMALL_STATE(226)] = 9362, + [SMALL_STATE(227)] = 9459, + [SMALL_STATE(228)] = 9556, + [SMALL_STATE(229)] = 9653, + [SMALL_STATE(230)] = 9750, + [SMALL_STATE(231)] = 9847, + [SMALL_STATE(232)] = 9946, + [SMALL_STATE(233)] = 10043, + [SMALL_STATE(234)] = 10140, + [SMALL_STATE(235)] = 10234, + [SMALL_STATE(236)] = 10328, + [SMALL_STATE(237)] = 10422, + [SMALL_STATE(238)] = 10516, + [SMALL_STATE(239)] = 10610, + [SMALL_STATE(240)] = 10704, + [SMALL_STATE(241)] = 10798, + [SMALL_STATE(242)] = 10892, + [SMALL_STATE(243)] = 10948, + [SMALL_STATE(244)] = 11004, + [SMALL_STATE(245)] = 11098, + [SMALL_STATE(246)] = 11192, + [SMALL_STATE(247)] = 11286, + [SMALL_STATE(248)] = 11342, + [SMALL_STATE(249)] = 11436, + [SMALL_STATE(250)] = 11530, + [SMALL_STATE(251)] = 11624, + [SMALL_STATE(252)] = 11718, + [SMALL_STATE(253)] = 11812, + [SMALL_STATE(254)] = 11906, + [SMALL_STATE(255)] = 12000, + [SMALL_STATE(256)] = 12094, + [SMALL_STATE(257)] = 12188, + [SMALL_STATE(258)] = 12282, + [SMALL_STATE(259)] = 12376, + [SMALL_STATE(260)] = 12470, + [SMALL_STATE(261)] = 12564, + [SMALL_STATE(262)] = 12658, + [SMALL_STATE(263)] = 12752, + [SMALL_STATE(264)] = 12846, + [SMALL_STATE(265)] = 12940, + [SMALL_STATE(266)] = 13034, + [SMALL_STATE(267)] = 13128, + [SMALL_STATE(268)] = 13222, + [SMALL_STATE(269)] = 13316, + [SMALL_STATE(270)] = 13410, + [SMALL_STATE(271)] = 13504, + [SMALL_STATE(272)] = 13598, + [SMALL_STATE(273)] = 13692, + [SMALL_STATE(274)] = 13786, + [SMALL_STATE(275)] = 13880, + [SMALL_STATE(276)] = 13936, + [SMALL_STATE(277)] = 14030, + [SMALL_STATE(278)] = 14124, + [SMALL_STATE(279)] = 14180, + [SMALL_STATE(280)] = 14236, + [SMALL_STATE(281)] = 14292, + [SMALL_STATE(282)] = 14390, + [SMALL_STATE(283)] = 14446, + [SMALL_STATE(284)] = 14540, + [SMALL_STATE(285)] = 14634, + [SMALL_STATE(286)] = 14728, + [SMALL_STATE(287)] = 14822, + [SMALL_STATE(288)] = 14916, + [SMALL_STATE(289)] = 15010, + [SMALL_STATE(290)] = 15066, + [SMALL_STATE(291)] = 15121, + [SMALL_STATE(292)] = 15216, + [SMALL_STATE(293)] = 15271, + [SMALL_STATE(294)] = 15326, + [SMALL_STATE(295)] = 15381, + [SMALL_STATE(296)] = 15436, + [SMALL_STATE(297)] = 15491, + [SMALL_STATE(298)] = 15546, + [SMALL_STATE(299)] = 15601, + [SMALL_STATE(300)] = 15656, + [SMALL_STATE(301)] = 15711, + [SMALL_STATE(302)] = 15766, + [SMALL_STATE(303)] = 15821, + [SMALL_STATE(304)] = 15876, + [SMALL_STATE(305)] = 15931, + [SMALL_STATE(306)] = 15986, + [SMALL_STATE(307)] = 16041, + [SMALL_STATE(308)] = 16096, + [SMALL_STATE(309)] = 16151, + [SMALL_STATE(310)] = 16206, + [SMALL_STATE(311)] = 16261, + [SMALL_STATE(312)] = 16316, + [SMALL_STATE(313)] = 16371, + [SMALL_STATE(314)] = 16426, + [SMALL_STATE(315)] = 16481, + [SMALL_STATE(316)] = 16572, + [SMALL_STATE(317)] = 16627, + [SMALL_STATE(318)] = 16682, + [SMALL_STATE(319)] = 16777, + [SMALL_STATE(320)] = 16832, + [SMALL_STATE(321)] = 16887, + [SMALL_STATE(322)] = 16942, + [SMALL_STATE(323)] = 16997, + [SMALL_STATE(324)] = 17052, + [SMALL_STATE(325)] = 17107, + [SMALL_STATE(326)] = 17162, + [SMALL_STATE(327)] = 17217, + [SMALL_STATE(328)] = 17272, + [SMALL_STATE(329)] = 17327, + [SMALL_STATE(330)] = 17382, + [SMALL_STATE(331)] = 17437, + [SMALL_STATE(332)] = 17492, + [SMALL_STATE(333)] = 17547, + [SMALL_STATE(334)] = 17602, + [SMALL_STATE(335)] = 17657, + [SMALL_STATE(336)] = 17712, + [SMALL_STATE(337)] = 17767, + [SMALL_STATE(338)] = 17822, + [SMALL_STATE(339)] = 17877, + [SMALL_STATE(340)] = 17932, + [SMALL_STATE(341)] = 17987, + [SMALL_STATE(342)] = 18042, + [SMALL_STATE(343)] = 18097, + [SMALL_STATE(344)] = 18152, + [SMALL_STATE(345)] = 18207, + [SMALL_STATE(346)] = 18262, + [SMALL_STATE(347)] = 18317, + [SMALL_STATE(348)] = 18372, + [SMALL_STATE(349)] = 18427, + [SMALL_STATE(350)] = 18482, + [SMALL_STATE(351)] = 18537, + [SMALL_STATE(352)] = 18592, + [SMALL_STATE(353)] = 18647, + [SMALL_STATE(354)] = 18702, + [SMALL_STATE(355)] = 18757, + [SMALL_STATE(356)] = 18812, + [SMALL_STATE(357)] = 18867, + [SMALL_STATE(358)] = 18922, + [SMALL_STATE(359)] = 18977, + [SMALL_STATE(360)] = 19032, + [SMALL_STATE(361)] = 19087, + [SMALL_STATE(362)] = 19142, + [SMALL_STATE(363)] = 19197, + [SMALL_STATE(364)] = 19252, + [SMALL_STATE(365)] = 19307, + [SMALL_STATE(366)] = 19362, + [SMALL_STATE(367)] = 19417, + [SMALL_STATE(368)] = 19472, + [SMALL_STATE(369)] = 19527, + [SMALL_STATE(370)] = 19582, + [SMALL_STATE(371)] = 19637, + [SMALL_STATE(372)] = 19692, + [SMALL_STATE(373)] = 19747, + [SMALL_STATE(374)] = 19802, + [SMALL_STATE(375)] = 19857, + [SMALL_STATE(376)] = 19912, + [SMALL_STATE(377)] = 19967, + [SMALL_STATE(378)] = 20022, + [SMALL_STATE(379)] = 20077, + [SMALL_STATE(380)] = 20132, + [SMALL_STATE(381)] = 20187, + [SMALL_STATE(382)] = 20242, + [SMALL_STATE(383)] = 20297, + [SMALL_STATE(384)] = 20352, + [SMALL_STATE(385)] = 20407, + [SMALL_STATE(386)] = 20462, + [SMALL_STATE(387)] = 20517, + [SMALL_STATE(388)] = 20572, + [SMALL_STATE(389)] = 20627, + [SMALL_STATE(390)] = 20682, + [SMALL_STATE(391)] = 20737, + [SMALL_STATE(392)] = 20792, + [SMALL_STATE(393)] = 20847, + [SMALL_STATE(394)] = 20902, + [SMALL_STATE(395)] = 20957, + [SMALL_STATE(396)] = 21052, + [SMALL_STATE(397)] = 21107, + [SMALL_STATE(398)] = 21162, + [SMALL_STATE(399)] = 21217, + [SMALL_STATE(400)] = 21272, + [SMALL_STATE(401)] = 21327, + [SMALL_STATE(402)] = 21382, + [SMALL_STATE(403)] = 21437, + [SMALL_STATE(404)] = 21492, + [SMALL_STATE(405)] = 21547, + [SMALL_STATE(406)] = 21602, + [SMALL_STATE(407)] = 21657, + [SMALL_STATE(408)] = 21712, + [SMALL_STATE(409)] = 21767, + [SMALL_STATE(410)] = 21822, + [SMALL_STATE(411)] = 21877, + [SMALL_STATE(412)] = 21932, + [SMALL_STATE(413)] = 21987, + [SMALL_STATE(414)] = 22042, + [SMALL_STATE(415)] = 22097, + [SMALL_STATE(416)] = 22152, + [SMALL_STATE(417)] = 22207, + [SMALL_STATE(418)] = 22262, + [SMALL_STATE(419)] = 22317, + [SMALL_STATE(420)] = 22372, + [SMALL_STATE(421)] = 22427, + [SMALL_STATE(422)] = 22482, + [SMALL_STATE(423)] = 22537, + [SMALL_STATE(424)] = 22592, + [SMALL_STATE(425)] = 22647, + [SMALL_STATE(426)] = 22702, + [SMALL_STATE(427)] = 22757, + [SMALL_STATE(428)] = 22812, + [SMALL_STATE(429)] = 22867, + [SMALL_STATE(430)] = 22958, + [SMALL_STATE(431)] = 23049, + [SMALL_STATE(432)] = 23104, + [SMALL_STATE(433)] = 23159, + [SMALL_STATE(434)] = 23214, + [SMALL_STATE(435)] = 23269, + [SMALL_STATE(436)] = 23324, + [SMALL_STATE(437)] = 23379, + [SMALL_STATE(438)] = 23434, + [SMALL_STATE(439)] = 23489, + [SMALL_STATE(440)] = 23544, + [SMALL_STATE(441)] = 23599, + [SMALL_STATE(442)] = 23654, + [SMALL_STATE(443)] = 23709, + [SMALL_STATE(444)] = 23764, + [SMALL_STATE(445)] = 23819, + [SMALL_STATE(446)] = 23874, + [SMALL_STATE(447)] = 23929, + [SMALL_STATE(448)] = 23984, + [SMALL_STATE(449)] = 24079, + [SMALL_STATE(450)] = 24134, + [SMALL_STATE(451)] = 24189, + [SMALL_STATE(452)] = 24244, + [SMALL_STATE(453)] = 24299, + [SMALL_STATE(454)] = 24354, + [SMALL_STATE(455)] = 24409, + [SMALL_STATE(456)] = 24464, + [SMALL_STATE(457)] = 24519, + [SMALL_STATE(458)] = 24574, + [SMALL_STATE(459)] = 24629, + [SMALL_STATE(460)] = 24684, + [SMALL_STATE(461)] = 24739, + [SMALL_STATE(462)] = 24794, + [SMALL_STATE(463)] = 24889, + [SMALL_STATE(464)] = 24944, + [SMALL_STATE(465)] = 24999, + [SMALL_STATE(466)] = 25054, + [SMALL_STATE(467)] = 25109, + [SMALL_STATE(468)] = 25164, + [SMALL_STATE(469)] = 25219, + [SMALL_STATE(470)] = 25273, + [SMALL_STATE(471)] = 25327, + [SMALL_STATE(472)] = 25381, + [SMALL_STATE(473)] = 25435, + [SMALL_STATE(474)] = 25489, + [SMALL_STATE(475)] = 25543, + [SMALL_STATE(476)] = 25597, + [SMALL_STATE(477)] = 25687, + [SMALL_STATE(478)] = 25741, + [SMALL_STATE(479)] = 25795, + [SMALL_STATE(480)] = 25849, + [SMALL_STATE(481)] = 25903, + [SMALL_STATE(482)] = 25957, + [SMALL_STATE(483)] = 26011, + [SMALL_STATE(484)] = 26065, + [SMALL_STATE(485)] = 26119, + [SMALL_STATE(486)] = 26173, + [SMALL_STATE(487)] = 26227, + [SMALL_STATE(488)] = 26281, + [SMALL_STATE(489)] = 26371, + [SMALL_STATE(490)] = 26425, + [SMALL_STATE(491)] = 26479, + [SMALL_STATE(492)] = 26532, + [SMALL_STATE(493)] = 26585, + [SMALL_STATE(494)] = 26638, + [SMALL_STATE(495)] = 26725, + [SMALL_STATE(496)] = 26777, + [SMALL_STATE(497)] = 26829, + [SMALL_STATE(498)] = 26881, + [SMALL_STATE(499)] = 26933, + [SMALL_STATE(500)] = 26985, + [SMALL_STATE(501)] = 27037, + [SMALL_STATE(502)] = 27089, + [SMALL_STATE(503)] = 27141, + [SMALL_STATE(504)] = 27193, + [SMALL_STATE(505)] = 27279, + [SMALL_STATE(506)] = 27331, + [SMALL_STATE(507)] = 27383, + [SMALL_STATE(508)] = 27435, + [SMALL_STATE(509)] = 27487, + [SMALL_STATE(510)] = 27539, + [SMALL_STATE(511)] = 27625, + [SMALL_STATE(512)] = 27677, + [SMALL_STATE(513)] = 27760, + [SMALL_STATE(514)] = 27843, + [SMALL_STATE(515)] = 27902, + [SMALL_STATE(516)] = 27953, + [SMALL_STATE(517)] = 28036, + [SMALL_STATE(518)] = 28119, + [SMALL_STATE(519)] = 28202, + [SMALL_STATE(520)] = 28253, + [SMALL_STATE(521)] = 28304, + [SMALL_STATE(522)] = 28355, + [SMALL_STATE(523)] = 28406, + [SMALL_STATE(524)] = 28457, + [SMALL_STATE(525)] = 28540, + [SMALL_STATE(526)] = 28623, + [SMALL_STATE(527)] = 28682, + [SMALL_STATE(528)] = 28765, + [SMALL_STATE(529)] = 28830, + [SMALL_STATE(530)] = 28913, + [SMALL_STATE(531)] = 28996, + [SMALL_STATE(532)] = 29055, + [SMALL_STATE(533)] = 29138, + [SMALL_STATE(534)] = 29189, + [SMALL_STATE(535)] = 29243, + [SMALL_STATE(536)] = 29297, + [SMALL_STATE(537)] = 29353, + [SMALL_STATE(538)] = 29410, + [SMALL_STATE(539)] = 29466, + [SMALL_STATE(540)] = 29532, + [SMALL_STATE(541)] = 29588, + [SMALL_STATE(542)] = 29644, + [SMALL_STATE(543)] = 29691, + [SMALL_STATE(544)] = 29738, + [SMALL_STATE(545)] = 29805, + [SMALL_STATE(546)] = 29852, + [SMALL_STATE(547)] = 29899, + [SMALL_STATE(548)] = 29946, + [SMALL_STATE(549)] = 29993, + [SMALL_STATE(550)] = 30040, + [SMALL_STATE(551)] = 30087, + [SMALL_STATE(552)] = 30158, + [SMALL_STATE(553)] = 30205, + [SMALL_STATE(554)] = 30276, + [SMALL_STATE(555)] = 30323, + [SMALL_STATE(556)] = 30372, + [SMALL_STATE(557)] = 30419, + [SMALL_STATE(558)] = 30466, + [SMALL_STATE(559)] = 30512, + [SMALL_STATE(560)] = 30558, + [SMALL_STATE(561)] = 30642, + [SMALL_STATE(562)] = 30710, + [SMALL_STATE(563)] = 30756, + [SMALL_STATE(564)] = 30802, + [SMALL_STATE(565)] = 30881, + [SMALL_STATE(566)] = 30939, + [SMALL_STATE(567)] = 30991, + [SMALL_STATE(568)] = 31043, + [SMALL_STATE(569)] = 31095, + [SMALL_STATE(570)] = 31147, + [SMALL_STATE(571)] = 31199, + [SMALL_STATE(572)] = 31280, + [SMALL_STATE(573)] = 31361, + [SMALL_STATE(574)] = 31408, + [SMALL_STATE(575)] = 31450, + [SMALL_STATE(576)] = 31505, + [SMALL_STATE(577)] = 31546, + [SMALL_STATE(578)] = 31602, + [SMALL_STATE(579)] = 31658, + [SMALL_STATE(580)] = 31714, + [SMALL_STATE(581)] = 31770, + [SMALL_STATE(582)] = 31813, + [SMALL_STATE(583)] = 31883, + [SMALL_STATE(584)] = 31933, + [SMALL_STATE(585)] = 31978, + [SMALL_STATE(586)] = 32027, + [SMALL_STATE(587)] = 32069, + [SMALL_STATE(588)] = 32110, + [SMALL_STATE(589)] = 32165, + [SMALL_STATE(590)] = 32205, + [SMALL_STATE(591)] = 32241, + [SMALL_STATE(592)] = 32297, + [SMALL_STATE(593)] = 32353, + [SMALL_STATE(594)] = 32409, + [SMALL_STATE(595)] = 32465, + [SMALL_STATE(596)] = 32521, + [SMALL_STATE(597)] = 32578, + [SMALL_STATE(598)] = 32615, + [SMALL_STATE(599)] = 32672, + [SMALL_STATE(600)] = 32729, + [SMALL_STATE(601)] = 32786, + [SMALL_STATE(602)] = 32833, + [SMALL_STATE(603)] = 32890, + [SMALL_STATE(604)] = 32944, + [SMALL_STATE(605)] = 32998, + [SMALL_STATE(606)] = 33052, + [SMALL_STATE(607)] = 33092, + [SMALL_STATE(608)] = 33146, + [SMALL_STATE(609)] = 33204, + [SMALL_STATE(610)] = 33236, + [SMALL_STATE(611)] = 33290, + [SMALL_STATE(612)] = 33344, + [SMALL_STATE(613)] = 33394, + [SMALL_STATE(614)] = 33428, + [SMALL_STATE(615)] = 33479, + [SMALL_STATE(616)] = 33534, + [SMALL_STATE(617)] = 33575, + [SMALL_STATE(618)] = 33604, + [SMALL_STATE(619)] = 33655, + [SMALL_STATE(620)] = 33706, + [SMALL_STATE(621)] = 33757, + [SMALL_STATE(622)] = 33786, + [SMALL_STATE(623)] = 33841, + [SMALL_STATE(624)] = 33896, + [SMALL_STATE(625)] = 33947, + [SMALL_STATE(626)] = 33998, + [SMALL_STATE(627)] = 34027, + [SMALL_STATE(628)] = 34076, + [SMALL_STATE(629)] = 34128, + [SMALL_STATE(630)] = 34180, + [SMALL_STATE(631)] = 34232, + [SMALL_STATE(632)] = 34281, + [SMALL_STATE(633)] = 34312, + [SMALL_STATE(634)] = 34355, + [SMALL_STATE(635)] = 34404, + [SMALL_STATE(636)] = 34435, + [SMALL_STATE(637)] = 34478, + [SMALL_STATE(638)] = 34519, + [SMALL_STATE(639)] = 34570, + [SMALL_STATE(640)] = 34601, + [SMALL_STATE(641)] = 34652, + [SMALL_STATE(642)] = 34703, + [SMALL_STATE(643)] = 34752, + [SMALL_STATE(644)] = 34801, + [SMALL_STATE(645)] = 34830, + [SMALL_STATE(646)] = 34877, + [SMALL_STATE(647)] = 34903, + [SMALL_STATE(648)] = 34931, + [SMALL_STATE(649)] = 34981, + [SMALL_STATE(650)] = 35009, + [SMALL_STATE(651)] = 35037, + [SMALL_STATE(652)] = 35065, + [SMALL_STATE(653)] = 35111, + [SMALL_STATE(654)] = 35139, + [SMALL_STATE(655)] = 35165, + [SMALL_STATE(656)] = 35191, + [SMALL_STATE(657)] = 35237, + [SMALL_STATE(658)] = 35265, + [SMALL_STATE(659)] = 35309, + [SMALL_STATE(660)] = 35335, + [SMALL_STATE(661)] = 35361, + [SMALL_STATE(662)] = 35389, + [SMALL_STATE(663)] = 35417, + [SMALL_STATE(664)] = 35445, + [SMALL_STATE(665)] = 35491, + [SMALL_STATE(666)] = 35519, + [SMALL_STATE(667)] = 35564, + [SMALL_STATE(668)] = 35609, + [SMALL_STATE(669)] = 35638, + [SMALL_STATE(670)] = 35667, + [SMALL_STATE(671)] = 35708, + [SMALL_STATE(672)] = 35753, + [SMALL_STATE(673)] = 35796, + [SMALL_STATE(674)] = 35831, + [SMALL_STATE(675)] = 35860, + [SMALL_STATE(676)] = 35897, + [SMALL_STATE(677)] = 35932, + [SMALL_STATE(678)] = 35977, + [SMALL_STATE(679)] = 36022, + [SMALL_STATE(680)] = 36067, + [SMALL_STATE(681)] = 36110, + [SMALL_STATE(682)] = 36139, + [SMALL_STATE(683)] = 36168, + [SMALL_STATE(684)] = 36197, + [SMALL_STATE(685)] = 36237, + [SMALL_STATE(686)] = 36261, + [SMALL_STATE(687)] = 36301, + [SMALL_STATE(688)] = 36325, + [SMALL_STATE(689)] = 36349, + [SMALL_STATE(690)] = 36389, + [SMALL_STATE(691)] = 36413, + [SMALL_STATE(692)] = 36455, + [SMALL_STATE(693)] = 36495, + [SMALL_STATE(694)] = 36537, + [SMALL_STATE(695)] = 36561, + [SMALL_STATE(696)] = 36603, + [SMALL_STATE(697)] = 36647, + [SMALL_STATE(698)] = 36689, + [SMALL_STATE(699)] = 36729, + [SMALL_STATE(700)] = 36771, + [SMALL_STATE(701)] = 36811, + [SMALL_STATE(702)] = 36851, + [SMALL_STATE(703)] = 36891, + [SMALL_STATE(704)] = 36931, + [SMALL_STATE(705)] = 36969, + [SMALL_STATE(706)] = 37006, + [SMALL_STATE(707)] = 37045, + [SMALL_STATE(708)] = 37080, + [SMALL_STATE(709)] = 37119, + [SMALL_STATE(710)] = 37158, + [SMALL_STATE(711)] = 37195, + [SMALL_STATE(712)] = 37230, + [SMALL_STATE(713)] = 37267, + [SMALL_STATE(714)] = 37302, + [SMALL_STATE(715)] = 37339, + [SMALL_STATE(716)] = 37378, + [SMALL_STATE(717)] = 37417, + [SMALL_STATE(718)] = 37456, + [SMALL_STATE(719)] = 37495, + [SMALL_STATE(720)] = 37530, + [SMALL_STATE(721)] = 37569, + [SMALL_STATE(722)] = 37608, + [SMALL_STATE(723)] = 37647, + [SMALL_STATE(724)] = 37686, + [SMALL_STATE(725)] = 37713, + [SMALL_STATE(726)] = 37752, + [SMALL_STATE(727)] = 37779, + [SMALL_STATE(728)] = 37818, + [SMALL_STATE(729)] = 37857, + [SMALL_STATE(730)] = 37891, + [SMALL_STATE(731)] = 37925, + [SMALL_STATE(732)] = 37959, + [SMALL_STATE(733)] = 37995, + [SMALL_STATE(734)] = 38029, + [SMALL_STATE(735)] = 38061, + [SMALL_STATE(736)] = 38101, + [SMALL_STATE(737)] = 38133, + [SMALL_STATE(738)] = 38169, + [SMALL_STATE(739)] = 38205, + [SMALL_STATE(740)] = 38241, + [SMALL_STATE(741)] = 38270, + [SMALL_STATE(742)] = 38291, + [SMALL_STATE(743)] = 38320, + [SMALL_STATE(744)] = 38349, + [SMALL_STATE(745)] = 38380, + [SMALL_STATE(746)] = 38411, + [SMALL_STATE(747)] = 38440, + [SMALL_STATE(748)] = 38469, + [SMALL_STATE(749)] = 38498, + [SMALL_STATE(750)] = 38527, + [SMALL_STATE(751)] = 38556, + [SMALL_STATE(752)] = 38585, + [SMALL_STATE(753)] = 38614, + [SMALL_STATE(754)] = 38643, + [SMALL_STATE(755)] = 38664, + [SMALL_STATE(756)] = 38693, + [SMALL_STATE(757)] = 38722, + [SMALL_STATE(758)] = 38751, + [SMALL_STATE(759)] = 38780, + [SMALL_STATE(760)] = 38809, + [SMALL_STATE(761)] = 38840, + [SMALL_STATE(762)] = 38869, + [SMALL_STATE(763)] = 38898, + [SMALL_STATE(764)] = 38929, + [SMALL_STATE(765)] = 38960, + [SMALL_STATE(766)] = 38989, + [SMALL_STATE(767)] = 39018, + [SMALL_STATE(768)] = 39047, + [SMALL_STATE(769)] = 39076, + [SMALL_STATE(770)] = 39109, + [SMALL_STATE(771)] = 39138, + [SMALL_STATE(772)] = 39167, + [SMALL_STATE(773)] = 39196, + [SMALL_STATE(774)] = 39227, + [SMALL_STATE(775)] = 39248, + [SMALL_STATE(776)] = 39279, + [SMALL_STATE(777)] = 39308, + [SMALL_STATE(778)] = 39337, + [SMALL_STATE(779)] = 39358, + [SMALL_STATE(780)] = 39387, + [SMALL_STATE(781)] = 39416, + [SMALL_STATE(782)] = 39445, + [SMALL_STATE(783)] = 39474, + [SMALL_STATE(784)] = 39503, + [SMALL_STATE(785)] = 39532, + [SMALL_STATE(786)] = 39561, + [SMALL_STATE(787)] = 39590, + [SMALL_STATE(788)] = 39619, + [SMALL_STATE(789)] = 39648, + [SMALL_STATE(790)] = 39677, + [SMALL_STATE(791)] = 39706, + [SMALL_STATE(792)] = 39735, + [SMALL_STATE(793)] = 39764, + [SMALL_STATE(794)] = 39793, + [SMALL_STATE(795)] = 39822, + [SMALL_STATE(796)] = 39853, + [SMALL_STATE(797)] = 39882, + [SMALL_STATE(798)] = 39911, + [SMALL_STATE(799)] = 39942, + [SMALL_STATE(800)] = 39967, + [SMALL_STATE(801)] = 39996, + [SMALL_STATE(802)] = 40025, + [SMALL_STATE(803)] = 40054, + [SMALL_STATE(804)] = 40087, + [SMALL_STATE(805)] = 40116, + [SMALL_STATE(806)] = 40137, + [SMALL_STATE(807)] = 40166, + [SMALL_STATE(808)] = 40195, + [SMALL_STATE(809)] = 40226, + [SMALL_STATE(810)] = 40252, + [SMALL_STATE(811)] = 40280, + [SMALL_STATE(812)] = 40306, + [SMALL_STATE(813)] = 40332, + [SMALL_STATE(814)] = 40358, + [SMALL_STATE(815)] = 40384, + [SMALL_STATE(816)] = 40412, + [SMALL_STATE(817)] = 40438, + [SMALL_STATE(818)] = 40464, + [SMALL_STATE(819)] = 40490, + [SMALL_STATE(820)] = 40512, + [SMALL_STATE(821)] = 40538, + [SMALL_STATE(822)] = 40564, + [SMALL_STATE(823)] = 40590, + [SMALL_STATE(824)] = 40616, + [SMALL_STATE(825)] = 40642, + [SMALL_STATE(826)] = 40668, + [SMALL_STATE(827)] = 40696, + [SMALL_STATE(828)] = 40718, + [SMALL_STATE(829)] = 40744, + [SMALL_STATE(830)] = 40770, + [SMALL_STATE(831)] = 40796, + [SMALL_STATE(832)] = 40824, + [SMALL_STATE(833)] = 40850, + [SMALL_STATE(834)] = 40876, + [SMALL_STATE(835)] = 40902, + [SMALL_STATE(836)] = 40930, + [SMALL_STATE(837)] = 40956, + [SMALL_STATE(838)] = 40982, + [SMALL_STATE(839)] = 41008, + [SMALL_STATE(840)] = 41036, + [SMALL_STATE(841)] = 41062, + [SMALL_STATE(842)] = 41088, + [SMALL_STATE(843)] = 41114, + [SMALL_STATE(844)] = 41140, + [SMALL_STATE(845)] = 41166, + [SMALL_STATE(846)] = 41192, + [SMALL_STATE(847)] = 41220, + [SMALL_STATE(848)] = 41246, + [SMALL_STATE(849)] = 41272, + [SMALL_STATE(850)] = 41298, + [SMALL_STATE(851)] = 41324, + [SMALL_STATE(852)] = 41350, + [SMALL_STATE(853)] = 41376, + [SMALL_STATE(854)] = 41402, + [SMALL_STATE(855)] = 41428, + [SMALL_STATE(856)] = 41456, + [SMALL_STATE(857)] = 41482, + [SMALL_STATE(858)] = 41508, + [SMALL_STATE(859)] = 41534, + [SMALL_STATE(860)] = 41560, + [SMALL_STATE(861)] = 41586, + [SMALL_STATE(862)] = 41612, + [SMALL_STATE(863)] = 41638, + [SMALL_STATE(864)] = 41664, + [SMALL_STATE(865)] = 41690, + [SMALL_STATE(866)] = 41716, + [SMALL_STATE(867)] = 41742, + [SMALL_STATE(868)] = 41764, + [SMALL_STATE(869)] = 41790, + [SMALL_STATE(870)] = 41816, + [SMALL_STATE(871)] = 41848, + [SMALL_STATE(872)] = 41871, + [SMALL_STATE(873)] = 41904, + [SMALL_STATE(874)] = 41937, + [SMALL_STATE(875)] = 41972, + [SMALL_STATE(876)] = 41995, + [SMALL_STATE(877)] = 42018, + [SMALL_STATE(878)] = 42051, + [SMALL_STATE(879)] = 42071, + [SMALL_STATE(880)] = 42093, + [SMALL_STATE(881)] = 42113, + [SMALL_STATE(882)] = 42135, + [SMALL_STATE(883)] = 42153, + [SMALL_STATE(884)] = 42173, + [SMALL_STATE(885)] = 42195, + [SMALL_STATE(886)] = 42215, + [SMALL_STATE(887)] = 42244, + [SMALL_STATE(888)] = 42263, + [SMALL_STATE(889)] = 42282, + [SMALL_STATE(890)] = 42311, + [SMALL_STATE(891)] = 42330, + [SMALL_STATE(892)] = 42346, + [SMALL_STATE(893)] = 42362, + [SMALL_STATE(894)] = 42394, + [SMALL_STATE(895)] = 42426, + [SMALL_STATE(896)] = 42458, + [SMALL_STATE(897)] = 42490, + [SMALL_STATE(898)] = 42506, + [SMALL_STATE(899)] = 42522, + [SMALL_STATE(900)] = 42554, + [SMALL_STATE(901)] = 42586, + [SMALL_STATE(902)] = 42602, + [SMALL_STATE(903)] = 42631, + [SMALL_STATE(904)] = 42658, + [SMALL_STATE(905)] = 42685, + [SMALL_STATE(906)] = 42712, + [SMALL_STATE(907)] = 42739, + [SMALL_STATE(908)] = 42770, + [SMALL_STATE(909)] = 42799, + [SMALL_STATE(910)] = 42826, + [SMALL_STATE(911)] = 42853, + [SMALL_STATE(912)] = 42884, + [SMALL_STATE(913)] = 42911, + [SMALL_STATE(914)] = 42936, + [SMALL_STATE(915)] = 42963, + [SMALL_STATE(916)] = 42990, + [SMALL_STATE(917)] = 43021, + [SMALL_STATE(918)] = 43047, + [SMALL_STATE(919)] = 43073, + [SMALL_STATE(920)] = 43089, + [SMALL_STATE(921)] = 43105, + [SMALL_STATE(922)] = 43121, + [SMALL_STATE(923)] = 43137, + [SMALL_STATE(924)] = 43153, + [SMALL_STATE(925)] = 43169, + [SMALL_STATE(926)] = 43185, + [SMALL_STATE(927)] = 43201, + [SMALL_STATE(928)] = 43217, + [SMALL_STATE(929)] = 43233, + [SMALL_STATE(930)] = 43249, + [SMALL_STATE(931)] = 43275, + [SMALL_STATE(932)] = 43291, + [SMALL_STATE(933)] = 43313, + [SMALL_STATE(934)] = 43329, + [SMALL_STATE(935)] = 43355, + [SMALL_STATE(936)] = 43371, + [SMALL_STATE(937)] = 43395, + [SMALL_STATE(938)] = 43411, + [SMALL_STATE(939)] = 43427, + [SMALL_STATE(940)] = 43443, + [SMALL_STATE(941)] = 43465, + [SMALL_STATE(942)] = 43481, + [SMALL_STATE(943)] = 43497, + [SMALL_STATE(944)] = 43513, + [SMALL_STATE(945)] = 43529, + [SMALL_STATE(946)] = 43545, + [SMALL_STATE(947)] = 43561, + [SMALL_STATE(948)] = 43585, + [SMALL_STATE(949)] = 43601, + [SMALL_STATE(950)] = 43617, + [SMALL_STATE(951)] = 43633, + [SMALL_STATE(952)] = 43649, + [SMALL_STATE(953)] = 43665, + [SMALL_STATE(954)] = 43681, + [SMALL_STATE(955)] = 43697, + [SMALL_STATE(956)] = 43713, + [SMALL_STATE(957)] = 43729, + [SMALL_STATE(958)] = 43745, + [SMALL_STATE(959)] = 43761, + [SMALL_STATE(960)] = 43777, + [SMALL_STATE(961)] = 43793, + [SMALL_STATE(962)] = 43809, + [SMALL_STATE(963)] = 43825, + [SMALL_STATE(964)] = 43841, + [SMALL_STATE(965)] = 43869, + [SMALL_STATE(966)] = 43894, + [SMALL_STATE(967)] = 43909, + [SMALL_STATE(968)] = 43924, + [SMALL_STATE(969)] = 43949, + [SMALL_STATE(970)] = 43962, + [SMALL_STATE(971)] = 43987, + [SMALL_STATE(972)] = 44000, + [SMALL_STATE(973)] = 44025, + [SMALL_STATE(974)] = 44040, + [SMALL_STATE(975)] = 44061, + [SMALL_STATE(976)] = 44086, + [SMALL_STATE(977)] = 44103, + [SMALL_STATE(978)] = 44124, + [SMALL_STATE(979)] = 44149, + [SMALL_STATE(980)] = 44174, + [SMALL_STATE(981)] = 44189, + [SMALL_STATE(982)] = 44212, + [SMALL_STATE(983)] = 44237, + [SMALL_STATE(984)] = 44250, + [SMALL_STATE(985)] = 44275, + [SMALL_STATE(986)] = 44288, + [SMALL_STATE(987)] = 44303, + [SMALL_STATE(988)] = 44316, + [SMALL_STATE(989)] = 44341, + [SMALL_STATE(990)] = 44358, + [SMALL_STATE(991)] = 44383, + [SMALL_STATE(992)] = 44396, + [SMALL_STATE(993)] = 44409, + [SMALL_STATE(994)] = 44422, + [SMALL_STATE(995)] = 44447, + [SMALL_STATE(996)] = 44460, + [SMALL_STATE(997)] = 44473, + [SMALL_STATE(998)] = 44498, + [SMALL_STATE(999)] = 44523, + [SMALL_STATE(1000)] = 44548, + [SMALL_STATE(1001)] = 44563, + [SMALL_STATE(1002)] = 44584, + [SMALL_STATE(1003)] = 44597, + [SMALL_STATE(1004)] = 44622, + [SMALL_STATE(1005)] = 44635, + [SMALL_STATE(1006)] = 44648, + [SMALL_STATE(1007)] = 44673, + [SMALL_STATE(1008)] = 44698, + [SMALL_STATE(1009)] = 44711, + [SMALL_STATE(1010)] = 44724, + [SMALL_STATE(1011)] = 44749, + [SMALL_STATE(1012)] = 44762, + [SMALL_STATE(1013)] = 44779, + [SMALL_STATE(1014)] = 44804, + [SMALL_STATE(1015)] = 44817, + [SMALL_STATE(1016)] = 44839, + [SMALL_STATE(1017)] = 44857, + [SMALL_STATE(1018)] = 44869, + [SMALL_STATE(1019)] = 44889, + [SMALL_STATE(1020)] = 44901, + [SMALL_STATE(1021)] = 44923, + [SMALL_STATE(1022)] = 44945, + [SMALL_STATE(1023)] = 44957, + [SMALL_STATE(1024)] = 44969, + [SMALL_STATE(1025)] = 44985, + [SMALL_STATE(1026)] = 44997, + [SMALL_STATE(1027)] = 45019, + [SMALL_STATE(1028)] = 45041, + [SMALL_STATE(1029)] = 45061, + [SMALL_STATE(1030)] = 45081, + [SMALL_STATE(1031)] = 45099, + [SMALL_STATE(1032)] = 45119, + [SMALL_STATE(1033)] = 45141, + [SMALL_STATE(1034)] = 45163, + [SMALL_STATE(1035)] = 45181, + [SMALL_STATE(1036)] = 45201, + [SMALL_STATE(1037)] = 45223, + [SMALL_STATE(1038)] = 45243, + [SMALL_STATE(1039)] = 45265, + [SMALL_STATE(1040)] = 45285, + [SMALL_STATE(1041)] = 45307, + [SMALL_STATE(1042)] = 45329, + [SMALL_STATE(1043)] = 45349, + [SMALL_STATE(1044)] = 45371, + [SMALL_STATE(1045)] = 45391, + [SMALL_STATE(1046)] = 45411, + [SMALL_STATE(1047)] = 45425, + [SMALL_STATE(1048)] = 45447, + [SMALL_STATE(1049)] = 45467, + [SMALL_STATE(1050)] = 45489, + [SMALL_STATE(1051)] = 45506, + [SMALL_STATE(1052)] = 45525, + [SMALL_STATE(1053)] = 45544, + [SMALL_STATE(1054)] = 45561, + [SMALL_STATE(1055)] = 45578, + [SMALL_STATE(1056)] = 45597, + [SMALL_STATE(1057)] = 45614, + [SMALL_STATE(1058)] = 45629, + [SMALL_STATE(1059)] = 45648, + [SMALL_STATE(1060)] = 45665, + [SMALL_STATE(1061)] = 45684, + [SMALL_STATE(1062)] = 45703, + [SMALL_STATE(1063)] = 45722, + [SMALL_STATE(1064)] = 45741, + [SMALL_STATE(1065)] = 45760, + [SMALL_STATE(1066)] = 45779, + [SMALL_STATE(1067)] = 45794, + [SMALL_STATE(1068)] = 45813, + [SMALL_STATE(1069)] = 45832, + [SMALL_STATE(1070)] = 45851, + [SMALL_STATE(1071)] = 45870, + [SMALL_STATE(1072)] = 45889, + [SMALL_STATE(1073)] = 45908, + [SMALL_STATE(1074)] = 45927, + [SMALL_STATE(1075)] = 45940, + [SMALL_STATE(1076)] = 45959, + [SMALL_STATE(1077)] = 45978, + [SMALL_STATE(1078)] = 45997, + [SMALL_STATE(1079)] = 46016, + [SMALL_STATE(1080)] = 46033, + [SMALL_STATE(1081)] = 46052, + [SMALL_STATE(1082)] = 46071, + [SMALL_STATE(1083)] = 46090, + [SMALL_STATE(1084)] = 46109, + [SMALL_STATE(1085)] = 46124, + [SMALL_STATE(1086)] = 46143, + [SMALL_STATE(1087)] = 46162, + [SMALL_STATE(1088)] = 46181, + [SMALL_STATE(1089)] = 46200, + [SMALL_STATE(1090)] = 46219, + [SMALL_STATE(1091)] = 46238, + [SMALL_STATE(1092)] = 46257, + [SMALL_STATE(1093)] = 46276, + [SMALL_STATE(1094)] = 46295, + [SMALL_STATE(1095)] = 46314, + [SMALL_STATE(1096)] = 46333, + [SMALL_STATE(1097)] = 46344, + [SMALL_STATE(1098)] = 46363, + [SMALL_STATE(1099)] = 46382, + [SMALL_STATE(1100)] = 46397, + [SMALL_STATE(1101)] = 46416, + [SMALL_STATE(1102)] = 46435, + [SMALL_STATE(1103)] = 46454, + [SMALL_STATE(1104)] = 46469, + [SMALL_STATE(1105)] = 46480, + [SMALL_STATE(1106)] = 46499, + [SMALL_STATE(1107)] = 46512, + [SMALL_STATE(1108)] = 46531, + [SMALL_STATE(1109)] = 46548, + [SMALL_STATE(1110)] = 46567, + [SMALL_STATE(1111)] = 46584, + [SMALL_STATE(1112)] = 46601, + [SMALL_STATE(1113)] = 46616, + [SMALL_STATE(1114)] = 46635, + [SMALL_STATE(1115)] = 46652, + [SMALL_STATE(1116)] = 46667, + [SMALL_STATE(1117)] = 46682, + [SMALL_STATE(1118)] = 46701, + [SMALL_STATE(1119)] = 46720, + [SMALL_STATE(1120)] = 46739, + [SMALL_STATE(1121)] = 46758, + [SMALL_STATE(1122)] = 46777, + [SMALL_STATE(1123)] = 46796, + [SMALL_STATE(1124)] = 46815, + [SMALL_STATE(1125)] = 46834, + [SMALL_STATE(1126)] = 46853, + [SMALL_STATE(1127)] = 46868, + [SMALL_STATE(1128)] = 46887, + [SMALL_STATE(1129)] = 46906, + [SMALL_STATE(1130)] = 46925, + [SMALL_STATE(1131)] = 46938, + [SMALL_STATE(1132)] = 46953, + [SMALL_STATE(1133)] = 46972, + [SMALL_STATE(1134)] = 46991, + [SMALL_STATE(1135)] = 47005, + [SMALL_STATE(1136)] = 47017, + [SMALL_STATE(1137)] = 47033, + [SMALL_STATE(1138)] = 47047, + [SMALL_STATE(1139)] = 47061, + [SMALL_STATE(1140)] = 47077, + [SMALL_STATE(1141)] = 47093, + [SMALL_STATE(1142)] = 47109, + [SMALL_STATE(1143)] = 47125, + [SMALL_STATE(1144)] = 47139, + [SMALL_STATE(1145)] = 47153, + [SMALL_STATE(1146)] = 47169, + [SMALL_STATE(1147)] = 47181, + [SMALL_STATE(1148)] = 47197, + [SMALL_STATE(1149)] = 47209, + [SMALL_STATE(1150)] = 47223, + [SMALL_STATE(1151)] = 47239, + [SMALL_STATE(1152)] = 47255, + [SMALL_STATE(1153)] = 47269, + [SMALL_STATE(1154)] = 47283, + [SMALL_STATE(1155)] = 47299, + [SMALL_STATE(1156)] = 47313, + [SMALL_STATE(1157)] = 47327, + [SMALL_STATE(1158)] = 47343, + [SMALL_STATE(1159)] = 47353, + [SMALL_STATE(1160)] = 47363, + [SMALL_STATE(1161)] = 47377, + [SMALL_STATE(1162)] = 47391, + [SMALL_STATE(1163)] = 47401, + [SMALL_STATE(1164)] = 47417, + [SMALL_STATE(1165)] = 47427, + [SMALL_STATE(1166)] = 47441, + [SMALL_STATE(1167)] = 47457, + [SMALL_STATE(1168)] = 47473, + [SMALL_STATE(1169)] = 47483, + [SMALL_STATE(1170)] = 47497, + [SMALL_STATE(1171)] = 47513, + [SMALL_STATE(1172)] = 47529, + [SMALL_STATE(1173)] = 47545, + [SMALL_STATE(1174)] = 47561, + [SMALL_STATE(1175)] = 47577, + [SMALL_STATE(1176)] = 47589, + [SMALL_STATE(1177)] = 47603, + [SMALL_STATE(1178)] = 47617, + [SMALL_STATE(1179)] = 47627, + [SMALL_STATE(1180)] = 47641, + [SMALL_STATE(1181)] = 47651, + [SMALL_STATE(1182)] = 47667, + [SMALL_STATE(1183)] = 47679, + [SMALL_STATE(1184)] = 47693, + [SMALL_STATE(1185)] = 47707, + [SMALL_STATE(1186)] = 47721, + [SMALL_STATE(1187)] = 47737, + [SMALL_STATE(1188)] = 47753, + [SMALL_STATE(1189)] = 47769, + [SMALL_STATE(1190)] = 47785, + [SMALL_STATE(1191)] = 47799, + [SMALL_STATE(1192)] = 47809, + [SMALL_STATE(1193)] = 47819, + [SMALL_STATE(1194)] = 47833, + [SMALL_STATE(1195)] = 47849, + [SMALL_STATE(1196)] = 47863, + [SMALL_STATE(1197)] = 47879, + [SMALL_STATE(1198)] = 47895, + [SMALL_STATE(1199)] = 47909, + [SMALL_STATE(1200)] = 47921, + [SMALL_STATE(1201)] = 47931, + [SMALL_STATE(1202)] = 47947, + [SMALL_STATE(1203)] = 47961, + [SMALL_STATE(1204)] = 47973, + [SMALL_STATE(1205)] = 47989, + [SMALL_STATE(1206)] = 48005, + [SMALL_STATE(1207)] = 48021, + [SMALL_STATE(1208)] = 48037, + [SMALL_STATE(1209)] = 48053, + [SMALL_STATE(1210)] = 48069, + [SMALL_STATE(1211)] = 48083, + [SMALL_STATE(1212)] = 48099, + [SMALL_STATE(1213)] = 48111, + [SMALL_STATE(1214)] = 48127, + [SMALL_STATE(1215)] = 48141, + [SMALL_STATE(1216)] = 48157, + [SMALL_STATE(1217)] = 48173, + [SMALL_STATE(1218)] = 48189, + [SMALL_STATE(1219)] = 48205, + [SMALL_STATE(1220)] = 48219, + [SMALL_STATE(1221)] = 48235, + [SMALL_STATE(1222)] = 48251, + [SMALL_STATE(1223)] = 48267, + [SMALL_STATE(1224)] = 48281, + [SMALL_STATE(1225)] = 48297, + [SMALL_STATE(1226)] = 48311, + [SMALL_STATE(1227)] = 48323, + [SMALL_STATE(1228)] = 48339, + [SMALL_STATE(1229)] = 48353, + [SMALL_STATE(1230)] = 48363, + [SMALL_STATE(1231)] = 48379, + [SMALL_STATE(1232)] = 48395, + [SMALL_STATE(1233)] = 48409, + [SMALL_STATE(1234)] = 48421, + [SMALL_STATE(1235)] = 48437, + [SMALL_STATE(1236)] = 48451, + [SMALL_STATE(1237)] = 48465, + [SMALL_STATE(1238)] = 48478, + [SMALL_STATE(1239)] = 48491, + [SMALL_STATE(1240)] = 48504, + [SMALL_STATE(1241)] = 48517, + [SMALL_STATE(1242)] = 48526, + [SMALL_STATE(1243)] = 48539, + [SMALL_STATE(1244)] = 48552, + [SMALL_STATE(1245)] = 48565, + [SMALL_STATE(1246)] = 48578, + [SMALL_STATE(1247)] = 48591, + [SMALL_STATE(1248)] = 48604, + [SMALL_STATE(1249)] = 48617, + [SMALL_STATE(1250)] = 48628, + [SMALL_STATE(1251)] = 48641, + [SMALL_STATE(1252)] = 48654, + [SMALL_STATE(1253)] = 48663, + [SMALL_STATE(1254)] = 48676, + [SMALL_STATE(1255)] = 48689, + [SMALL_STATE(1256)] = 48702, + [SMALL_STATE(1257)] = 48715, + [SMALL_STATE(1258)] = 48728, + [SMALL_STATE(1259)] = 48737, + [SMALL_STATE(1260)] = 48750, + [SMALL_STATE(1261)] = 48763, + [SMALL_STATE(1262)] = 48776, + [SMALL_STATE(1263)] = 48789, + [SMALL_STATE(1264)] = 48798, + [SMALL_STATE(1265)] = 48811, + [SMALL_STATE(1266)] = 48824, + [SMALL_STATE(1267)] = 48833, + [SMALL_STATE(1268)] = 48846, + [SMALL_STATE(1269)] = 48859, + [SMALL_STATE(1270)] = 48868, + [SMALL_STATE(1271)] = 48881, + [SMALL_STATE(1272)] = 48894, + [SMALL_STATE(1273)] = 48905, + [SMALL_STATE(1274)] = 48918, + [SMALL_STATE(1275)] = 48931, + [SMALL_STATE(1276)] = 48944, + [SMALL_STATE(1277)] = 48953, + [SMALL_STATE(1278)] = 48966, + [SMALL_STATE(1279)] = 48977, + [SMALL_STATE(1280)] = 48986, + [SMALL_STATE(1281)] = 48999, + [SMALL_STATE(1282)] = 49012, + [SMALL_STATE(1283)] = 49025, + [SMALL_STATE(1284)] = 49038, + [SMALL_STATE(1285)] = 49051, + [SMALL_STATE(1286)] = 49064, + [SMALL_STATE(1287)] = 49077, + [SMALL_STATE(1288)] = 49090, + [SMALL_STATE(1289)] = 49103, + [SMALL_STATE(1290)] = 49114, + [SMALL_STATE(1291)] = 49123, + [SMALL_STATE(1292)] = 49132, + [SMALL_STATE(1293)] = 49145, + [SMALL_STATE(1294)] = 49158, + [SMALL_STATE(1295)] = 49167, + [SMALL_STATE(1296)] = 49178, + [SMALL_STATE(1297)] = 49191, + [SMALL_STATE(1298)] = 49200, + [SMALL_STATE(1299)] = 49209, + [SMALL_STATE(1300)] = 49218, + [SMALL_STATE(1301)] = 49227, + [SMALL_STATE(1302)] = 49236, + [SMALL_STATE(1303)] = 49245, + [SMALL_STATE(1304)] = 49254, + [SMALL_STATE(1305)] = 49263, + [SMALL_STATE(1306)] = 49276, + [SMALL_STATE(1307)] = 49289, + [SMALL_STATE(1308)] = 49298, + [SMALL_STATE(1309)] = 49311, + [SMALL_STATE(1310)] = 49324, + [SMALL_STATE(1311)] = 49333, + [SMALL_STATE(1312)] = 49346, + [SMALL_STATE(1313)] = 49355, + [SMALL_STATE(1314)] = 49364, + [SMALL_STATE(1315)] = 49377, + [SMALL_STATE(1316)] = 49390, + [SMALL_STATE(1317)] = 49403, + [SMALL_STATE(1318)] = 49416, + [SMALL_STATE(1319)] = 49429, + [SMALL_STATE(1320)] = 49438, + [SMALL_STATE(1321)] = 49447, + [SMALL_STATE(1322)] = 49456, + [SMALL_STATE(1323)] = 49469, + [SMALL_STATE(1324)] = 49478, + [SMALL_STATE(1325)] = 49487, + [SMALL_STATE(1326)] = 49500, + [SMALL_STATE(1327)] = 49513, + [SMALL_STATE(1328)] = 49526, + [SMALL_STATE(1329)] = 49539, + [SMALL_STATE(1330)] = 49552, + [SMALL_STATE(1331)] = 49565, + [SMALL_STATE(1332)] = 49578, + [SMALL_STATE(1333)] = 49591, + [SMALL_STATE(1334)] = 49604, + [SMALL_STATE(1335)] = 49617, + [SMALL_STATE(1336)] = 49630, + [SMALL_STATE(1337)] = 49643, + [SMALL_STATE(1338)] = 49652, + [SMALL_STATE(1339)] = 49665, + [SMALL_STATE(1340)] = 49678, + [SMALL_STATE(1341)] = 49691, + [SMALL_STATE(1342)] = 49704, + [SMALL_STATE(1343)] = 49717, + [SMALL_STATE(1344)] = 49730, + [SMALL_STATE(1345)] = 49739, + [SMALL_STATE(1346)] = 49752, + [SMALL_STATE(1347)] = 49765, + [SMALL_STATE(1348)] = 49778, + [SMALL_STATE(1349)] = 49791, + [SMALL_STATE(1350)] = 49804, + [SMALL_STATE(1351)] = 49817, + [SMALL_STATE(1352)] = 49830, + [SMALL_STATE(1353)] = 49839, + [SMALL_STATE(1354)] = 49852, + [SMALL_STATE(1355)] = 49865, + [SMALL_STATE(1356)] = 49874, + [SMALL_STATE(1357)] = 49883, + [SMALL_STATE(1358)] = 49896, + [SMALL_STATE(1359)] = 49909, + [SMALL_STATE(1360)] = 49922, + [SMALL_STATE(1361)] = 49935, + [SMALL_STATE(1362)] = 49944, + [SMALL_STATE(1363)] = 49957, + [SMALL_STATE(1364)] = 49968, + [SMALL_STATE(1365)] = 49981, + [SMALL_STATE(1366)] = 49990, + [SMALL_STATE(1367)] = 50003, + [SMALL_STATE(1368)] = 50012, + [SMALL_STATE(1369)] = 50021, + [SMALL_STATE(1370)] = 50030, + [SMALL_STATE(1371)] = 50039, + [SMALL_STATE(1372)] = 50048, + [SMALL_STATE(1373)] = 50061, + [SMALL_STATE(1374)] = 50074, + [SMALL_STATE(1375)] = 50087, + [SMALL_STATE(1376)] = 50096, + [SMALL_STATE(1377)] = 50109, + [SMALL_STATE(1378)] = 50122, + [SMALL_STATE(1379)] = 50135, + [SMALL_STATE(1380)] = 50144, + [SMALL_STATE(1381)] = 50157, + [SMALL_STATE(1382)] = 50170, + [SMALL_STATE(1383)] = 50183, + [SMALL_STATE(1384)] = 50196, + [SMALL_STATE(1385)] = 50207, + [SMALL_STATE(1386)] = 50218, + [SMALL_STATE(1387)] = 50231, + [SMALL_STATE(1388)] = 50244, + [SMALL_STATE(1389)] = 50257, + [SMALL_STATE(1390)] = 50270, + [SMALL_STATE(1391)] = 50283, + [SMALL_STATE(1392)] = 50296, + [SMALL_STATE(1393)] = 50305, + [SMALL_STATE(1394)] = 50316, + [SMALL_STATE(1395)] = 50329, + [SMALL_STATE(1396)] = 50342, + [SMALL_STATE(1397)] = 50355, + [SMALL_STATE(1398)] = 50364, + [SMALL_STATE(1399)] = 50377, + [SMALL_STATE(1400)] = 50390, + [SMALL_STATE(1401)] = 50403, + [SMALL_STATE(1402)] = 50416, + [SMALL_STATE(1403)] = 50425, + [SMALL_STATE(1404)] = 50438, + [SMALL_STATE(1405)] = 50451, + [SMALL_STATE(1406)] = 50464, + [SMALL_STATE(1407)] = 50477, + [SMALL_STATE(1408)] = 50490, + [SMALL_STATE(1409)] = 50503, + [SMALL_STATE(1410)] = 50512, + [SMALL_STATE(1411)] = 50525, + [SMALL_STATE(1412)] = 50534, + [SMALL_STATE(1413)] = 50543, + [SMALL_STATE(1414)] = 50552, + [SMALL_STATE(1415)] = 50565, + [SMALL_STATE(1416)] = 50576, + [SMALL_STATE(1417)] = 50585, + [SMALL_STATE(1418)] = 50598, + [SMALL_STATE(1419)] = 50611, + [SMALL_STATE(1420)] = 50624, + [SMALL_STATE(1421)] = 50637, + [SMALL_STATE(1422)] = 50650, + [SMALL_STATE(1423)] = 50663, + [SMALL_STATE(1424)] = 50672, + [SMALL_STATE(1425)] = 50685, + [SMALL_STATE(1426)] = 50694, + [SMALL_STATE(1427)] = 50707, + [SMALL_STATE(1428)] = 50716, + [SMALL_STATE(1429)] = 50729, + [SMALL_STATE(1430)] = 50742, + [SMALL_STATE(1431)] = 50755, + [SMALL_STATE(1432)] = 50768, + [SMALL_STATE(1433)] = 50781, + [SMALL_STATE(1434)] = 50794, + [SMALL_STATE(1435)] = 50805, + [SMALL_STATE(1436)] = 50818, + [SMALL_STATE(1437)] = 50828, + [SMALL_STATE(1438)] = 50836, + [SMALL_STATE(1439)] = 50844, + [SMALL_STATE(1440)] = 50854, + [SMALL_STATE(1441)] = 50864, + [SMALL_STATE(1442)] = 50872, + [SMALL_STATE(1443)] = 50882, + [SMALL_STATE(1444)] = 50890, + [SMALL_STATE(1445)] = 50900, + [SMALL_STATE(1446)] = 50910, + [SMALL_STATE(1447)] = 50920, + [SMALL_STATE(1448)] = 50930, + [SMALL_STATE(1449)] = 50940, + [SMALL_STATE(1450)] = 50950, + [SMALL_STATE(1451)] = 50960, + [SMALL_STATE(1452)] = 50970, + [SMALL_STATE(1453)] = 50980, + [SMALL_STATE(1454)] = 50990, + [SMALL_STATE(1455)] = 51000, + [SMALL_STATE(1456)] = 51010, + [SMALL_STATE(1457)] = 51020, + [SMALL_STATE(1458)] = 51028, + [SMALL_STATE(1459)] = 51038, + [SMALL_STATE(1460)] = 51048, + [SMALL_STATE(1461)] = 51056, + [SMALL_STATE(1462)] = 51064, + [SMALL_STATE(1463)] = 51072, + [SMALL_STATE(1464)] = 51082, + [SMALL_STATE(1465)] = 51092, + [SMALL_STATE(1466)] = 51102, + [SMALL_STATE(1467)] = 51110, + [SMALL_STATE(1468)] = 51120, + [SMALL_STATE(1469)] = 51128, + [SMALL_STATE(1470)] = 51138, + [SMALL_STATE(1471)] = 51146, + [SMALL_STATE(1472)] = 51154, + [SMALL_STATE(1473)] = 51164, + [SMALL_STATE(1474)] = 51172, + [SMALL_STATE(1475)] = 51182, + [SMALL_STATE(1476)] = 51192, + [SMALL_STATE(1477)] = 51202, + [SMALL_STATE(1478)] = 51212, + [SMALL_STATE(1479)] = 51220, + [SMALL_STATE(1480)] = 51228, + [SMALL_STATE(1481)] = 51236, + [SMALL_STATE(1482)] = 51244, + [SMALL_STATE(1483)] = 51254, + [SMALL_STATE(1484)] = 51262, + [SMALL_STATE(1485)] = 51272, + [SMALL_STATE(1486)] = 51280, + [SMALL_STATE(1487)] = 51290, + [SMALL_STATE(1488)] = 51300, + [SMALL_STATE(1489)] = 51308, + [SMALL_STATE(1490)] = 51316, + [SMALL_STATE(1491)] = 51324, + [SMALL_STATE(1492)] = 51334, + [SMALL_STATE(1493)] = 51342, + [SMALL_STATE(1494)] = 51352, + [SMALL_STATE(1495)] = 51360, + [SMALL_STATE(1496)] = 51370, + [SMALL_STATE(1497)] = 51378, + [SMALL_STATE(1498)] = 51388, + [SMALL_STATE(1499)] = 51398, + [SMALL_STATE(1500)] = 51406, + [SMALL_STATE(1501)] = 51416, + [SMALL_STATE(1502)] = 51426, + [SMALL_STATE(1503)] = 51436, + [SMALL_STATE(1504)] = 51446, + [SMALL_STATE(1505)] = 51456, + [SMALL_STATE(1506)] = 51464, + [SMALL_STATE(1507)] = 51472, + [SMALL_STATE(1508)] = 51482, + [SMALL_STATE(1509)] = 51492, + [SMALL_STATE(1510)] = 51500, + [SMALL_STATE(1511)] = 51508, + [SMALL_STATE(1512)] = 51516, + [SMALL_STATE(1513)] = 51524, + [SMALL_STATE(1514)] = 51532, + [SMALL_STATE(1515)] = 51540, + [SMALL_STATE(1516)] = 51550, + [SMALL_STATE(1517)] = 51558, + [SMALL_STATE(1518)] = 51566, + [SMALL_STATE(1519)] = 51574, + [SMALL_STATE(1520)] = 51584, + [SMALL_STATE(1521)] = 51594, + [SMALL_STATE(1522)] = 51602, + [SMALL_STATE(1523)] = 51612, + [SMALL_STATE(1524)] = 51622, + [SMALL_STATE(1525)] = 51632, + [SMALL_STATE(1526)] = 51640, + [SMALL_STATE(1527)] = 51648, + [SMALL_STATE(1528)] = 51656, + [SMALL_STATE(1529)] = 51666, + [SMALL_STATE(1530)] = 51674, + [SMALL_STATE(1531)] = 51682, + [SMALL_STATE(1532)] = 51690, + [SMALL_STATE(1533)] = 51700, + [SMALL_STATE(1534)] = 51710, + [SMALL_STATE(1535)] = 51718, + [SMALL_STATE(1536)] = 51726, + [SMALL_STATE(1537)] = 51736, + [SMALL_STATE(1538)] = 51744, + [SMALL_STATE(1539)] = 51754, + [SMALL_STATE(1540)] = 51762, + [SMALL_STATE(1541)] = 51772, + [SMALL_STATE(1542)] = 51782, + [SMALL_STATE(1543)] = 51790, + [SMALL_STATE(1544)] = 51800, + [SMALL_STATE(1545)] = 51810, + [SMALL_STATE(1546)] = 51818, + [SMALL_STATE(1547)] = 51826, + [SMALL_STATE(1548)] = 51836, + [SMALL_STATE(1549)] = 51846, + [SMALL_STATE(1550)] = 51856, + [SMALL_STATE(1551)] = 51866, + [SMALL_STATE(1552)] = 51874, + [SMALL_STATE(1553)] = 51882, + [SMALL_STATE(1554)] = 51890, + [SMALL_STATE(1555)] = 51898, + [SMALL_STATE(1556)] = 51906, + [SMALL_STATE(1557)] = 51914, + [SMALL_STATE(1558)] = 51922, + [SMALL_STATE(1559)] = 51930, + [SMALL_STATE(1560)] = 51940, + [SMALL_STATE(1561)] = 51948, + [SMALL_STATE(1562)] = 51956, + [SMALL_STATE(1563)] = 51964, + [SMALL_STATE(1564)] = 51974, + [SMALL_STATE(1565)] = 51982, + [SMALL_STATE(1566)] = 51990, + [SMALL_STATE(1567)] = 52000, + [SMALL_STATE(1568)] = 52010, + [SMALL_STATE(1569)] = 52018, + [SMALL_STATE(1570)] = 52026, + [SMALL_STATE(1571)] = 52034, + [SMALL_STATE(1572)] = 52044, + [SMALL_STATE(1573)] = 52052, + [SMALL_STATE(1574)] = 52060, + [SMALL_STATE(1575)] = 52068, + [SMALL_STATE(1576)] = 52078, + [SMALL_STATE(1577)] = 52086, + [SMALL_STATE(1578)] = 52096, + [SMALL_STATE(1579)] = 52106, + [SMALL_STATE(1580)] = 52114, + [SMALL_STATE(1581)] = 52124, + [SMALL_STATE(1582)] = 52134, + [SMALL_STATE(1583)] = 52142, + [SMALL_STATE(1584)] = 52152, + [SMALL_STATE(1585)] = 52160, + [SMALL_STATE(1586)] = 52168, + [SMALL_STATE(1587)] = 52178, + [SMALL_STATE(1588)] = 52186, + [SMALL_STATE(1589)] = 52196, + [SMALL_STATE(1590)] = 52206, + [SMALL_STATE(1591)] = 52216, + [SMALL_STATE(1592)] = 52224, + [SMALL_STATE(1593)] = 52232, + [SMALL_STATE(1594)] = 52240, + [SMALL_STATE(1595)] = 52250, + [SMALL_STATE(1596)] = 52258, + [SMALL_STATE(1597)] = 52268, + [SMALL_STATE(1598)] = 52278, + [SMALL_STATE(1599)] = 52288, + [SMALL_STATE(1600)] = 52296, + [SMALL_STATE(1601)] = 52304, + [SMALL_STATE(1602)] = 52314, + [SMALL_STATE(1603)] = 52322, + [SMALL_STATE(1604)] = 52332, + [SMALL_STATE(1605)] = 52340, + [SMALL_STATE(1606)] = 52350, + [SMALL_STATE(1607)] = 52358, + [SMALL_STATE(1608)] = 52366, + [SMALL_STATE(1609)] = 52376, + [SMALL_STATE(1610)] = 52384, + [SMALL_STATE(1611)] = 52392, + [SMALL_STATE(1612)] = 52400, + [SMALL_STATE(1613)] = 52410, + [SMALL_STATE(1614)] = 52418, + [SMALL_STATE(1615)] = 52425, + [SMALL_STATE(1616)] = 52432, + [SMALL_STATE(1617)] = 52439, + [SMALL_STATE(1618)] = 52446, + [SMALL_STATE(1619)] = 52453, + [SMALL_STATE(1620)] = 52460, + [SMALL_STATE(1621)] = 52467, + [SMALL_STATE(1622)] = 52474, + [SMALL_STATE(1623)] = 52481, + [SMALL_STATE(1624)] = 52488, + [SMALL_STATE(1625)] = 52495, + [SMALL_STATE(1626)] = 52502, + [SMALL_STATE(1627)] = 52509, + [SMALL_STATE(1628)] = 52516, + [SMALL_STATE(1629)] = 52523, + [SMALL_STATE(1630)] = 52530, + [SMALL_STATE(1631)] = 52537, + [SMALL_STATE(1632)] = 52544, + [SMALL_STATE(1633)] = 52551, + [SMALL_STATE(1634)] = 52558, + [SMALL_STATE(1635)] = 52565, + [SMALL_STATE(1636)] = 52572, + [SMALL_STATE(1637)] = 52579, + [SMALL_STATE(1638)] = 52586, + [SMALL_STATE(1639)] = 52593, + [SMALL_STATE(1640)] = 52600, + [SMALL_STATE(1641)] = 52607, + [SMALL_STATE(1642)] = 52614, + [SMALL_STATE(1643)] = 52621, + [SMALL_STATE(1644)] = 52628, + [SMALL_STATE(1645)] = 52635, + [SMALL_STATE(1646)] = 52642, + [SMALL_STATE(1647)] = 52649, + [SMALL_STATE(1648)] = 52656, + [SMALL_STATE(1649)] = 52663, + [SMALL_STATE(1650)] = 52670, + [SMALL_STATE(1651)] = 52677, + [SMALL_STATE(1652)] = 52684, + [SMALL_STATE(1653)] = 52691, + [SMALL_STATE(1654)] = 52698, + [SMALL_STATE(1655)] = 52705, + [SMALL_STATE(1656)] = 52712, + [SMALL_STATE(1657)] = 52719, + [SMALL_STATE(1658)] = 52726, + [SMALL_STATE(1659)] = 52733, + [SMALL_STATE(1660)] = 52740, + [SMALL_STATE(1661)] = 52747, + [SMALL_STATE(1662)] = 52754, + [SMALL_STATE(1663)] = 52761, + [SMALL_STATE(1664)] = 52768, + [SMALL_STATE(1665)] = 52775, + [SMALL_STATE(1666)] = 52782, + [SMALL_STATE(1667)] = 52789, + [SMALL_STATE(1668)] = 52796, + [SMALL_STATE(1669)] = 52803, + [SMALL_STATE(1670)] = 52810, + [SMALL_STATE(1671)] = 52817, + [SMALL_STATE(1672)] = 52824, + [SMALL_STATE(1673)] = 52831, + [SMALL_STATE(1674)] = 52838, + [SMALL_STATE(1675)] = 52845, + [SMALL_STATE(1676)] = 52852, + [SMALL_STATE(1677)] = 52859, + [SMALL_STATE(1678)] = 52866, + [SMALL_STATE(1679)] = 52873, + [SMALL_STATE(1680)] = 52880, + [SMALL_STATE(1681)] = 52887, + [SMALL_STATE(1682)] = 52894, + [SMALL_STATE(1683)] = 52901, + [SMALL_STATE(1684)] = 52908, + [SMALL_STATE(1685)] = 52915, + [SMALL_STATE(1686)] = 52922, + [SMALL_STATE(1687)] = 52929, + [SMALL_STATE(1688)] = 52936, + [SMALL_STATE(1689)] = 52943, + [SMALL_STATE(1690)] = 52950, + [SMALL_STATE(1691)] = 52957, + [SMALL_STATE(1692)] = 52964, + [SMALL_STATE(1693)] = 52971, + [SMALL_STATE(1694)] = 52978, + [SMALL_STATE(1695)] = 52985, + [SMALL_STATE(1696)] = 52992, + [SMALL_STATE(1697)] = 52999, + [SMALL_STATE(1698)] = 53006, + [SMALL_STATE(1699)] = 53013, + [SMALL_STATE(1700)] = 53020, + [SMALL_STATE(1701)] = 53027, + [SMALL_STATE(1702)] = 53034, + [SMALL_STATE(1703)] = 53041, + [SMALL_STATE(1704)] = 53048, + [SMALL_STATE(1705)] = 53055, + [SMALL_STATE(1706)] = 53062, + [SMALL_STATE(1707)] = 53069, + [SMALL_STATE(1708)] = 53076, + [SMALL_STATE(1709)] = 53083, + [SMALL_STATE(1710)] = 53090, + [SMALL_STATE(1711)] = 53097, + [SMALL_STATE(1712)] = 53104, + [SMALL_STATE(1713)] = 53111, + [SMALL_STATE(1714)] = 53118, + [SMALL_STATE(1715)] = 53125, + [SMALL_STATE(1716)] = 53132, + [SMALL_STATE(1717)] = 53139, + [SMALL_STATE(1718)] = 53146, + [SMALL_STATE(1719)] = 53153, + [SMALL_STATE(1720)] = 53160, + [SMALL_STATE(1721)] = 53167, + [SMALL_STATE(1722)] = 53174, + [SMALL_STATE(1723)] = 53181, + [SMALL_STATE(1724)] = 53188, + [SMALL_STATE(1725)] = 53195, + [SMALL_STATE(1726)] = 53202, + [SMALL_STATE(1727)] = 53209, + [SMALL_STATE(1728)] = 53216, + [SMALL_STATE(1729)] = 53223, + [SMALL_STATE(1730)] = 53230, + [SMALL_STATE(1731)] = 53237, + [SMALL_STATE(1732)] = 53244, + [SMALL_STATE(1733)] = 53251, + [SMALL_STATE(1734)] = 53258, + [SMALL_STATE(1735)] = 53265, + [SMALL_STATE(1736)] = 53272, + [SMALL_STATE(1737)] = 53279, + [SMALL_STATE(1738)] = 53286, + [SMALL_STATE(1739)] = 53293, + [SMALL_STATE(1740)] = 53300, + [SMALL_STATE(1741)] = 53307, + [SMALL_STATE(1742)] = 53314, + [SMALL_STATE(1743)] = 53321, + [SMALL_STATE(1744)] = 53328, + [SMALL_STATE(1745)] = 53335, + [SMALL_STATE(1746)] = 53342, + [SMALL_STATE(1747)] = 53349, + [SMALL_STATE(1748)] = 53356, + [SMALL_STATE(1749)] = 53363, + [SMALL_STATE(1750)] = 53370, + [SMALL_STATE(1751)] = 53377, + [SMALL_STATE(1752)] = 53384, + [SMALL_STATE(1753)] = 53391, + [SMALL_STATE(1754)] = 53398, + [SMALL_STATE(1755)] = 53405, + [SMALL_STATE(1756)] = 53412, + [SMALL_STATE(1757)] = 53419, + [SMALL_STATE(1758)] = 53426, + [SMALL_STATE(1759)] = 53433, + [SMALL_STATE(1760)] = 53440, + [SMALL_STATE(1761)] = 53447, + [SMALL_STATE(1762)] = 53454, + [SMALL_STATE(1763)] = 53461, + [SMALL_STATE(1764)] = 53468, + [SMALL_STATE(1765)] = 53475, + [SMALL_STATE(1766)] = 53482, + [SMALL_STATE(1767)] = 53489, + [SMALL_STATE(1768)] = 53496, + [SMALL_STATE(1769)] = 53503, + [SMALL_STATE(1770)] = 53510, + [SMALL_STATE(1771)] = 53517, + [SMALL_STATE(1772)] = 53524, + [SMALL_STATE(1773)] = 53531, + [SMALL_STATE(1774)] = 53538, + [SMALL_STATE(1775)] = 53545, + [SMALL_STATE(1776)] = 53552, + [SMALL_STATE(1777)] = 53559, + [SMALL_STATE(1778)] = 53566, + [SMALL_STATE(1779)] = 53573, + [SMALL_STATE(1780)] = 53580, + [SMALL_STATE(1781)] = 53587, + [SMALL_STATE(1782)] = 53594, + [SMALL_STATE(1783)] = 53601, + [SMALL_STATE(1784)] = 53608, + [SMALL_STATE(1785)] = 53615, + [SMALL_STATE(1786)] = 53622, + [SMALL_STATE(1787)] = 53629, + [SMALL_STATE(1788)] = 53636, + [SMALL_STATE(1789)] = 53643, + [SMALL_STATE(1790)] = 53650, + [SMALL_STATE(1791)] = 53657, + [SMALL_STATE(1792)] = 53664, + [SMALL_STATE(1793)] = 53671, + [SMALL_STATE(1794)] = 53678, + [SMALL_STATE(1795)] = 53685, + [SMALL_STATE(1796)] = 53692, + [SMALL_STATE(1797)] = 53699, + [SMALL_STATE(1798)] = 53706, + [SMALL_STATE(1799)] = 53713, + [SMALL_STATE(1800)] = 53720, + [SMALL_STATE(1801)] = 53727, + [SMALL_STATE(1802)] = 53734, + [SMALL_STATE(1803)] = 53741, + [SMALL_STATE(1804)] = 53748, + [SMALL_STATE(1805)] = 53755, + [SMALL_STATE(1806)] = 53762, + [SMALL_STATE(1807)] = 53769, + [SMALL_STATE(1808)] = 53776, + [SMALL_STATE(1809)] = 53783, + [SMALL_STATE(1810)] = 53790, + [SMALL_STATE(1811)] = 53797, + [SMALL_STATE(1812)] = 53804, + [SMALL_STATE(1813)] = 53811, + [SMALL_STATE(1814)] = 53818, + [SMALL_STATE(1815)] = 53825, + [SMALL_STATE(1816)] = 53832, + [SMALL_STATE(1817)] = 53839, + [SMALL_STATE(1818)] = 53846, + [SMALL_STATE(1819)] = 53853, + [SMALL_STATE(1820)] = 53860, + [SMALL_STATE(1821)] = 53867, + [SMALL_STATE(1822)] = 53874, + [SMALL_STATE(1823)] = 53881, + [SMALL_STATE(1824)] = 53888, + [SMALL_STATE(1825)] = 53895, + [SMALL_STATE(1826)] = 53902, + [SMALL_STATE(1827)] = 53909, + [SMALL_STATE(1828)] = 53916, + [SMALL_STATE(1829)] = 53923, + [SMALL_STATE(1830)] = 53930, + [SMALL_STATE(1831)] = 53937, + [SMALL_STATE(1832)] = 53944, + [SMALL_STATE(1833)] = 53951, + [SMALL_STATE(1834)] = 53958, + [SMALL_STATE(1835)] = 53965, + [SMALL_STATE(1836)] = 53972, + [SMALL_STATE(1837)] = 53979, + [SMALL_STATE(1838)] = 53986, + [SMALL_STATE(1839)] = 53993, + [SMALL_STATE(1840)] = 54000, + [SMALL_STATE(1841)] = 54007, + [SMALL_STATE(1842)] = 54014, + [SMALL_STATE(1843)] = 54021, + [SMALL_STATE(1844)] = 54028, + [SMALL_STATE(1845)] = 54035, + [SMALL_STATE(1846)] = 54042, + [SMALL_STATE(1847)] = 54049, + [SMALL_STATE(1848)] = 54056, + [SMALL_STATE(1849)] = 54063, + [SMALL_STATE(1850)] = 54070, + [SMALL_STATE(1851)] = 54077, + [SMALL_STATE(1852)] = 54084, + [SMALL_STATE(1853)] = 54091, + [SMALL_STATE(1854)] = 54098, + [SMALL_STATE(1855)] = 54105, + [SMALL_STATE(1856)] = 54112, + [SMALL_STATE(1857)] = 54119, + [SMALL_STATE(1858)] = 54126, + [SMALL_STATE(1859)] = 54133, + [SMALL_STATE(1860)] = 54140, + [SMALL_STATE(1861)] = 54147, + [SMALL_STATE(1862)] = 54154, + [SMALL_STATE(1863)] = 54161, + [SMALL_STATE(1864)] = 54168, + [SMALL_STATE(1865)] = 54175, + [SMALL_STATE(1866)] = 54182, + [SMALL_STATE(1867)] = 54189, + [SMALL_STATE(1868)] = 54196, + [SMALL_STATE(1869)] = 54203, + [SMALL_STATE(1870)] = 54210, + [SMALL_STATE(1871)] = 54217, + [SMALL_STATE(1872)] = 54224, + [SMALL_STATE(1873)] = 54231, + [SMALL_STATE(1874)] = 54238, + [SMALL_STATE(1875)] = 54245, + [SMALL_STATE(1876)] = 54252, + [SMALL_STATE(1877)] = 54259, + [SMALL_STATE(1878)] = 54266, + [SMALL_STATE(1879)] = 54273, + [SMALL_STATE(1880)] = 54280, + [SMALL_STATE(1881)] = 54287, + [SMALL_STATE(1882)] = 54294, + [SMALL_STATE(1883)] = 54301, + [SMALL_STATE(1884)] = 54308, + [SMALL_STATE(1885)] = 54315, + [SMALL_STATE(1886)] = 54322, + [SMALL_STATE(1887)] = 54329, + [SMALL_STATE(1888)] = 54336, + [SMALL_STATE(1889)] = 54343, + [SMALL_STATE(1890)] = 54350, + [SMALL_STATE(1891)] = 54357, + [SMALL_STATE(1892)] = 54364, + [SMALL_STATE(1893)] = 54371, + [SMALL_STATE(1894)] = 54378, + [SMALL_STATE(1895)] = 54385, + [SMALL_STATE(1896)] = 54392, + [SMALL_STATE(1897)] = 54399, + [SMALL_STATE(1898)] = 54406, + [SMALL_STATE(1899)] = 54413, + [SMALL_STATE(1900)] = 54420, + [SMALL_STATE(1901)] = 54427, + [SMALL_STATE(1902)] = 54434, + [SMALL_STATE(1903)] = 54441, + [SMALL_STATE(1904)] = 54448, + [SMALL_STATE(1905)] = 54455, + [SMALL_STATE(1906)] = 54462, + [SMALL_STATE(1907)] = 54469, + [SMALL_STATE(1908)] = 54476, + [SMALL_STATE(1909)] = 54483, + [SMALL_STATE(1910)] = 54490, + [SMALL_STATE(1911)] = 54497, + [SMALL_STATE(1912)] = 54504, + [SMALL_STATE(1913)] = 54511, + [SMALL_STATE(1914)] = 54518, + [SMALL_STATE(1915)] = 54525, + [SMALL_STATE(1916)] = 54532, + [SMALL_STATE(1917)] = 54539, + [SMALL_STATE(1918)] = 54546, + [SMALL_STATE(1919)] = 54553, + [SMALL_STATE(1920)] = 54560, + [SMALL_STATE(1921)] = 54567, + [SMALL_STATE(1922)] = 54574, + [SMALL_STATE(1923)] = 54581, + [SMALL_STATE(1924)] = 54588, + [SMALL_STATE(1925)] = 54595, + [SMALL_STATE(1926)] = 54602, + [SMALL_STATE(1927)] = 54609, + [SMALL_STATE(1928)] = 54616, + [SMALL_STATE(1929)] = 54623, + [SMALL_STATE(1930)] = 54630, + [SMALL_STATE(1931)] = 54637, + [SMALL_STATE(1932)] = 54644, + [SMALL_STATE(1933)] = 54651, + [SMALL_STATE(1934)] = 54658, + [SMALL_STATE(1935)] = 54665, + [SMALL_STATE(1936)] = 54672, + [SMALL_STATE(1937)] = 54679, + [SMALL_STATE(1938)] = 54686, + [SMALL_STATE(1939)] = 54693, + [SMALL_STATE(1940)] = 54700, + [SMALL_STATE(1941)] = 54707, + [SMALL_STATE(1942)] = 54714, + [SMALL_STATE(1943)] = 54721, + [SMALL_STATE(1944)] = 54728, + [SMALL_STATE(1945)] = 54735, + [SMALL_STATE(1946)] = 54742, + [SMALL_STATE(1947)] = 54749, + [SMALL_STATE(1948)] = 54756, + [SMALL_STATE(1949)] = 54763, + [SMALL_STATE(1950)] = 54770, + [SMALL_STATE(1951)] = 54777, + [SMALL_STATE(1952)] = 54784, + [SMALL_STATE(1953)] = 54791, + [SMALL_STATE(1954)] = 54798, + [SMALL_STATE(1955)] = 54805, + [SMALL_STATE(1956)] = 54812, + [SMALL_STATE(1957)] = 54819, + [SMALL_STATE(1958)] = 54826, + [SMALL_STATE(1959)] = 54833, + [SMALL_STATE(1960)] = 54840, + [SMALL_STATE(1961)] = 54847, + [SMALL_STATE(1962)] = 54854, + [SMALL_STATE(1963)] = 54861, + [SMALL_STATE(1964)] = 54868, + [SMALL_STATE(1965)] = 54875, + [SMALL_STATE(1966)] = 54882, + [SMALL_STATE(1967)] = 54889, + [SMALL_STATE(1968)] = 54896, + [SMALL_STATE(1969)] = 54903, + [SMALL_STATE(1970)] = 54910, + [SMALL_STATE(1971)] = 54917, + [SMALL_STATE(1972)] = 54924, + [SMALL_STATE(1973)] = 54931, + [SMALL_STATE(1974)] = 54938, + [SMALL_STATE(1975)] = 54945, + [SMALL_STATE(1976)] = 54952, + [SMALL_STATE(1977)] = 54959, + [SMALL_STATE(1978)] = 54966, + [SMALL_STATE(1979)] = 54973, + [SMALL_STATE(1980)] = 54980, + [SMALL_STATE(1981)] = 54987, + [SMALL_STATE(1982)] = 54994, + [SMALL_STATE(1983)] = 55001, + [SMALL_STATE(1984)] = 55008, + [SMALL_STATE(1985)] = 55015, + [SMALL_STATE(1986)] = 55022, + [SMALL_STATE(1987)] = 55029, + [SMALL_STATE(1988)] = 55036, + [SMALL_STATE(1989)] = 55043, + [SMALL_STATE(1990)] = 55050, + [SMALL_STATE(1991)] = 55057, + [SMALL_STATE(1992)] = 55064, + [SMALL_STATE(1993)] = 55071, + [SMALL_STATE(1994)] = 55078, + [SMALL_STATE(1995)] = 55085, + [SMALL_STATE(1996)] = 55092, + [SMALL_STATE(1997)] = 55099, + [SMALL_STATE(1998)] = 55106, + [SMALL_STATE(1999)] = 55113, + [SMALL_STATE(2000)] = 55120, + [SMALL_STATE(2001)] = 55127, + [SMALL_STATE(2002)] = 55134, + [SMALL_STATE(2003)] = 55141, + [SMALL_STATE(2004)] = 55148, + [SMALL_STATE(2005)] = 55155, + [SMALL_STATE(2006)] = 55162, + [SMALL_STATE(2007)] = 55169, + [SMALL_STATE(2008)] = 55176, + [SMALL_STATE(2009)] = 55183, + [SMALL_STATE(2010)] = 55190, + [SMALL_STATE(2011)] = 55197, + [SMALL_STATE(2012)] = 55204, + [SMALL_STATE(2013)] = 55211, + [SMALL_STATE(2014)] = 55218, + [SMALL_STATE(2015)] = 55225, + [SMALL_STATE(2016)] = 55232, + [SMALL_STATE(2017)] = 55239, + [SMALL_STATE(2018)] = 55246, + [SMALL_STATE(2019)] = 55253, + [SMALL_STATE(2020)] = 55260, + [SMALL_STATE(2021)] = 55267, + [SMALL_STATE(2022)] = 55274, + [SMALL_STATE(2023)] = 55281, + [SMALL_STATE(2024)] = 55288, + [SMALL_STATE(2025)] = 55295, + [SMALL_STATE(2026)] = 55302, + [SMALL_STATE(2027)] = 55309, + [SMALL_STATE(2028)] = 55316, + [SMALL_STATE(2029)] = 55323, + [SMALL_STATE(2030)] = 55330, + [SMALL_STATE(2031)] = 55337, + [SMALL_STATE(2032)] = 55344, + [SMALL_STATE(2033)] = 55351, + [SMALL_STATE(2034)] = 55358, + [SMALL_STATE(2035)] = 55365, + [SMALL_STATE(2036)] = 55372, + [SMALL_STATE(2037)] = 55379, + [SMALL_STATE(2038)] = 55386, + [SMALL_STATE(2039)] = 55393, + [SMALL_STATE(2040)] = 55400, + [SMALL_STATE(2041)] = 55407, + [SMALL_STATE(2042)] = 55414, + [SMALL_STATE(2043)] = 55421, + [SMALL_STATE(2044)] = 55428, + [SMALL_STATE(2045)] = 55435, + [SMALL_STATE(2046)] = 55442, + [SMALL_STATE(2047)] = 55449, + [SMALL_STATE(2048)] = 55456, + [SMALL_STATE(2049)] = 55463, + [SMALL_STATE(2050)] = 55470, + [SMALL_STATE(2051)] = 55477, + [SMALL_STATE(2052)] = 55484, + [SMALL_STATE(2053)] = 55491, + [SMALL_STATE(2054)] = 55498, + [SMALL_STATE(2055)] = 55505, + [SMALL_STATE(2056)] = 55512, + [SMALL_STATE(2057)] = 55519, + [SMALL_STATE(2058)] = 55526, + [SMALL_STATE(2059)] = 55533, + [SMALL_STATE(2060)] = 55540, + [SMALL_STATE(2061)] = 55547, + [SMALL_STATE(2062)] = 55554, + [SMALL_STATE(2063)] = 55561, + [SMALL_STATE(2064)] = 55568, + [SMALL_STATE(2065)] = 55575, + [SMALL_STATE(2066)] = 55582, + [SMALL_STATE(2067)] = 55589, + [SMALL_STATE(2068)] = 55596, + [SMALL_STATE(2069)] = 55603, + [SMALL_STATE(2070)] = 55610, + [SMALL_STATE(2071)] = 55617, + [SMALL_STATE(2072)] = 55624, + [SMALL_STATE(2073)] = 55631, + [SMALL_STATE(2074)] = 55638, + [SMALL_STATE(2075)] = 55645, + [SMALL_STATE(2076)] = 55652, + [SMALL_STATE(2077)] = 55659, + [SMALL_STATE(2078)] = 55666, + [SMALL_STATE(2079)] = 55673, + [SMALL_STATE(2080)] = 55680, + [SMALL_STATE(2081)] = 55687, + [SMALL_STATE(2082)] = 55694, + [SMALL_STATE(2083)] = 55701, + [SMALL_STATE(2084)] = 55708, + [SMALL_STATE(2085)] = 55715, + [SMALL_STATE(2086)] = 55722, + [SMALL_STATE(2087)] = 55729, + [SMALL_STATE(2088)] = 55736, + [SMALL_STATE(2089)] = 55743, + [SMALL_STATE(2090)] = 55750, + [SMALL_STATE(2091)] = 55757, + [SMALL_STATE(2092)] = 55764, + [SMALL_STATE(2093)] = 55771, + [SMALL_STATE(2094)] = 55778, + [SMALL_STATE(2095)] = 55785, + [SMALL_STATE(2096)] = 55792, + [SMALL_STATE(2097)] = 55799, + [SMALL_STATE(2098)] = 55806, + [SMALL_STATE(2099)] = 55813, + [SMALL_STATE(2100)] = 55820, + [SMALL_STATE(2101)] = 55827, + [SMALL_STATE(2102)] = 55834, + [SMALL_STATE(2103)] = 55841, + [SMALL_STATE(2104)] = 55848, + [SMALL_STATE(2105)] = 55855, + [SMALL_STATE(2106)] = 55862, + [SMALL_STATE(2107)] = 55869, + [SMALL_STATE(2108)] = 55876, + [SMALL_STATE(2109)] = 55883, + [SMALL_STATE(2110)] = 55890, + [SMALL_STATE(2111)] = 55897, + [SMALL_STATE(2112)] = 55904, + [SMALL_STATE(2113)] = 55911, + [SMALL_STATE(2114)] = 55918, + [SMALL_STATE(2115)] = 55925, + [SMALL_STATE(2116)] = 55932, + [SMALL_STATE(2117)] = 55939, + [SMALL_STATE(2118)] = 55946, + [SMALL_STATE(2119)] = 55953, + [SMALL_STATE(2120)] = 55960, + [SMALL_STATE(2121)] = 55967, + [SMALL_STATE(2122)] = 55974, + [SMALL_STATE(2123)] = 55981, + [SMALL_STATE(2124)] = 55988, + [SMALL_STATE(2125)] = 55995, + [SMALL_STATE(2126)] = 56002, + [SMALL_STATE(2127)] = 56009, + [SMALL_STATE(2128)] = 56016, + [SMALL_STATE(2129)] = 56023, + [SMALL_STATE(2130)] = 56030, + [SMALL_STATE(2131)] = 56037, + [SMALL_STATE(2132)] = 56044, + [SMALL_STATE(2133)] = 56051, + [SMALL_STATE(2134)] = 56058, + [SMALL_STATE(2135)] = 56065, + [SMALL_STATE(2136)] = 56072, + [SMALL_STATE(2137)] = 56079, + [SMALL_STATE(2138)] = 56086, + [SMALL_STATE(2139)] = 56093, + [SMALL_STATE(2140)] = 56100, + [SMALL_STATE(2141)] = 56107, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -66059,2695 +66263,2707 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), - [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(900), - [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1116), - [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1236), - [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(732), - [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(722), - [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(107), - [107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(797), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1501), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(785), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2137), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2136), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(63), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2113), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(784), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2100), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1272), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(841), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(851), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(21), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(275), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1273), - [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2087), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(631), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1280), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2083), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2081), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(273), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(220), - [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(576), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(860), - [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(855), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2080), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(260), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(725), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(853), - [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(231), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(87), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(257), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2079), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1038), - [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1116), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1236), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1324), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(913), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1106), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1357), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(734), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(712), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(107), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(775), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1440), + [111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(776), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2116), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2103), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(66), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2101), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(782), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2099), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1420), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(838), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(837), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(20), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(256), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1417), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2086), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(645), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1416), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2083), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2082), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(262), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(220), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(582), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(809), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(816), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2079), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(264), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(733), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(842), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(225), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(101), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(284), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2073), + [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1024), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1106), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1357), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1363), [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(63), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(784), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2100), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(21), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(275), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(66), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(782), + [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2099), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(20), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(256), [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2083), - [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2081), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(273), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2082), + [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(262), [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(220), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(576), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(860), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(855), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2080), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(260), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(725), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(853), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(231), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(87), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(257), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1221), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(846), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(722), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(797), + [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(582), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(809), + [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(816), + [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2079), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(264), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(733), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(842), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(225), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(101), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(284), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1140), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(839), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(712), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(775), [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2137), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2113), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1272), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(841), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(851), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1273), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(631), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1280), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2081), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(239), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2079), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 3, .production_id = 5), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2116), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2101), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1420), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(838), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(837), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1417), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(645), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1416), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2082), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(265), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2073), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 3, .production_id = 5), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 3, .production_id = 5), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 5), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1221), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(846), - [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(722), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(830), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2137), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2113), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1519), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(841), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(851), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1518), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(631), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1280), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2081), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2079), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 90), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 90), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), - [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 72), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 72), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 112), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 112), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), - [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 13), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 13), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 29), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 29), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 15), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 15), - [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 30), - [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 30), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 5), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 3, .production_id = 5), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1140), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(839), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(712), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(844), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2116), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2101), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1476), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(838), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(837), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1465), + [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(645), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1416), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2082), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2073), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 123), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 123), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 75), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 75), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 112), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 112), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 14), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 14), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 53), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 53), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), + [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 103), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 5), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 72), + [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 72), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 14), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 14), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 89), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 29), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 29), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 87), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 87), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 18), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 123), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 123), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 13), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 13), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 6, .production_id = 5), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 52), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 52), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 86), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 86), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 53), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 53), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 75), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 75), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 75), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 75), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 90), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 90), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 86), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 86), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 86), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 86), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 52), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 52), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 102), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 102), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 53), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 53), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 5), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 19), + [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 19), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 86), + [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 86), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 118), + [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 118), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 16), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 16), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 15), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 15), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 87), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 87), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 119), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 119), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 30), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 30), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 14), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 14), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 90), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 90), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 87), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 87), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 30), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 30), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 103), [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 102), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 102), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 72), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 72), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 118), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 118), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 53), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 53), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 119), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 119), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 87), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 87), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 38), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 38), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 38), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 38), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 38), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 38), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 38), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 38), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 38), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 38), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 57), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 57), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 32), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 32), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 71), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 71), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 69), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 69), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 74), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 74), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 95), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 95), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 63), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 63), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 76), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 76), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 33), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 33), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 34), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 34), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 107), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 107), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 63), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 63), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 41), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 41), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 20), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 71), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 71), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 54), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 54), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 74), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 74), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 41), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 41), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 2), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 2), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 65), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 65), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 39), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 39), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 2, .production_id = 6), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 2, .production_id = 6), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 63), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 63), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 37), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 37), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 54), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 54), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 115), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 115), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 60), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 60), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 63), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 63), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 71), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 71), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 58), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 58), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 34), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 34), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 33), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 33), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 56), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 56), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 69), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 69), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 74), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 74), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 32), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 32), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 32), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 32), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 54), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 54), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 56), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 56), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 57), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 57), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 37), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 37), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 58), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 58), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 60), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 60), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 76), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 76), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 121), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 121), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 71), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 71), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 78), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 78), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 20), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 20), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 65), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 65), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 63), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 63), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 24), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 24), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 31), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 31), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 31), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 31), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 5), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 89), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 75), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 75), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 89), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 72), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 72), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 90), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 90), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 39), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 39), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 39), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 39), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 114), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 39), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 39), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 39), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 39), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 39), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 39), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 116), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 33), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 33), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 42), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 42), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 71), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 71), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 76), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 76), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 56), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 56), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 95), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 95), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 122), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 57), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 57), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 116), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 34), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 34), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 63), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 63), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 40), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 40), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 35), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 35), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 58), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 58), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 59), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 60), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 60), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 21), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 21), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 63), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 63), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 35), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 35), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 65), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 65), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 76), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 76), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 122), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 92), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 42), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 42), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 34), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 34), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 54), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 54), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 74), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 74), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 74), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 74), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 122), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 105), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 33), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 33), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 107), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 107), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 63), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 63), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 60), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 60), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 71), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 71), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 59), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 71), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 71), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 2), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 2), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 58), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 58), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 78), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 78), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 121), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 121), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_declaration, 2, .production_id = 6), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_declaration, 2, .production_id = 6), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 69), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 69), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 68), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 120), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 54), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 54), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 57), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 57), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 56), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 56), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 63), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 63), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 116), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 38), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 38), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 65), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 65), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 116), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 122), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 113), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 68), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 69), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 69), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 21), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 21), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 71), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 71), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 63), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 63), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 115), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 115), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 38), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 38), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 54), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 54), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 74), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 74), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 25), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 25), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 33), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 33), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 17), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 17), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 37), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 37), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 37), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 37), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 28), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 28), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 55), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 55), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 18), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 18), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 17), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 17), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 32), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 32), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 83), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 104), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 83), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 29), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 29), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 38), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 38), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 38), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 38), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 55), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 55), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 104), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 29), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 29), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1, .production_id = 7), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1, .production_id = 7), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 27), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 27), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 26), [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 26), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(114), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 44), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 44), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 42), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 42), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), - [1842] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(1452), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(875), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(875), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 43), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 43), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 80), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 80), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 27), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 27), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(878), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(878), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(2083), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 12), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 12), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(2049), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 19), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1341), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(846), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2113), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(828), - [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(835), - [2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2087), - [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1280), - [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2081), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(506), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1972), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(846), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2113), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(828), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(835), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1976), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1280), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(846), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2113), - [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(828), - [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(835), - [2198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2087), - [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1280), - [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2081), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 46), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(838), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(821), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(820), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1341), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(722), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1035), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1962), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2081), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(495), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(250), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(301), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(248), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 22), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 36), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1073), - [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1073), - [2491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1236), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(846), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2113), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2087), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1280), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2081), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1341), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(846), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(2081), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 19), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 3), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 4, .production_id = 3), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 3), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 3), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 3), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 19), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 61), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 35), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 35), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 19), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1188), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1864), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1867), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(2081), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 35), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 61), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 35), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 110), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 97), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 61), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 62), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(601), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1794), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 77), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(2134), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), SHIFT(1810), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), SHIFT(1636), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), SHIFT(1935), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12, .production_id = 125), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 15, .production_id = 125), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 14, .production_id = 125), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 14), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 13, .production_id = 125), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 13), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 124), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 124), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12, .production_id = 28), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1851), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9, .production_id = 28), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), - [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1342), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10, .production_id = 28), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11, .production_id = 28), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 37), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 71), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 45), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 23), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 49), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .dynamic_precedence = 1), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 79), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 37), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(258), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 96), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1740), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(856), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 64), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 9, .production_id = 108), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(253), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 40), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 23), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 35), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(247), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(862), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1171), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 71), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 61), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1368), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1164), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 43), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 35), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1162), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1368), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 61), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(289), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(278), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 23), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(693), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 23), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(681), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1368), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 37), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(134), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1665), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(873), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 97), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 110), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(277), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(665), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(870), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1888), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(135), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(874), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(477), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(132), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1093), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 43), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1322), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(189), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), SHIFT_REPEAT(395), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 36), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(769), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 37), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 61), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1452), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(215), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 35), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 37), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 77), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), SHIFT_REPEAT(295), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(229), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 61), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 19), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1589), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(218), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(727), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 35), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 19), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1563), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 62), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 73), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(2049), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(1028), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 23), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 22), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2, .dynamic_precedence = 1), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 23), - [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1374), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(211), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [4288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1298), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 86), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 43), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 23), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 6, .production_id = 61), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 7, .production_id = 71), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(558), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), - [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 23), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 61), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 35), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 23), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1852), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 37), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 37), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 43), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 35), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 97), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 43), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 93), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 110), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(476), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2, .dynamic_precedence = 1), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(470), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 43), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 37), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 23), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 82), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 81), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 21), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 98), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 21), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 48), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 66), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 5, .production_id = 37), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5497] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(227), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 43), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 43), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(111), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .production_id = 20), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .production_id = 20), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 44), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 44), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_mark, 1), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_mark, 1), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_mark, 1), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 12), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 12), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1849] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), + [1853] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(1488), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 12), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 12), + [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 12), SHIFT_REPEAT(885), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 12), SHIFT_REPEAT(885), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 80), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 80), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .production_id = 7), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .production_id = 7), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 11), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 11), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discriminant_constraint, 3), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .dynamic_precedence = 1, .production_id = 7), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2, .dynamic_precedence = 1, .production_id = 7), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2, .production_id = 11), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2, .production_id = 11), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discriminant_constraint, 1), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3, .production_id = 24), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3, .production_id = 24), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3, .dynamic_precedence = 1, .production_id = 20), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3, .dynamic_precedence = 1, .production_id = 20), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3, .production_id = 20), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3, .production_id = 20), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_discriminant_constraint, 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 9), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 9), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 9), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 28), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 28), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(883), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(883), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(2083), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 7), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 13), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 13), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(2046), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 20), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1237), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(839), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2101), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(858), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(823), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2086), + [2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1416), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2082), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1818), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(510), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 10), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 46), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(839), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2101), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(858), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(823), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2127), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1416), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(839), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2101), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(858), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(823), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2086), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1416), + [2261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2082), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(494), + [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1237), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(712), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1016), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1960), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2082), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(860), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(865), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(868), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 103), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 6, .production_id = 5), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 89), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 89), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 103), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 10), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 5), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 103), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 89), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(315), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(288), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(287), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 23), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 37), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(839), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2101), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2086), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1416), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2082), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1105), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1105), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1357), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1237), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(839), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(2082), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 3), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 3), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 4, .production_id = 3), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 20), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 3), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 3), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 20), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 36), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 36), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 20), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 61), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1141), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1946), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1665), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(2082), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 61), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 36), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 97), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 36), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 61), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 110), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1661), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 77), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1784), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 62), + [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(612), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 36), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 36), SHIFT(1813), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), SHIFT(1938), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 111), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 111), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 85), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 20), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 20), SHIFT(1621), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 111), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 85), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 117), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 117), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 85), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 117), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 84), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 124), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 124), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12, .production_id = 29), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1849), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11, .production_id = 29), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10, .production_id = 29), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 15, .production_id = 125), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 14, .production_id = 125), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9, .production_id = 29), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12, .production_id = 125), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 13), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 14), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1283), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 13, .production_id = 125), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 38), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 71), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .dynamic_precedence = 1), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 49), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 24), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 45), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 79), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 96), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 9, .production_id = 108), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 41), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(263), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(259), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 24), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 38), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 64), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(2028), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(866), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(875), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 24), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 24), SHIFT(1377), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(680), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(700), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(286), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(813), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 38), + [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 38), SHIFT(1188), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 38), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 110), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 24), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 24), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(487), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1871), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 36), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(135), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 61), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(686), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 38), SHIFT(1377), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 11), + [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 11), SHIFT(1377), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 11), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 61), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1753), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(136), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(876), + [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 11), SHIFT(1174), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(131), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 24), SHIFT(1163), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(874), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 97), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(236), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(273), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(266), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 36), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 71), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1426), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(766), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 77), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), SHIFT_REPEAT(462), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1566), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 24), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1329), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 20), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 86), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 23), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 24), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 38), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 37), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(2046), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(1020), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(214), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), SHIFT_REPEAT(291), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(231), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 11), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1610), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(210), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(219), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 36), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 20), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 61), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(730), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2, .dynamic_precedence = 1), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 38), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1295), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 73), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 36), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [4277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(158), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 61), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1071), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 62), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1488), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 38), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(472), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2, .dynamic_precedence = 1), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 110), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 24), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 97), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 38), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 61), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 24), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 24), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 6, .production_id = 61), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 7, .production_id = 71), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(564), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 11), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 11), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 36), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 38), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 11), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1850), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 36), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 93), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), + [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 11), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 66), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 82), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 81), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 98), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 24), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 22), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 48), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 5, .production_id = 38), + [5509] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(224), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 22), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), }; #ifdef __cplusplus diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 88b551e..35ca315 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -441,7 +441,24 @@ Allocators procedure P is begin + -- subtype indication A := new T; + A := new not null T; + A := new T'Base; + A := new T (1 .. 10, 1 .. 20); + A := new T (100); + A := new T (F => 100); + A := new T (F); + + -- qualified expression + A := new T'(0, 255, 0); + A := new T'(F => 1); + A := new T'(1 .. 10 => (1 .. 20 => 0.0)); + A := new T'(55); + A := new T'(F); + A := new T'Base'(5); + + -- subpool specification A := new (pkg.pool) T'((F => 1)); end; @@ -451,25 +468,194 @@ end; (compilation_unit (subprogram_body (procedure_specification - (identifier)) + name: (identifier)) + (comment) (handled_sequence_of_statements (assignment_statement - (identifier) + variable_name: (identifier) (expression (term (allocator - (identifier))))) + subtype_mark: (identifier))))) (assignment_statement - (identifier) + variable_name: (identifier) + (expression + (term + (allocator + (null_exclusion) + subtype_mark: (identifier))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + subtype_mark: (identifier) + subtype_mark: (tick) + subtype_mark: (attribute_designator + (identifier)))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + subtype_mark: (identifier) + (index_constraint + (range_g + (term + (numeric_literal)) + (term + (numeric_literal))) + (range_g + (term + (numeric_literal)) + (term + (numeric_literal)))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + subtype_mark: (identifier) + (discriminant_constraint + (expression + (term + (numeric_literal)))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + subtype_mark: (identifier) + (discriminant_constraint + (discriminant_association + (identifier) + (expression + (term + (numeric_literal))))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + subtype_mark: (identifier) + (discriminant_constraint + (expression + (term + name: (identifier)))))))) + (comment) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + (tick) + (positional_array_aggregate + (expression + (term + (numeric_literal))) + (expression + (term + (numeric_literal))) + (expression + (term + (numeric_literal))))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + (tick) + (record_aggregate + (record_component_association_list + (component_choice_list + (identifier)) + (expression + (term + (numeric_literal)))))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + (tick) + (named_array_aggregate + (array_component_association + (discrete_choice_list + (discrete_choice + (range_g + (term + (numeric_literal)) + (term + (numeric_literal))))) + (expression + (term + (named_array_aggregate + (array_component_association + (discrete_choice_list + (discrete_choice + (range_g + (term + (numeric_literal)) + (term + (numeric_literal))))) + (expression + (term + (numeric_literal)))))))))))))) + + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + (tick) + (expression + (term + (numeric_literal)))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + (tick) + (expression + (term + name: (identifier)))))))) + (assignment_statement + variable_name: (identifier) + (expression + (term + (allocator + (qualified_expression + subtype_name: (identifier) + subtype_name: (tick) + subtype_name: (attribute_designator + (identifier)) + (tick) + (expression + (term + (numeric_literal)))))))) + (comment) + (assignment_statement + variable_name: (identifier) (expression (term (allocator (subpool_specification - (selected_component - (identifier) - (identifier))) + subpool_handle_name: (selected_component + prefix: (identifier) + selector_name: (identifier))) (qualified_expression - (identifier) + subtype_name: (identifier) (tick) (expression (term