diff --git a/grammar.js b/grammar.js index 0e2ae1e..13a49dd 100644 --- a/grammar.js +++ b/grammar.js @@ -110,6 +110,7 @@ module.exports = grammar({ ], inline: $ => [ $._name_not_function_call, + $._name_for_component_choice, ], rules: { @@ -150,6 +151,12 @@ module.exports = grammar({ $._name_not_function_call, $.function_call, ), + _name_for_component_choice: $ => choice( + // Do not allow slice, function_call,... as opposed to what RM allows + $.identifier, + $.string_literal, + ), + selected_component: $ => prec.left(seq( // RM 4.1.3 field('prefix', $._name), seq( @@ -392,9 +399,22 @@ module.exports = grammar({ field('subtype_mark', $._name_not_function_call), optional($._constraint), ), - _constraint: $ => choice( + discriminant_constraint: $ => seq( // RM 3.7.1 + '(', + comma_separated_list_of($.discriminant_association), + ')', + ), + discriminant_association: $ => seq( // RM 3.7.1 + optional(seq( + list_of('|', $._name_for_component_choice), + '=>', + )), + $.expression, + ), + _constraint: $ => choice( // RM 3.2.2 $._scalar_constraint, $.index_constraint, + $.discriminant_constraint, ), _scalar_constraint: $ => choice( $.range_constraint, @@ -670,11 +690,7 @@ module.exports = grammar({ ), component_choice_list: $ => choice( // RM 4.3.1 reservedWord('others'), - list_of('|', choice( // Do not allow slice, function_call,... - $.identifier, // as opposed to what the ARM allows - $.selected_component, - $.string_literal, - )), + list_of('|', $._name_for_component_choice), ), _aggregate: $ => choice( // RM 4.3 $.record_aggregate, @@ -766,7 +782,7 @@ module.exports = grammar({ reservedWord('not'), reservedWord('null'), ), - index_constraint: $ => seq( + index_constraint: $ => seq( // RM 3.6.1 '(', comma_separated_list_of($._discrete_range), ')', diff --git a/src/grammar.json b/src/grammar.json index ebdd8a2..2896c75 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -193,6 +193,19 @@ } ] }, + "_name_for_component_choice": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string_literal" + } + ] + }, "selected_component": { "type": "PREC_LEFT", "value": 0, @@ -1770,6 +1783,95 @@ } ] }, + "discriminant_constraint": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "discriminant_association" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "discriminant_association" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "discriminant_association": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_name_for_component_choice" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_name_for_component_choice" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "=>" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, "_constraint": { "type": "CHOICE", "members": [ @@ -1780,6 +1882,10 @@ { "type": "SYMBOL", "name": "index_constraint" + }, + { + "type": "SYMBOL", + "name": "discriminant_constraint" } ] }, @@ -3419,21 +3525,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "selected_component" - }, - { - "type": "SYMBOL", - "name": "string_literal" - } - ] + "type": "SYMBOL", + "name": "_name_for_component_choice" }, { "type": "REPEAT", @@ -3445,21 +3538,8 @@ "value": "|" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "selected_component" - }, - { - "type": "SYMBOL", - "name": "string_literal" - } - ] + "type": "SYMBOL", + "name": "_name_for_component_choice" } ] } @@ -14817,7 +14897,8 @@ "precedences": [], "externals": [], "inline": [ - "_name_not_function_call" + "_name_not_function_call", + "_name_for_component_choice" ], "supertypes": [] } diff --git a/src/node-types.json b/src/node-types.json index 77f4a82..1f62fed 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -366,6 +366,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "general_access_modifier", "named": true @@ -623,6 +627,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "index_constraint", "named": true @@ -1312,6 +1320,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true @@ -1605,10 +1617,6 @@ "type": "identifier", "named": true }, - { - "type": "selected_component", - "named": true - }, { "type": "string_literal", "named": true @@ -1824,6 +1832,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "index_constraint", "named": true @@ -2262,6 +2274,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "function_call", "named": true @@ -2419,6 +2435,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "expression", "named": true @@ -2457,6 +2477,44 @@ ] } }, + { + "type": "discriminant_association", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + } + ] + } + }, + { + "type": "discriminant_constraint", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "discriminant_association", + "named": true + } + ] + } + }, { "type": "discriminant_specification", "named": true, @@ -2933,6 +2991,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true @@ -3031,6 +3093,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true @@ -3696,6 +3762,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "expression", "named": true @@ -6323,6 +6393,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "index_constraint", "named": true @@ -6659,6 +6733,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true @@ -6800,6 +6878,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true @@ -7346,6 +7428,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "expression", "named": true @@ -8302,6 +8388,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "function_call", "named": true @@ -10526,6 +10616,10 @@ "type": "digits_constraint", "named": true }, + { + "type": "discriminant_constraint", + "named": true + }, { "type": "identifier", "named": true diff --git a/src/parser.c b/src/parser.c index 640a0f4..1526592 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1947 +#define STATE_COUNT 1963 #define LARGE_STATE_COUNT 75 -#define SYMBOL_COUNT 441 +#define SYMBOL_COUNT 444 #define ALIAS_COUNT 0 #define TOKEN_COUNT 114 #define EXTERNAL_TOKEN_COUNT 0 @@ -68,16 +68,16 @@ enum { aux_sym_subunit_token1 = 49, aux_sym_subprogram_body_token1 = 50, aux_sym_package_body_token1 = 51, - anon_sym_DOT_DOT = 52, - aux_sym_range_attribute_designator_token1 = 53, - aux_sym_expression_token1 = 54, - aux_sym_expression_token2 = 55, - aux_sym_expression_token3 = 56, - aux_sym_expression_token4 = 57, - aux_sym_expression_token5 = 58, - aux_sym_relation_membership_token1 = 59, - aux_sym_raise_expression_token1 = 60, - anon_sym_PIPE = 61, + anon_sym_PIPE = 52, + anon_sym_DOT_DOT = 53, + aux_sym_range_attribute_designator_token1 = 54, + aux_sym_expression_token1 = 55, + aux_sym_expression_token2 = 56, + aux_sym_expression_token3 = 57, + aux_sym_expression_token4 = 58, + aux_sym_expression_token5 = 59, + aux_sym_relation_membership_token1 = 60, + aux_sym_raise_expression_token1 = 61, anon_sym_STAR_STAR = 62, aux_sym_factor_abs_token1 = 63, aux_sym_primary_null_token1 = 64, @@ -167,296 +167,299 @@ enum { sym_subprogram_body = 148, sym_package_body = 149, sym__subtype_indication = 150, - sym__constraint = 151, - sym__scalar_constraint = 152, - sym_range_g = 153, - sym_range_attribute_designator = 154, - sym_range_constraint = 155, - sym_expression = 156, - sym__relation = 157, - sym_relation_membership = 158, - sym_raise_expression = 159, - sym_membership_choice_list = 160, - sym__membership_choice = 161, - sym__simple_expression = 162, - sym_term = 163, - sym__factor = 164, - sym_factor_power = 165, - sym_factor_abs = 166, - sym_factor_not = 167, - sym__parenthesized_expression = 168, - sym__primary = 169, - sym_primary_null = 170, - sym_allocator = 171, - sym__subtype_indication_paren_constraint = 172, - sym_subpool_specification = 173, - sym__access_type_definition = 174, - sym_access_to_subprogram_definition = 175, - sym_access_to_object_definition = 176, - sym_general_access_modifier = 177, - sym_access_definition = 178, - sym_actual_parameter_part = 179, - sym_parameter_association = 180, - sym__conditional_expression = 181, - sym__conditional_quantified_expression = 182, - sym_quantified_expression = 183, - sym_declare_expression = 184, - sym__declare_item = 185, - sym_quantifier = 186, - sym_case_expression = 187, - sym_case_expression_alternative = 188, - sym_component_choice_list = 189, - sym__aggregate = 190, - sym__delta_aggregate = 191, - sym_extension_aggregate = 192, - sym_record_delta_aggregate = 193, - sym_array_delta_aggregate = 194, - sym_record_aggregate = 195, - sym_record_component_association_list = 196, - sym__record_component_association_list_or_expression = 197, - sym__named_record_component_association = 198, - sym_null_exclusion = 199, - sym_index_constraint = 200, - sym_digits_constraint = 201, - sym_delta_constraint = 202, - sym__basic_declarative_item_pragma = 203, - sym__type_declaration = 204, - sym_full_type_declaration = 205, - sym_private_type_declaration = 206, - sym_private_extension_declaration = 207, - sym__discriminant_part = 208, - sym_unknown_discriminant_part = 209, - sym_known_discriminant_part = 210, - sym_incomplete_type_declaration = 211, - sym_discriminant_specification_list = 212, - sym_discriminant_specification = 213, - sym__type_definition = 214, - sym_array_type_definition = 215, - sym__discrete_subtype_definition_list = 216, - sym__discrete_range = 217, - sym__index_subtype_definition_list = 218, - sym_index_subtype_definition = 219, - sym_enumeration_type_definition = 220, - sym__enumeration_literal_list = 221, - sym__enumeration_literal_specification = 222, - sym__integer_type_definition = 223, - sym_modular_type_definition = 224, - sym__real_type_definition = 225, - sym_floating_point_definition = 226, - sym_real_range_specification = 227, - sym__fixed_point_definition = 228, - sym_decimal_fixed_point_definition = 229, - sym_ordinary_fixed_point_definition = 230, - sym_signed_integer_type_definition = 231, - sym_derived_type_definition = 232, - sym_interface_type_definition = 233, - sym__interface_list = 234, - sym_record_extension_part = 235, - sym_record_type_definition = 236, - sym_record_definition = 237, - sym_component_list = 238, - sym__component_item = 239, - sym_component_declaration = 240, - sym_component_definition = 241, - sym__array_aggregate = 242, - sym_positional_array_aggregate = 243, - sym_null_array_aggregate = 244, - sym_named_array_aggregate = 245, - sym__array_component_association_list = 246, - sym_array_component_association = 247, - sym_discrete_choice_list = 248, - sym_discrete_choice = 249, - sym_aspect_association = 250, - sym__aspect_clause = 251, - sym__aspect_definition = 252, - sym__aspect_mark = 253, - sym_aspect_mark_list = 254, - sym_aspect_specification = 255, - sym__assign_value = 256, - sym_at_clause = 257, - sym_attribute_definition_clause = 258, - sym_body_stub = 259, - sym_subprogram_body_stub = 260, - sym_package_body_stub = 261, - sym_task_body = 262, - sym_task_body_stub = 263, - sym__protected_operation_declaration = 264, - sym__protected_element_declaration = 265, - sym__protected_operation_item = 266, - sym_protected_definition = 267, - sym_protected_type_declaration = 268, - sym_single_protected_declaration = 269, - sym_protected_body = 270, - sym_protected_body_stub = 271, - sym_choice_parameter_specification = 272, - sym_component_clause = 273, - sym__declarative_item_pragma = 274, - sym_non_empty_declarative_part = 275, - sym_entry_declaration = 276, - sym_entry_body = 277, - sym_entry_barrier = 278, - sym_entry_index_specification = 279, - sym_enumeration_aggregate = 280, - sym_enumeration_representation_clause = 281, - sym_exception_choice_list = 282, - sym_exception_choice = 283, - sym_exception_declaration = 284, - sym_exception_handler = 285, - aux_sym__exception_handler_list = 286, - sym_formal_part = 287, - sym_function_specification = 288, - sym__generic_declaration = 289, - sym_generic_formal_part = 290, - sym__generic_formal_parameter_declaration = 291, - sym_generic_subprogram_declaration = 292, - sym_generic_package_declaration = 293, - sym_generic_instantiation = 294, - sym_formal_object_declaration = 295, - sym__formal_type_declaration = 296, - sym_formal_complete_type_declaration = 297, - sym_formal_incomplete_type_declaration = 298, - sym__formal_type_definition = 299, - sym_formal_private_type_definition = 300, - sym_formal_derived_type_definition = 301, - sym_formal_discrete_type_definition = 302, - sym_formal_signed_integer_type_definition = 303, - sym_formal_modular_type_definition = 304, - sym_formal_floating_point_definition = 305, - sym_formal_ordinary_fixed_point_definition = 306, - sym_formal_decimal_fixed_point_definition = 307, - sym_formal_array_type_definition = 308, - sym_formal_access_type_definition = 309, - sym_formal_interface_type_definition = 310, - sym_formal_subprogram_declaration = 311, - sym_formal_concrete_subprogram_declaration = 312, - sym_formal_abstract_subprogram_declaration = 313, - sym_subprogram_default = 314, - sym_formal_package_declaration = 315, - sym_global_aspect_definition = 316, - sym_global_aspect_element = 317, - sym_global_mode = 318, - sym_handled_sequence_of_statements = 319, - sym_loop_label = 320, - sym_label = 321, - sym_mod_clause = 322, - sym_non_empty_mode = 323, - sym_null_procedure_declaration = 324, - sym_null_statement = 325, - sym_number_declaration = 326, - sym_object_declaration = 327, - sym_single_task_declaration = 328, - sym_task_type_declaration = 329, - sym_non_empty_entry_body_formal_part = 330, - sym__task_item = 331, - sym_task_definition = 332, - sym_overriding_indicator = 333, - sym__parameter_and_result_profile = 334, - sym_parameter_specification = 335, - sym__parameter_specification_list = 336, - sym_pragma_g = 337, - sym_pragma_argument_association = 338, - sym_if_expression = 339, - sym_elsif_expression_item = 340, - sym_procedure_specification = 341, - sym_record_representation_clause = 342, - sym__renaming_declaration = 343, - sym_object_renaming_declaration = 344, - sym_exception_renaming_declaration = 345, - sym_package_renaming_declaration = 346, - sym_subprogram_renaming_declaration = 347, - sym_generic_renaming_declaration = 348, - sym_result_profile = 349, - sym__sequence_of_statements = 350, - sym__simple_statement = 351, - sym__statement = 352, - sym__compound_statement = 353, - sym__select_statement = 354, - sym_entry_call_alternative = 355, - sym_asynchronous_select = 356, - sym_triggering_alternative = 357, - sym_conditional_entry_call = 358, - sym_delay_alternative = 359, - sym_timed_entry_call = 360, - sym_guard = 361, - sym_select_alternative = 362, - sym_accept_alternative = 363, - sym_terminate_alternative = 364, - sym_selective_accept = 365, - sym_abort_statement = 366, - sym_requeue_statement = 367, - sym_accept_statement = 368, - sym_case_statement_alternative = 369, - sym_case_statement = 370, - sym_block_statement = 371, - sym_if_statement = 372, - sym_elsif_statement_item = 373, - sym_exit_statement = 374, - sym_goto_statement = 375, - sym__delay_statement = 376, - sym_delay_until_statement = 377, - sym_delay_relative_statement = 378, - sym_simple_return_statement = 379, - sym_extended_return_statement = 380, - sym_extended_return_object_declaration = 381, - sym__return_subtype_indication = 382, - sym_procedure_call_statement = 383, - sym_function_call = 384, - sym_raise_statement = 385, - sym_loop_statement = 386, - sym_iteration_scheme = 387, - sym_assignment_statement = 388, - sym_subprogram_declaration = 389, - sym_expression_function_declaration = 390, - sym__subprogram_specification = 391, - sym_subtype_declaration = 392, - sym_variant_part = 393, - sym_variant_list = 394, - sym_variant = 395, - aux_sym_compilation_repeat1 = 396, - aux_sym__name_list_repeat1 = 397, - aux_sym__defining_identifier_list_repeat1 = 398, - aux_sym_package_specification_repeat1 = 399, - aux_sym_expression_repeat1 = 400, - aux_sym_expression_repeat2 = 401, - aux_sym_expression_repeat3 = 402, - aux_sym_membership_choice_list_repeat1 = 403, - aux_sym__simple_expression_repeat1 = 404, - aux_sym_term_repeat1 = 405, - aux_sym_actual_parameter_part_repeat1 = 406, - aux_sym_declare_expression_repeat1 = 407, - aux_sym_case_expression_repeat1 = 408, - aux_sym_component_choice_list_repeat1 = 409, - aux_sym_record_component_association_list_repeat1 = 410, - aux_sym_record_component_association_list_repeat2 = 411, - aux_sym_index_constraint_repeat1 = 412, - aux_sym_discriminant_specification_list_repeat1 = 413, - aux_sym__discrete_subtype_definition_list_repeat1 = 414, - aux_sym__index_subtype_definition_list_repeat1 = 415, - aux_sym__enumeration_literal_list_repeat1 = 416, - aux_sym__interface_list_repeat1 = 417, - aux_sym_component_list_repeat1 = 418, - aux_sym_positional_array_aggregate_repeat1 = 419, - aux_sym__array_component_association_list_repeat1 = 420, - aux_sym_discrete_choice_list_repeat1 = 421, - aux_sym_aspect_mark_list_repeat1 = 422, - aux_sym_protected_definition_repeat1 = 423, - aux_sym_protected_definition_repeat2 = 424, - aux_sym_protected_body_repeat1 = 425, - aux_sym_non_empty_declarative_part_repeat1 = 426, - aux_sym_exception_choice_list_repeat1 = 427, - aux_sym_generic_formal_part_repeat1 = 428, - aux_sym_global_aspect_definition_repeat1 = 429, - aux_sym_task_definition_repeat1 = 430, - aux_sym__parameter_specification_list_repeat1 = 431, - aux_sym_pragma_g_repeat1 = 432, - aux_sym_if_expression_repeat1 = 433, - aux_sym_record_representation_clause_repeat1 = 434, - aux_sym__sequence_of_statements_repeat1 = 435, - aux_sym__sequence_of_statements_repeat2 = 436, - aux_sym_selective_accept_repeat1 = 437, - aux_sym_case_statement_repeat1 = 438, - aux_sym_if_statement_repeat1 = 439, - aux_sym_variant_list_repeat1 = 440, + sym_discriminant_constraint = 151, + sym_discriminant_association = 152, + sym__constraint = 153, + sym__scalar_constraint = 154, + sym_range_g = 155, + sym_range_attribute_designator = 156, + sym_range_constraint = 157, + sym_expression = 158, + sym__relation = 159, + sym_relation_membership = 160, + sym_raise_expression = 161, + sym_membership_choice_list = 162, + sym__membership_choice = 163, + sym__simple_expression = 164, + sym_term = 165, + sym__factor = 166, + sym_factor_power = 167, + sym_factor_abs = 168, + sym_factor_not = 169, + sym__parenthesized_expression = 170, + sym__primary = 171, + sym_primary_null = 172, + sym_allocator = 173, + sym__subtype_indication_paren_constraint = 174, + sym_subpool_specification = 175, + sym__access_type_definition = 176, + sym_access_to_subprogram_definition = 177, + sym_access_to_object_definition = 178, + sym_general_access_modifier = 179, + sym_access_definition = 180, + sym_actual_parameter_part = 181, + sym_parameter_association = 182, + sym__conditional_expression = 183, + sym__conditional_quantified_expression = 184, + sym_quantified_expression = 185, + sym_declare_expression = 186, + sym__declare_item = 187, + sym_quantifier = 188, + sym_case_expression = 189, + sym_case_expression_alternative = 190, + sym_component_choice_list = 191, + sym__aggregate = 192, + sym__delta_aggregate = 193, + sym_extension_aggregate = 194, + sym_record_delta_aggregate = 195, + sym_array_delta_aggregate = 196, + sym_record_aggregate = 197, + sym_record_component_association_list = 198, + sym__record_component_association_list_or_expression = 199, + sym__named_record_component_association = 200, + sym_null_exclusion = 201, + sym_index_constraint = 202, + sym_digits_constraint = 203, + sym_delta_constraint = 204, + sym__basic_declarative_item_pragma = 205, + sym__type_declaration = 206, + sym_full_type_declaration = 207, + sym_private_type_declaration = 208, + sym_private_extension_declaration = 209, + sym__discriminant_part = 210, + sym_unknown_discriminant_part = 211, + sym_known_discriminant_part = 212, + sym_incomplete_type_declaration = 213, + sym_discriminant_specification_list = 214, + sym_discriminant_specification = 215, + sym__type_definition = 216, + sym_array_type_definition = 217, + sym__discrete_subtype_definition_list = 218, + sym__discrete_range = 219, + sym__index_subtype_definition_list = 220, + sym_index_subtype_definition = 221, + sym_enumeration_type_definition = 222, + sym__enumeration_literal_list = 223, + sym__enumeration_literal_specification = 224, + sym__integer_type_definition = 225, + sym_modular_type_definition = 226, + sym__real_type_definition = 227, + sym_floating_point_definition = 228, + sym_real_range_specification = 229, + sym__fixed_point_definition = 230, + sym_decimal_fixed_point_definition = 231, + sym_ordinary_fixed_point_definition = 232, + sym_signed_integer_type_definition = 233, + sym_derived_type_definition = 234, + sym_interface_type_definition = 235, + sym__interface_list = 236, + sym_record_extension_part = 237, + sym_record_type_definition = 238, + sym_record_definition = 239, + sym_component_list = 240, + sym__component_item = 241, + sym_component_declaration = 242, + sym_component_definition = 243, + sym__array_aggregate = 244, + sym_positional_array_aggregate = 245, + sym_null_array_aggregate = 246, + sym_named_array_aggregate = 247, + sym__array_component_association_list = 248, + sym_array_component_association = 249, + sym_discrete_choice_list = 250, + sym_discrete_choice = 251, + sym_aspect_association = 252, + sym__aspect_clause = 253, + sym__aspect_definition = 254, + sym__aspect_mark = 255, + sym_aspect_mark_list = 256, + sym_aspect_specification = 257, + sym__assign_value = 258, + sym_at_clause = 259, + sym_attribute_definition_clause = 260, + sym_body_stub = 261, + sym_subprogram_body_stub = 262, + sym_package_body_stub = 263, + sym_task_body = 264, + sym_task_body_stub = 265, + sym__protected_operation_declaration = 266, + sym__protected_element_declaration = 267, + sym__protected_operation_item = 268, + sym_protected_definition = 269, + sym_protected_type_declaration = 270, + sym_single_protected_declaration = 271, + sym_protected_body = 272, + sym_protected_body_stub = 273, + sym_choice_parameter_specification = 274, + sym_component_clause = 275, + sym__declarative_item_pragma = 276, + sym_non_empty_declarative_part = 277, + sym_entry_declaration = 278, + sym_entry_body = 279, + sym_entry_barrier = 280, + sym_entry_index_specification = 281, + sym_enumeration_aggregate = 282, + sym_enumeration_representation_clause = 283, + sym_exception_choice_list = 284, + sym_exception_choice = 285, + sym_exception_declaration = 286, + sym_exception_handler = 287, + aux_sym__exception_handler_list = 288, + sym_formal_part = 289, + sym_function_specification = 290, + sym__generic_declaration = 291, + sym_generic_formal_part = 292, + sym__generic_formal_parameter_declaration = 293, + sym_generic_subprogram_declaration = 294, + sym_generic_package_declaration = 295, + sym_generic_instantiation = 296, + sym_formal_object_declaration = 297, + sym__formal_type_declaration = 298, + sym_formal_complete_type_declaration = 299, + sym_formal_incomplete_type_declaration = 300, + sym__formal_type_definition = 301, + sym_formal_private_type_definition = 302, + sym_formal_derived_type_definition = 303, + sym_formal_discrete_type_definition = 304, + sym_formal_signed_integer_type_definition = 305, + sym_formal_modular_type_definition = 306, + sym_formal_floating_point_definition = 307, + sym_formal_ordinary_fixed_point_definition = 308, + sym_formal_decimal_fixed_point_definition = 309, + sym_formal_array_type_definition = 310, + sym_formal_access_type_definition = 311, + sym_formal_interface_type_definition = 312, + sym_formal_subprogram_declaration = 313, + sym_formal_concrete_subprogram_declaration = 314, + sym_formal_abstract_subprogram_declaration = 315, + sym_subprogram_default = 316, + sym_formal_package_declaration = 317, + sym_global_aspect_definition = 318, + sym_global_aspect_element = 319, + sym_global_mode = 320, + sym_handled_sequence_of_statements = 321, + sym_loop_label = 322, + sym_label = 323, + sym_mod_clause = 324, + sym_non_empty_mode = 325, + sym_null_procedure_declaration = 326, + sym_null_statement = 327, + sym_number_declaration = 328, + sym_object_declaration = 329, + sym_single_task_declaration = 330, + sym_task_type_declaration = 331, + sym_non_empty_entry_body_formal_part = 332, + sym__task_item = 333, + sym_task_definition = 334, + sym_overriding_indicator = 335, + sym__parameter_and_result_profile = 336, + sym_parameter_specification = 337, + sym__parameter_specification_list = 338, + sym_pragma_g = 339, + sym_pragma_argument_association = 340, + sym_if_expression = 341, + sym_elsif_expression_item = 342, + sym_procedure_specification = 343, + sym_record_representation_clause = 344, + sym__renaming_declaration = 345, + sym_object_renaming_declaration = 346, + sym_exception_renaming_declaration = 347, + sym_package_renaming_declaration = 348, + sym_subprogram_renaming_declaration = 349, + sym_generic_renaming_declaration = 350, + sym_result_profile = 351, + sym__sequence_of_statements = 352, + sym__simple_statement = 353, + sym__statement = 354, + sym__compound_statement = 355, + sym__select_statement = 356, + sym_entry_call_alternative = 357, + sym_asynchronous_select = 358, + sym_triggering_alternative = 359, + sym_conditional_entry_call = 360, + sym_delay_alternative = 361, + sym_timed_entry_call = 362, + sym_guard = 363, + sym_select_alternative = 364, + sym_accept_alternative = 365, + sym_terminate_alternative = 366, + sym_selective_accept = 367, + sym_abort_statement = 368, + sym_requeue_statement = 369, + sym_accept_statement = 370, + sym_case_statement_alternative = 371, + sym_case_statement = 372, + sym_block_statement = 373, + sym_if_statement = 374, + sym_elsif_statement_item = 375, + sym_exit_statement = 376, + sym_goto_statement = 377, + sym__delay_statement = 378, + sym_delay_until_statement = 379, + sym_delay_relative_statement = 380, + sym_simple_return_statement = 381, + sym_extended_return_statement = 382, + sym_extended_return_object_declaration = 383, + sym__return_subtype_indication = 384, + sym_procedure_call_statement = 385, + sym_function_call = 386, + sym_raise_statement = 387, + sym_loop_statement = 388, + sym_iteration_scheme = 389, + sym_assignment_statement = 390, + sym_subprogram_declaration = 391, + sym_expression_function_declaration = 392, + sym__subprogram_specification = 393, + sym_subtype_declaration = 394, + sym_variant_part = 395, + sym_variant_list = 396, + sym_variant = 397, + aux_sym_compilation_repeat1 = 398, + aux_sym__name_list_repeat1 = 399, + aux_sym__defining_identifier_list_repeat1 = 400, + aux_sym_package_specification_repeat1 = 401, + aux_sym_discriminant_constraint_repeat1 = 402, + aux_sym_discriminant_association_repeat1 = 403, + aux_sym_expression_repeat1 = 404, + aux_sym_expression_repeat2 = 405, + aux_sym_expression_repeat3 = 406, + aux_sym_membership_choice_list_repeat1 = 407, + aux_sym__simple_expression_repeat1 = 408, + aux_sym_term_repeat1 = 409, + aux_sym_actual_parameter_part_repeat1 = 410, + aux_sym_declare_expression_repeat1 = 411, + aux_sym_case_expression_repeat1 = 412, + aux_sym_record_component_association_list_repeat1 = 413, + aux_sym_record_component_association_list_repeat2 = 414, + aux_sym_index_constraint_repeat1 = 415, + aux_sym_discriminant_specification_list_repeat1 = 416, + aux_sym__discrete_subtype_definition_list_repeat1 = 417, + aux_sym__index_subtype_definition_list_repeat1 = 418, + aux_sym__enumeration_literal_list_repeat1 = 419, + aux_sym__interface_list_repeat1 = 420, + aux_sym_component_list_repeat1 = 421, + aux_sym_positional_array_aggregate_repeat1 = 422, + aux_sym__array_component_association_list_repeat1 = 423, + aux_sym_discrete_choice_list_repeat1 = 424, + aux_sym_aspect_mark_list_repeat1 = 425, + aux_sym_protected_definition_repeat1 = 426, + aux_sym_protected_definition_repeat2 = 427, + aux_sym_protected_body_repeat1 = 428, + aux_sym_non_empty_declarative_part_repeat1 = 429, + aux_sym_exception_choice_list_repeat1 = 430, + aux_sym_generic_formal_part_repeat1 = 431, + aux_sym_global_aspect_definition_repeat1 = 432, + aux_sym_task_definition_repeat1 = 433, + aux_sym__parameter_specification_list_repeat1 = 434, + aux_sym_pragma_g_repeat1 = 435, + aux_sym_if_expression_repeat1 = 436, + aux_sym_record_representation_clause_repeat1 = 437, + aux_sym__sequence_of_statements_repeat1 = 438, + aux_sym__sequence_of_statements_repeat2 = 439, + aux_sym_selective_accept_repeat1 = 440, + aux_sym_case_statement_repeat1 = 441, + aux_sym_if_statement_repeat1 = 442, + aux_sym_variant_list_repeat1 = 443, }; static const char * const ts_symbol_names[] = { @@ -512,6 +515,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_subunit_token1] = "separate", [aux_sym_subprogram_body_token1] = "begin", [aux_sym_package_body_token1] = "body", + [anon_sym_PIPE] = "|", [anon_sym_DOT_DOT] = "..", [aux_sym_range_attribute_designator_token1] = "range", [aux_sym_expression_token1] = "and", @@ -521,7 +525,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_expression_token5] = "xor", [aux_sym_relation_membership_token1] = "not", [aux_sym_raise_expression_token1] = "raise", - [anon_sym_PIPE] = "|", [anon_sym_STAR_STAR] = "**", [aux_sym_factor_abs_token1] = "abs", [aux_sym_primary_null_token1] = "null", @@ -611,6 +614,8 @@ static const char * const ts_symbol_names[] = { [sym_subprogram_body] = "subprogram_body", [sym_package_body] = "package_body", [sym__subtype_indication] = "_subtype_indication", + [sym_discriminant_constraint] = "discriminant_constraint", + [sym_discriminant_association] = "discriminant_association", [sym__constraint] = "_constraint", [sym__scalar_constraint] = "_scalar_constraint", [sym_range_g] = "range_g", @@ -860,6 +865,8 @@ static const char * const ts_symbol_names[] = { [aux_sym__name_list_repeat1] = "_name_list_repeat1", [aux_sym__defining_identifier_list_repeat1] = "_defining_identifier_list_repeat1", [aux_sym_package_specification_repeat1] = "package_specification_repeat1", + [aux_sym_discriminant_constraint_repeat1] = "discriminant_constraint_repeat1", + [aux_sym_discriminant_association_repeat1] = "discriminant_association_repeat1", [aux_sym_expression_repeat1] = "expression_repeat1", [aux_sym_expression_repeat2] = "expression_repeat2", [aux_sym_expression_repeat3] = "expression_repeat3", @@ -869,7 +876,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_actual_parameter_part_repeat1] = "actual_parameter_part_repeat1", [aux_sym_declare_expression_repeat1] = "declare_expression_repeat1", [aux_sym_case_expression_repeat1] = "case_expression_repeat1", - [aux_sym_component_choice_list_repeat1] = "component_choice_list_repeat1", [aux_sym_record_component_association_list_repeat1] = "record_component_association_list_repeat1", [aux_sym_record_component_association_list_repeat2] = "record_component_association_list_repeat2", [aux_sym_index_constraint_repeat1] = "index_constraint_repeat1", @@ -956,6 +962,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_subunit_token1] = aux_sym_subunit_token1, [aux_sym_subprogram_body_token1] = aux_sym_subprogram_body_token1, [aux_sym_package_body_token1] = aux_sym_package_body_token1, + [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, [aux_sym_range_attribute_designator_token1] = aux_sym_range_attribute_designator_token1, [aux_sym_expression_token1] = aux_sym_expression_token1, @@ -965,7 +972,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_expression_token5] = aux_sym_expression_token5, [aux_sym_relation_membership_token1] = aux_sym_relation_membership_token1, [aux_sym_raise_expression_token1] = aux_sym_raise_expression_token1, - [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, [aux_sym_factor_abs_token1] = aux_sym_factor_abs_token1, [aux_sym_primary_null_token1] = anon_sym_null, @@ -1055,6 +1061,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_subprogram_body] = sym_subprogram_body, [sym_package_body] = sym_package_body, [sym__subtype_indication] = sym__subtype_indication, + [sym_discriminant_constraint] = sym_discriminant_constraint, + [sym_discriminant_association] = sym_discriminant_association, [sym__constraint] = sym__constraint, [sym__scalar_constraint] = sym__scalar_constraint, [sym_range_g] = sym_range_g, @@ -1304,6 +1312,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__name_list_repeat1] = aux_sym__name_list_repeat1, [aux_sym__defining_identifier_list_repeat1] = aux_sym__defining_identifier_list_repeat1, [aux_sym_package_specification_repeat1] = aux_sym_package_specification_repeat1, + [aux_sym_discriminant_constraint_repeat1] = aux_sym_discriminant_constraint_repeat1, + [aux_sym_discriminant_association_repeat1] = aux_sym_discriminant_association_repeat1, [aux_sym_expression_repeat1] = aux_sym_expression_repeat1, [aux_sym_expression_repeat2] = aux_sym_expression_repeat2, [aux_sym_expression_repeat3] = aux_sym_expression_repeat3, @@ -1313,7 +1323,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_actual_parameter_part_repeat1] = aux_sym_actual_parameter_part_repeat1, [aux_sym_declare_expression_repeat1] = aux_sym_declare_expression_repeat1, [aux_sym_case_expression_repeat1] = aux_sym_case_expression_repeat1, - [aux_sym_component_choice_list_repeat1] = aux_sym_component_choice_list_repeat1, [aux_sym_record_component_association_list_repeat1] = aux_sym_record_component_association_list_repeat1, [aux_sym_record_component_association_list_repeat2] = aux_sym_record_component_association_list_repeat2, [aux_sym_index_constraint_repeat1] = aux_sym_index_constraint_repeat1, @@ -1556,6 +1565,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, [anon_sym_DOT_DOT] = { .visible = true, .named = false, @@ -1592,10 +1605,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, [anon_sym_STAR_STAR] = { .visible = true, .named = false, @@ -1952,6 +1961,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_discriminant_constraint] = { + .visible = true, + .named = true, + }, + [sym_discriminant_association] = { + .visible = true, + .named = true, + }, [sym__constraint] = { .visible = false, .named = true, @@ -2948,6 +2965,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_discriminant_constraint_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_discriminant_association_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_expression_repeat1] = { .visible = false, .named = false, @@ -2984,10 +3009,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_component_choice_list_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_record_component_association_list_repeat1] = { .visible = false, .named = false, @@ -3689,10 +3710,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 24, [36] = 36, [37] = 37, - [38] = 24, + [38] = 38, [39] = 39, [40] = 40, [41] = 41, @@ -3727,7 +3748,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 70, [71] = 71, [72] = 72, - [73] = 27, + [73] = 26, [74] = 74, [75] = 75, [76] = 76, @@ -4155,13 +4176,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 501, + [501] = 493, [502] = 502, [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 502, + [507] = 507, [508] = 508, [509] = 509, [510] = 510, @@ -4170,18 +4191,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [513] = 513, [514] = 514, [515] = 515, - [516] = 264, + [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 263, [520] = 520, [521] = 521, [522] = 522, [523] = 523, [524] = 524, - [525] = 264, + [525] = 525, [526] = 526, - [527] = 527, + [527] = 263, [528] = 528, [529] = 529, [530] = 530, @@ -4210,7 +4231,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [553] = 553, [554] = 554, [555] = 555, - [556] = 264, + [556] = 263, [557] = 557, [558] = 558, [559] = 559, @@ -4560,10 +4581,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [903] = 903, [904] = 904, [905] = 905, - [906] = 895, + [906] = 906, [907] = 907, [908] = 908, - [909] = 909, + [909] = 900, [910] = 910, [911] = 911, [912] = 912, @@ -4869,7 +4890,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1212] = 1212, [1213] = 1213, [1214] = 1214, - [1215] = 1215, + [1215] = 1160, [1216] = 1216, [1217] = 1217, [1218] = 1218, @@ -4988,7 +5009,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1331] = 1331, [1332] = 1332, [1333] = 1333, - [1334] = 1159, + [1334] = 1334, [1335] = 1335, [1336] = 1336, [1337] = 1337, @@ -5601,6 +5622,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1944] = 1944, [1945] = 1945, [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5632,7 +5669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(32); if (lookahead == 'm') ADVANCE(34); if (lookahead == 'n') ADVANCE(35); - if (lookahead == '|') ADVANCE(72); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5684,7 +5721,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(6) if (lookahead == ']') ADVANCE(67); if (lookahead == 'm') ADVANCE(34); - if (lookahead == '|') ADVANCE(72); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5726,7 +5763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') SKIP(2) if (lookahead == ']') ADVANCE(67); if (lookahead == 'm') ADVANCE(34); - if (lookahead == '|') ADVANCE(72); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5753,7 +5790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(50); if (lookahead == '\\') SKIP(4) if (lookahead == ']') ADVANCE(67); - if (lookahead == '|') ADVANCE(72); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5767,7 +5804,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(39); END_STATE(); case 13: - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); END_STATE(); case 14: if (lookahead == '<') ADVANCE(79); @@ -5845,7 +5882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(66); if (lookahead == '\\') SKIP(26) if (lookahead == ']') ADVANCE(67); - if (lookahead == '|') ADVANCE(72); + if (lookahead == '|') ADVANCE(71); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6049,7 +6086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(71); + if (lookahead == '.') ADVANCE(72); END_STATE(); case 62: ACCEPT_TOKEN(sym_target_name); @@ -6080,10 +6117,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 73: ACCEPT_TOKEN(anon_sym_STAR_STAR); @@ -7710,54 +7747,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [227] = {.lex_state = 27}, [228] = {.lex_state = 27}, [229] = {.lex_state = 27}, - [230] = {.lex_state = 10}, - [231] = {.lex_state = 10}, - [232] = {.lex_state = 10}, + [230] = {.lex_state = 27}, + [231] = {.lex_state = 27}, + [232] = {.lex_state = 27}, [233] = {.lex_state = 27}, - [234] = {.lex_state = 27}, - [235] = {.lex_state = 27}, + [234] = {.lex_state = 10}, + [235] = {.lex_state = 10}, [236] = {.lex_state = 10}, - [237] = {.lex_state = 10}, + [237] = {.lex_state = 27}, [238] = {.lex_state = 10}, - [239] = {.lex_state = 10}, - [240] = {.lex_state = 10}, - [241] = {.lex_state = 27}, + [239] = {.lex_state = 27}, + [240] = {.lex_state = 27}, + [241] = {.lex_state = 10}, [242] = {.lex_state = 27}, - [243] = {.lex_state = 27}, - [244] = {.lex_state = 10}, - [245] = {.lex_state = 10}, + [243] = {.lex_state = 10}, + [244] = {.lex_state = 27}, + [245] = {.lex_state = 27}, [246] = {.lex_state = 10}, [247] = {.lex_state = 10}, [248] = {.lex_state = 10}, - [249] = {.lex_state = 27}, + [249] = {.lex_state = 10}, [250] = {.lex_state = 10}, - [251] = {.lex_state = 27}, - [252] = {.lex_state = 27}, + [251] = {.lex_state = 10}, + [252] = {.lex_state = 10}, [253] = {.lex_state = 10}, [254] = {.lex_state = 10}, - [255] = {.lex_state = 10}, + [255] = {.lex_state = 27}, [256] = {.lex_state = 10}, [257] = {.lex_state = 10}, - [258] = {.lex_state = 10}, + [258] = {.lex_state = 27}, [259] = {.lex_state = 10}, - [260] = {.lex_state = 27}, + [260] = {.lex_state = 10}, [261] = {.lex_state = 10}, - [262] = {.lex_state = 27}, + [262] = {.lex_state = 10}, [263] = {.lex_state = 10}, [264] = {.lex_state = 10}, [265] = {.lex_state = 27}, - [266] = {.lex_state = 10}, + [266] = {.lex_state = 27}, [267] = {.lex_state = 10}, - [268] = {.lex_state = 27}, + [268] = {.lex_state = 10}, [269] = {.lex_state = 27}, - [270] = {.lex_state = 27}, + [270] = {.lex_state = 10}, [271] = {.lex_state = 27}, [272] = {.lex_state = 27}, [273] = {.lex_state = 27}, [274] = {.lex_state = 27}, - [275] = {.lex_state = 27}, + [275] = {.lex_state = 10}, [276] = {.lex_state = 27}, - [277] = {.lex_state = 10}, + [277] = {.lex_state = 27}, [278] = {.lex_state = 27}, [279] = {.lex_state = 27}, [280] = {.lex_state = 27}, @@ -7960,14 +7997,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [477] = {.lex_state = 27}, [478] = {.lex_state = 27}, [479] = {.lex_state = 27}, - [480] = {.lex_state = 10}, + [480] = {.lex_state = 27}, [481] = {.lex_state = 27}, [482] = {.lex_state = 27}, [483] = {.lex_state = 27}, [484] = {.lex_state = 27}, - [485] = {.lex_state = 10}, + [485] = {.lex_state = 27}, [486] = {.lex_state = 10}, - [487] = {.lex_state = 10}, + [487] = {.lex_state = 27}, [488] = {.lex_state = 10}, [489] = {.lex_state = 10}, [490] = {.lex_state = 10}, @@ -7979,55 +8016,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [496] = {.lex_state = 10}, [497] = {.lex_state = 10}, [498] = {.lex_state = 10}, - [499] = {.lex_state = 27}, + [499] = {.lex_state = 10}, [500] = {.lex_state = 10}, - [501] = {.lex_state = 27}, + [501] = {.lex_state = 10}, [502] = {.lex_state = 10}, [503] = {.lex_state = 10}, [504] = {.lex_state = 27}, - [505] = {.lex_state = 27}, - [506] = {.lex_state = 27}, - [507] = {.lex_state = 10}, - [508] = {.lex_state = 11}, - [509] = {.lex_state = 11}, - [510] = {.lex_state = 11}, - [511] = {.lex_state = 11}, + [505] = {.lex_state = 10}, + [506] = {.lex_state = 10}, + [507] = {.lex_state = 27}, + [508] = {.lex_state = 27}, + [509] = {.lex_state = 10}, + [510] = {.lex_state = 27}, + [511] = {.lex_state = 27}, [512] = {.lex_state = 11}, - [513] = {.lex_state = 27}, - [514] = {.lex_state = 27}, + [513] = {.lex_state = 11}, + [514] = {.lex_state = 11}, [515] = {.lex_state = 11}, - [516] = {.lex_state = 10}, + [516] = {.lex_state = 11}, [517] = {.lex_state = 27}, [518] = {.lex_state = 27}, - [519] = {.lex_state = 27}, - [520] = {.lex_state = 27}, + [519] = {.lex_state = 10}, + [520] = {.lex_state = 11}, [521] = {.lex_state = 27}, [522] = {.lex_state = 27}, - [523] = {.lex_state = 10}, - [524] = {.lex_state = 7}, - [525] = {.lex_state = 10}, + [523] = {.lex_state = 27}, + [524] = {.lex_state = 27}, + [525] = {.lex_state = 27}, [526] = {.lex_state = 27}, - [527] = {.lex_state = 11}, + [527] = {.lex_state = 10}, [528] = {.lex_state = 10}, - [529] = {.lex_state = 11}, + [529] = {.lex_state = 7}, [530] = {.lex_state = 27}, - [531] = {.lex_state = 27}, + [531] = {.lex_state = 11}, [532] = {.lex_state = 10}, - [533] = {.lex_state = 27}, - [534] = {.lex_state = 27}, - [535] = {.lex_state = 27}, - [536] = {.lex_state = 10}, - [537] = {.lex_state = 27}, - [538] = {.lex_state = 10}, + [533] = {.lex_state = 11}, + [534] = {.lex_state = 10}, + [535] = {.lex_state = 10}, + [536] = {.lex_state = 27}, + [537] = {.lex_state = 10}, + [538] = {.lex_state = 27}, [539] = {.lex_state = 27}, - [540] = {.lex_state = 10}, - [541] = {.lex_state = 27}, + [540] = {.lex_state = 27}, + [541] = {.lex_state = 10}, [542] = {.lex_state = 27}, [543] = {.lex_state = 27}, - [544] = {.lex_state = 11}, - [545] = {.lex_state = 10}, + [544] = {.lex_state = 27}, + [545] = {.lex_state = 27}, [546] = {.lex_state = 27}, - [547] = {.lex_state = 27}, + [547] = {.lex_state = 10}, [548] = {.lex_state = 27}, [549] = {.lex_state = 27}, [550] = {.lex_state = 27}, @@ -8035,9 +8072,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [552] = {.lex_state = 27}, [553] = {.lex_state = 27}, [554] = {.lex_state = 27}, - [555] = {.lex_state = 27}, + [555] = {.lex_state = 10}, [556] = {.lex_state = 10}, - [557] = {.lex_state = 27}, + [557] = {.lex_state = 11}, [558] = {.lex_state = 27}, [559] = {.lex_state = 27}, [560] = {.lex_state = 27}, @@ -8082,20 +8119,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [599] = {.lex_state = 27}, [600] = {.lex_state = 27}, [601] = {.lex_state = 27}, - [602] = {.lex_state = 11}, + [602] = {.lex_state = 27}, [603] = {.lex_state = 27}, - [604] = {.lex_state = 27}, + [604] = {.lex_state = 11}, [605] = {.lex_state = 27}, - [606] = {.lex_state = 10}, + [606] = {.lex_state = 27}, [607] = {.lex_state = 27}, - [608] = {.lex_state = 10}, + [608] = {.lex_state = 27}, [609] = {.lex_state = 27}, [610] = {.lex_state = 27}, [611] = {.lex_state = 27}, - [612] = {.lex_state = 27}, + [612] = {.lex_state = 10}, [613] = {.lex_state = 27}, [614] = {.lex_state = 27}, - [615] = {.lex_state = 27}, + [615] = {.lex_state = 10}, [616] = {.lex_state = 27}, [617] = {.lex_state = 27}, [618] = {.lex_state = 27}, @@ -8157,14 +8194,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [674] = {.lex_state = 27}, [675] = {.lex_state = 27}, [676] = {.lex_state = 27}, - [677] = {.lex_state = 10}, + [677] = {.lex_state = 27}, [678] = {.lex_state = 27}, [679] = {.lex_state = 27}, [680] = {.lex_state = 27}, [681] = {.lex_state = 27}, [682] = {.lex_state = 27}, [683] = {.lex_state = 27}, - [684] = {.lex_state = 11}, + [684] = {.lex_state = 27}, [685] = {.lex_state = 27}, [686] = {.lex_state = 27}, [687] = {.lex_state = 27}, @@ -8176,17 +8213,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 27}, [694] = {.lex_state = 27}, [695] = {.lex_state = 27}, - [696] = {.lex_state = 27}, - [697] = {.lex_state = 27}, + [696] = {.lex_state = 11}, + [697] = {.lex_state = 10}, [698] = {.lex_state = 27}, - [699] = {.lex_state = 11}, + [699] = {.lex_state = 27}, [700] = {.lex_state = 27}, [701] = {.lex_state = 27}, - [702] = {.lex_state = 11}, + [702] = {.lex_state = 27}, [703] = {.lex_state = 27}, [704] = {.lex_state = 27}, - [705] = {.lex_state = 27}, - [706] = {.lex_state = 27}, + [705] = {.lex_state = 11}, + [706] = {.lex_state = 11}, [707] = {.lex_state = 27}, [708] = {.lex_state = 27}, [709] = {.lex_state = 27}, @@ -8214,10 +8251,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [731] = {.lex_state = 11}, [732] = {.lex_state = 27}, [733] = {.lex_state = 27}, - [734] = {.lex_state = 27}, + [734] = {.lex_state = 11}, [735] = {.lex_state = 27}, [736] = {.lex_state = 27}, - [737] = {.lex_state = 11}, + [737] = {.lex_state = 27}, [738] = {.lex_state = 27}, [739] = {.lex_state = 27}, [740] = {.lex_state = 27}, @@ -8231,7 +8268,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [748] = {.lex_state = 27}, [749] = {.lex_state = 27}, [750] = {.lex_state = 27}, - [751] = {.lex_state = 27}, + [751] = {.lex_state = 0}, [752] = {.lex_state = 27}, [753] = {.lex_state = 27}, [754] = {.lex_state = 27}, @@ -8244,8 +8281,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [761] = {.lex_state = 27}, [762] = {.lex_state = 27}, [763] = {.lex_state = 27}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, + [764] = {.lex_state = 27}, + [765] = {.lex_state = 27}, [766] = {.lex_state = 27}, [767] = {.lex_state = 27}, [768] = {.lex_state = 27}, @@ -8260,10 +8297,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 27}, [778] = {.lex_state = 27}, [779] = {.lex_state = 27}, - [780] = {.lex_state = 10}, + [780] = {.lex_state = 27}, [781] = {.lex_state = 27}, [782] = {.lex_state = 27}, - [783] = {.lex_state = 27}, + [783] = {.lex_state = 10}, [784] = {.lex_state = 27}, [785] = {.lex_state = 27}, [786] = {.lex_state = 27}, @@ -8279,7 +8316,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [796] = {.lex_state = 27}, [797] = {.lex_state = 27}, [798] = {.lex_state = 27}, - [799] = {.lex_state = 27}, + [799] = {.lex_state = 0}, [800] = {.lex_state = 27}, [801] = {.lex_state = 27}, [802] = {.lex_state = 27}, @@ -8303,20 +8340,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 27}, [821] = {.lex_state = 27}, [822] = {.lex_state = 27}, - [823] = {.lex_state = 11}, + [823] = {.lex_state = 27}, [824] = {.lex_state = 27}, - [825] = {.lex_state = 11}, + [825] = {.lex_state = 27}, [826] = {.lex_state = 27}, - [827] = {.lex_state = 11}, - [828] = {.lex_state = 27}, + [827] = {.lex_state = 27}, + [828] = {.lex_state = 11}, [829] = {.lex_state = 11}, - [830] = {.lex_state = 27}, + [830] = {.lex_state = 11}, [831] = {.lex_state = 27}, - [832] = {.lex_state = 11}, - [833] = {.lex_state = 11}, + [832] = {.lex_state = 27}, + [833] = {.lex_state = 27}, [834] = {.lex_state = 11}, - [835] = {.lex_state = 11}, - [836] = {.lex_state = 11}, + [835] = {.lex_state = 27}, + [836] = {.lex_state = 27}, [837] = {.lex_state = 11}, [838] = {.lex_state = 11}, [839] = {.lex_state = 11}, @@ -8327,32 +8364,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [844] = {.lex_state = 11}, [845] = {.lex_state = 11}, [846] = {.lex_state = 11}, - [847] = {.lex_state = 27}, - [848] = {.lex_state = 27}, - [849] = {.lex_state = 27}, + [847] = {.lex_state = 11}, + [848] = {.lex_state = 11}, + [849] = {.lex_state = 11}, [850] = {.lex_state = 11}, - [851] = {.lex_state = 27}, - [852] = {.lex_state = 11}, + [851] = {.lex_state = 11}, + [852] = {.lex_state = 27}, [853] = {.lex_state = 27}, - [854] = {.lex_state = 27}, + [854] = {.lex_state = 11}, [855] = {.lex_state = 27}, [856] = {.lex_state = 27}, [857] = {.lex_state = 27}, [858] = {.lex_state = 27}, [859] = {.lex_state = 27}, [860] = {.lex_state = 27}, - [861] = {.lex_state = 11}, - [862] = {.lex_state = 10}, + [861] = {.lex_state = 27}, + [862] = {.lex_state = 27}, [863] = {.lex_state = 27}, - [864] = {.lex_state = 11}, + [864] = {.lex_state = 27}, [865] = {.lex_state = 27}, - [866] = {.lex_state = 27}, - [867] = {.lex_state = 27}, - [868] = {.lex_state = 11}, - [869] = {.lex_state = 27}, - [870] = {.lex_state = 11}, + [866] = {.lex_state = 11}, + [867] = {.lex_state = 11}, + [868] = {.lex_state = 27}, + [869] = {.lex_state = 10}, + [870] = {.lex_state = 27}, [871] = {.lex_state = 27}, - [872] = {.lex_state = 27}, + [872] = {.lex_state = 11}, [873] = {.lex_state = 27}, [874] = {.lex_state = 27}, [875] = {.lex_state = 27}, @@ -8361,188 +8398,188 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [878] = {.lex_state = 27}, [879] = {.lex_state = 27}, [880] = {.lex_state = 27}, - [881] = {.lex_state = 27}, + [881] = {.lex_state = 11}, [882] = {.lex_state = 27}, - [883] = {.lex_state = 27}, + [883] = {.lex_state = 11}, [884] = {.lex_state = 27}, [885] = {.lex_state = 27}, [886] = {.lex_state = 27}, - [887] = {.lex_state = 11}, + [887] = {.lex_state = 27}, [888] = {.lex_state = 27}, [889] = {.lex_state = 27}, [890] = {.lex_state = 27}, [891] = {.lex_state = 27}, [892] = {.lex_state = 27}, - [893] = {.lex_state = 10}, + [893] = {.lex_state = 27}, [894] = {.lex_state = 27}, - [895] = {.lex_state = 10}, - [896] = {.lex_state = 11}, - [897] = {.lex_state = 11}, + [895] = {.lex_state = 11}, + [896] = {.lex_state = 10}, + [897] = {.lex_state = 27}, [898] = {.lex_state = 27}, - [899] = {.lex_state = 11}, - [900] = {.lex_state = 11}, - [901] = {.lex_state = 27}, + [899] = {.lex_state = 27}, + [900] = {.lex_state = 0}, + [901] = {.lex_state = 10}, [902] = {.lex_state = 11}, - [903] = {.lex_state = 27}, + [903] = {.lex_state = 11}, [904] = {.lex_state = 11}, - [905] = {.lex_state = 27}, - [906] = {.lex_state = 0}, - [907] = {.lex_state = 27}, - [908] = {.lex_state = 10}, - [909] = {.lex_state = 11}, - [910] = {.lex_state = 10}, + [905] = {.lex_state = 10}, + [906] = {.lex_state = 27}, + [907] = {.lex_state = 11}, + [908] = {.lex_state = 11}, + [909] = {.lex_state = 10}, + [910] = {.lex_state = 11}, [911] = {.lex_state = 11}, - [912] = {.lex_state = 27}, + [912] = {.lex_state = 11}, [913] = {.lex_state = 11}, [914] = {.lex_state = 11}, [915] = {.lex_state = 11}, - [916] = {.lex_state = 11}, + [916] = {.lex_state = 27}, [917] = {.lex_state = 11}, [918] = {.lex_state = 11}, - [919] = {.lex_state = 11}, + [919] = {.lex_state = 27}, [920] = {.lex_state = 11}, - [921] = {.lex_state = 11}, + [921] = {.lex_state = 27}, [922] = {.lex_state = 11}, - [923] = {.lex_state = 11}, - [924] = {.lex_state = 27}, + [923] = {.lex_state = 27}, + [924] = {.lex_state = 11}, [925] = {.lex_state = 27}, - [926] = {.lex_state = 11}, - [927] = {.lex_state = 27}, - [928] = {.lex_state = 27}, + [926] = {.lex_state = 27}, + [927] = {.lex_state = 11}, + [928] = {.lex_state = 11}, [929] = {.lex_state = 27}, - [930] = {.lex_state = 27}, - [931] = {.lex_state = 27}, + [930] = {.lex_state = 11}, + [931] = {.lex_state = 11}, [932] = {.lex_state = 27}, - [933] = {.lex_state = 0}, + [933] = {.lex_state = 27}, [934] = {.lex_state = 27}, - [935] = {.lex_state = 0}, + [935] = {.lex_state = 27}, [936] = {.lex_state = 27}, [937] = {.lex_state = 27}, [938] = {.lex_state = 27}, - [939] = {.lex_state = 0}, + [939] = {.lex_state = 27}, [940] = {.lex_state = 27}, [941] = {.lex_state = 27}, [942] = {.lex_state = 27}, [943] = {.lex_state = 27}, - [944] = {.lex_state = 27}, - [945] = {.lex_state = 27}, + [944] = {.lex_state = 11}, + [945] = {.lex_state = 0}, [946] = {.lex_state = 11}, [947] = {.lex_state = 11}, [948] = {.lex_state = 27}, - [949] = {.lex_state = 11}, + [949] = {.lex_state = 27}, [950] = {.lex_state = 27}, - [951] = {.lex_state = 27}, - [952] = {.lex_state = 27}, + [951] = {.lex_state = 11}, + [952] = {.lex_state = 10}, [953] = {.lex_state = 27}, [954] = {.lex_state = 27}, - [955] = {.lex_state = 11}, - [956] = {.lex_state = 27}, + [955] = {.lex_state = 27}, + [956] = {.lex_state = 0}, [957] = {.lex_state = 27}, [958] = {.lex_state = 27}, [959] = {.lex_state = 27}, [960] = {.lex_state = 27}, [961] = {.lex_state = 27}, - [962] = {.lex_state = 10}, + [962] = {.lex_state = 27}, [963] = {.lex_state = 27}, - [964] = {.lex_state = 10}, - [965] = {.lex_state = 11}, - [966] = {.lex_state = 10}, - [967] = {.lex_state = 11}, - [968] = {.lex_state = 27}, + [964] = {.lex_state = 27}, + [965] = {.lex_state = 27}, + [966] = {.lex_state = 27}, + [967] = {.lex_state = 27}, + [968] = {.lex_state = 0}, [969] = {.lex_state = 27}, - [970] = {.lex_state = 11}, - [971] = {.lex_state = 27}, + [970] = {.lex_state = 10}, + [971] = {.lex_state = 10}, [972] = {.lex_state = 27}, - [973] = {.lex_state = 27}, - [974] = {.lex_state = 10}, - [975] = {.lex_state = 27}, + [973] = {.lex_state = 10}, + [974] = {.lex_state = 11}, + [975] = {.lex_state = 10}, [976] = {.lex_state = 27}, [977] = {.lex_state = 27}, - [978] = {.lex_state = 27}, - [979] = {.lex_state = 27}, + [978] = {.lex_state = 0}, + [979] = {.lex_state = 10}, [980] = {.lex_state = 27}, - [981] = {.lex_state = 10}, - [982] = {.lex_state = 27}, + [981] = {.lex_state = 27}, + [982] = {.lex_state = 10}, [983] = {.lex_state = 10}, - [984] = {.lex_state = 27}, - [985] = {.lex_state = 10}, - [986] = {.lex_state = 27}, - [987] = {.lex_state = 27}, + [984] = {.lex_state = 11}, + [985] = {.lex_state = 27}, + [986] = {.lex_state = 11}, + [987] = {.lex_state = 10}, [988] = {.lex_state = 27}, - [989] = {.lex_state = 27}, + [989] = {.lex_state = 11}, [990] = {.lex_state = 27}, [991] = {.lex_state = 27}, - [992] = {.lex_state = 0}, + [992] = {.lex_state = 10}, [993] = {.lex_state = 27}, - [994] = {.lex_state = 10}, + [994] = {.lex_state = 27}, [995] = {.lex_state = 27}, [996] = {.lex_state = 27}, [997] = {.lex_state = 27}, [998] = {.lex_state = 10}, [999] = {.lex_state = 27}, - [1000] = {.lex_state = 10}, - [1001] = {.lex_state = 10}, - [1002] = {.lex_state = 27}, - [1003] = {.lex_state = 10}, + [1000] = {.lex_state = 27}, + [1001] = {.lex_state = 27}, + [1002] = {.lex_state = 11}, + [1003] = {.lex_state = 0}, [1004] = {.lex_state = 27}, - [1005] = {.lex_state = 10}, - [1006] = {.lex_state = 27}, + [1005] = {.lex_state = 27}, + [1006] = {.lex_state = 11}, [1007] = {.lex_state = 27}, [1008] = {.lex_state = 27}, - [1009] = {.lex_state = 11}, + [1009] = {.lex_state = 10}, [1010] = {.lex_state = 10}, - [1011] = {.lex_state = 10}, + [1011] = {.lex_state = 27}, [1012] = {.lex_state = 27}, - [1013] = {.lex_state = 27}, + [1013] = {.lex_state = 0}, [1014] = {.lex_state = 27}, - [1015] = {.lex_state = 10}, + [1015] = {.lex_state = 27}, [1016] = {.lex_state = 11}, - [1017] = {.lex_state = 27}, - [1018] = {.lex_state = 27}, - [1019] = {.lex_state = 27}, + [1017] = {.lex_state = 10}, + [1018] = {.lex_state = 10}, + [1019] = {.lex_state = 11}, [1020] = {.lex_state = 27}, - [1021] = {.lex_state = 10}, + [1021] = {.lex_state = 27}, [1022] = {.lex_state = 27}, - [1023] = {.lex_state = 11}, + [1023] = {.lex_state = 10}, [1024] = {.lex_state = 27}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 10}, + [1025] = {.lex_state = 10}, + [1026] = {.lex_state = 27}, [1027] = {.lex_state = 27}, - [1028] = {.lex_state = 10}, + [1028] = {.lex_state = 27}, [1029] = {.lex_state = 27}, - [1030] = {.lex_state = 27}, - [1031] = {.lex_state = 27}, - [1032] = {.lex_state = 27}, - [1033] = {.lex_state = 0}, + [1030] = {.lex_state = 10}, + [1031] = {.lex_state = 10}, + [1032] = {.lex_state = 10}, + [1033] = {.lex_state = 27}, [1034] = {.lex_state = 27}, [1035] = {.lex_state = 27}, - [1036] = {.lex_state = 0}, + [1036] = {.lex_state = 10}, [1037] = {.lex_state = 27}, [1038] = {.lex_state = 27}, - [1039] = {.lex_state = 11}, - [1040] = {.lex_state = 11}, + [1039] = {.lex_state = 27}, + [1040] = {.lex_state = 27}, [1041] = {.lex_state = 10}, [1042] = {.lex_state = 0}, [1043] = {.lex_state = 27}, [1044] = {.lex_state = 10}, [1045] = {.lex_state = 27}, - [1046] = {.lex_state = 11}, - [1047] = {.lex_state = 10}, - [1048] = {.lex_state = 10}, + [1046] = {.lex_state = 27}, + [1047] = {.lex_state = 27}, + [1048] = {.lex_state = 27}, [1049] = {.lex_state = 27}, [1050] = {.lex_state = 27}, - [1051] = {.lex_state = 10}, - [1052] = {.lex_state = 10}, + [1051] = {.lex_state = 27}, + [1052] = {.lex_state = 27}, [1053] = {.lex_state = 27}, - [1054] = {.lex_state = 27}, - [1055] = {.lex_state = 27}, - [1056] = {.lex_state = 27}, + [1054] = {.lex_state = 10}, + [1055] = {.lex_state = 10}, + [1056] = {.lex_state = 11}, [1057] = {.lex_state = 27}, [1058] = {.lex_state = 27}, [1059] = {.lex_state = 27}, [1060] = {.lex_state = 27}, - [1061] = {.lex_state = 27}, - [1062] = {.lex_state = 27}, + [1061] = {.lex_state = 0}, + [1062] = {.lex_state = 11}, [1063] = {.lex_state = 27}, [1064] = {.lex_state = 27}, [1065] = {.lex_state = 27}, @@ -8553,42 +8590,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1070] = {.lex_state = 27}, [1071] = {.lex_state = 27}, [1072] = {.lex_state = 27}, - [1073] = {.lex_state = 11}, + [1073] = {.lex_state = 27}, [1074] = {.lex_state = 27}, [1075] = {.lex_state = 27}, [1076] = {.lex_state = 27}, [1077] = {.lex_state = 27}, - [1078] = {.lex_state = 0}, + [1078] = {.lex_state = 27}, [1079] = {.lex_state = 27}, - [1080] = {.lex_state = 27}, + [1080] = {.lex_state = 0}, [1081] = {.lex_state = 27}, [1082] = {.lex_state = 27}, - [1083] = {.lex_state = 27}, + [1083] = {.lex_state = 0}, [1084] = {.lex_state = 27}, [1085] = {.lex_state = 27}, [1086] = {.lex_state = 27}, [1087] = {.lex_state = 27}, - [1088] = {.lex_state = 0}, + [1088] = {.lex_state = 27}, [1089] = {.lex_state = 27}, [1090] = {.lex_state = 27}, [1091] = {.lex_state = 27}, - [1092] = {.lex_state = 27}, + [1092] = {.lex_state = 0}, [1093] = {.lex_state = 27}, [1094] = {.lex_state = 27}, [1095] = {.lex_state = 27}, [1096] = {.lex_state = 27}, [1097] = {.lex_state = 27}, - [1098] = {.lex_state = 0}, + [1098] = {.lex_state = 27}, [1099] = {.lex_state = 27}, [1100] = {.lex_state = 27}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, + [1102] = {.lex_state = 27}, [1103] = {.lex_state = 27}, [1104] = {.lex_state = 27}, [1105] = {.lex_state = 27}, [1106] = {.lex_state = 27}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 27}, + [1107] = {.lex_state = 27}, + [1108] = {.lex_state = 0}, [1109] = {.lex_state = 27}, [1110] = {.lex_state = 27}, [1111] = {.lex_state = 27}, @@ -8600,11 +8637,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1117] = {.lex_state = 27}, [1118] = {.lex_state = 27}, [1119] = {.lex_state = 27}, - [1120] = {.lex_state = 27}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 27}, [1122] = {.lex_state = 27}, [1123] = {.lex_state = 27}, - [1124] = {.lex_state = 0}, + [1124] = {.lex_state = 27}, [1125] = {.lex_state = 27}, [1126] = {.lex_state = 27}, [1127] = {.lex_state = 27}, @@ -8612,13 +8649,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1129] = {.lex_state = 27}, [1130] = {.lex_state = 0}, [1131] = {.lex_state = 27}, - [1132] = {.lex_state = 27}, + [1132] = {.lex_state = 11}, [1133] = {.lex_state = 27}, - [1134] = {.lex_state = 0}, + [1134] = {.lex_state = 27}, [1135] = {.lex_state = 27}, [1136] = {.lex_state = 27}, [1137] = {.lex_state = 27}, - [1138] = {.lex_state = 11}, + [1138] = {.lex_state = 0}, [1139] = {.lex_state = 27}, [1140] = {.lex_state = 27}, [1141] = {.lex_state = 27}, @@ -8626,8 +8663,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1143] = {.lex_state = 27}, [1144] = {.lex_state = 27}, [1145] = {.lex_state = 27}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, + [1146] = {.lex_state = 27}, + [1147] = {.lex_state = 27}, [1148] = {.lex_state = 27}, [1149] = {.lex_state = 27}, [1150] = {.lex_state = 27}, @@ -8635,16 +8672,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1152] = {.lex_state = 27}, [1153] = {.lex_state = 27}, [1154] = {.lex_state = 27}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, + [1155] = {.lex_state = 27}, + [1156] = {.lex_state = 27}, [1157] = {.lex_state = 27}, - [1158] = {.lex_state = 27}, + [1158] = {.lex_state = 0}, [1159] = {.lex_state = 27}, - [1160] = {.lex_state = 27}, + [1160] = {.lex_state = 0}, [1161] = {.lex_state = 27}, [1162] = {.lex_state = 0}, [1163] = {.lex_state = 27}, - [1164] = {.lex_state = 0}, + [1164] = {.lex_state = 27}, [1165] = {.lex_state = 27}, [1166] = {.lex_state = 27}, [1167] = {.lex_state = 27}, @@ -8653,17 +8690,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1170] = {.lex_state = 27}, [1171] = {.lex_state = 27}, [1172] = {.lex_state = 27}, - [1173] = {.lex_state = 0}, + [1173] = {.lex_state = 27}, [1174] = {.lex_state = 0}, [1175] = {.lex_state = 27}, - [1176] = {.lex_state = 27}, + [1176] = {.lex_state = 0}, [1177] = {.lex_state = 27}, - [1178] = {.lex_state = 27}, - [1179] = {.lex_state = 27}, - [1180] = {.lex_state = 27}, - [1181] = {.lex_state = 0}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0}, + [1180] = {.lex_state = 0}, + [1181] = {.lex_state = 27}, [1182] = {.lex_state = 27}, - [1183] = {.lex_state = 0}, + [1183] = {.lex_state = 27}, [1184] = {.lex_state = 27}, [1185] = {.lex_state = 27}, [1186] = {.lex_state = 0}, @@ -8671,54 +8708,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1188] = {.lex_state = 27}, [1189] = {.lex_state = 27}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 27}, + [1191] = {.lex_state = 0}, [1192] = {.lex_state = 0}, [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 27}, + [1194] = {.lex_state = 0}, [1195] = {.lex_state = 27}, - [1196] = {.lex_state = 0}, + [1196] = {.lex_state = 27}, [1197] = {.lex_state = 27}, - [1198] = {.lex_state = 0}, + [1198] = {.lex_state = 27}, [1199] = {.lex_state = 0}, [1200] = {.lex_state = 27}, - [1201] = {.lex_state = 27}, + [1201] = {.lex_state = 0}, [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, + [1203] = {.lex_state = 27}, [1204] = {.lex_state = 27}, [1205] = {.lex_state = 27}, [1206] = {.lex_state = 27}, [1207] = {.lex_state = 27}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, + [1208] = {.lex_state = 27}, + [1209] = {.lex_state = 27}, + [1210] = {.lex_state = 27}, + [1211] = {.lex_state = 27}, [1212] = {.lex_state = 27}, - [1213] = {.lex_state = 27}, + [1213] = {.lex_state = 0}, [1214] = {.lex_state = 27}, [1215] = {.lex_state = 27}, - [1216] = {.lex_state = 27}, - [1217] = {.lex_state = 0}, + [1216] = {.lex_state = 0}, + [1217] = {.lex_state = 27}, [1218] = {.lex_state = 27}, [1219] = {.lex_state = 0}, [1220] = {.lex_state = 27}, [1221] = {.lex_state = 27}, [1222] = {.lex_state = 27}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 27}, - [1227] = {.lex_state = 27}, + [1223] = {.lex_state = 27}, + [1224] = {.lex_state = 27}, + [1225] = {.lex_state = 27}, + [1226] = {.lex_state = 0}, + [1227] = {.lex_state = 0}, [1228] = {.lex_state = 27}, [1229] = {.lex_state = 27}, [1230] = {.lex_state = 27}, - [1231] = {.lex_state = 27}, + [1231] = {.lex_state = 0}, [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 27}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 27}, + [1233] = {.lex_state = 0}, + [1234] = {.lex_state = 27}, + [1235] = {.lex_state = 0}, [1236] = {.lex_state = 27}, [1237] = {.lex_state = 27}, - [1238] = {.lex_state = 0}, + [1238] = {.lex_state = 27}, [1239] = {.lex_state = 27}, [1240] = {.lex_state = 27}, [1241] = {.lex_state = 27}, @@ -8727,18 +8764,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1244] = {.lex_state = 27}, [1245] = {.lex_state = 27}, [1246] = {.lex_state = 27}, - [1247] = {.lex_state = 0}, + [1247] = {.lex_state = 27}, [1248] = {.lex_state = 27}, - [1249] = {.lex_state = 0}, + [1249] = {.lex_state = 27}, [1250] = {.lex_state = 27}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 27}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, + [1251] = {.lex_state = 27}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 27}, + [1254] = {.lex_state = 27}, [1255] = {.lex_state = 27}, [1256] = {.lex_state = 27}, - [1257] = {.lex_state = 27}, - [1258] = {.lex_state = 27}, + [1257] = {.lex_state = 0}, + [1258] = {.lex_state = 0}, [1259] = {.lex_state = 27}, [1260] = {.lex_state = 0}, [1261] = {.lex_state = 27}, @@ -8746,98 +8783,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1263] = {.lex_state = 27}, [1264] = {.lex_state = 27}, [1265] = {.lex_state = 27}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 27}, + [1266] = {.lex_state = 27}, + [1267] = {.lex_state = 0}, [1268] = {.lex_state = 27}, [1269] = {.lex_state = 27}, [1270] = {.lex_state = 27}, - [1271] = {.lex_state = 0}, + [1271] = {.lex_state = 27}, [1272] = {.lex_state = 27}, - [1273] = {.lex_state = 27}, + [1273] = {.lex_state = 0}, [1274] = {.lex_state = 27}, [1275] = {.lex_state = 27}, [1276] = {.lex_state = 27}, [1277] = {.lex_state = 27}, [1278] = {.lex_state = 27}, [1279] = {.lex_state = 27}, - [1280] = {.lex_state = 0}, + [1280] = {.lex_state = 27}, [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 27}, + [1282] = {.lex_state = 0}, [1283] = {.lex_state = 27}, [1284] = {.lex_state = 27}, [1285] = {.lex_state = 27}, - [1286] = {.lex_state = 27}, - [1287] = {.lex_state = 27}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, [1288] = {.lex_state = 27}, [1289] = {.lex_state = 27}, - [1290] = {.lex_state = 27}, - [1291] = {.lex_state = 0}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 27}, [1292] = {.lex_state = 27}, [1293] = {.lex_state = 27}, [1294] = {.lex_state = 27}, - [1295] = {.lex_state = 27}, - [1296] = {.lex_state = 27}, + [1295] = {.lex_state = 0}, + [1296] = {.lex_state = 0}, [1297] = {.lex_state = 27}, [1298] = {.lex_state = 27}, [1299] = {.lex_state = 27}, [1300] = {.lex_state = 27}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 27}, - [1303] = {.lex_state = 0}, + [1303] = {.lex_state = 27}, [1304] = {.lex_state = 27}, [1305] = {.lex_state = 27}, [1306] = {.lex_state = 27}, - [1307] = {.lex_state = 27}, - [1308] = {.lex_state = 27}, - [1309] = {.lex_state = 0}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 27}, [1310] = {.lex_state = 27}, [1311] = {.lex_state = 27}, - [1312] = {.lex_state = 27}, + [1312] = {.lex_state = 0}, [1313] = {.lex_state = 27}, [1314] = {.lex_state = 27}, [1315] = {.lex_state = 27}, [1316] = {.lex_state = 27}, [1317] = {.lex_state = 0}, [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 27}, + [1319] = {.lex_state = 0}, [1320] = {.lex_state = 27}, - [1321] = {.lex_state = 27}, + [1321] = {.lex_state = 0}, [1322] = {.lex_state = 27}, [1323] = {.lex_state = 0}, [1324] = {.lex_state = 27}, [1325] = {.lex_state = 27}, [1326] = {.lex_state = 27}, [1327] = {.lex_state = 27}, - [1328] = {.lex_state = 27}, + [1328] = {.lex_state = 0}, [1329] = {.lex_state = 27}, - [1330] = {.lex_state = 27}, + [1330] = {.lex_state = 0}, [1331] = {.lex_state = 27}, [1332] = {.lex_state = 27}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, + [1333] = {.lex_state = 27}, + [1334] = {.lex_state = 27}, [1335] = {.lex_state = 27}, - [1336] = {.lex_state = 27}, + [1336] = {.lex_state = 0}, [1337] = {.lex_state = 27}, - [1338] = {.lex_state = 0}, + [1338] = {.lex_state = 27}, [1339] = {.lex_state = 27}, [1340] = {.lex_state = 0}, [1341] = {.lex_state = 27}, [1342] = {.lex_state = 27}, - [1343] = {.lex_state = 27}, - [1344] = {.lex_state = 27}, - [1345] = {.lex_state = 27}, - [1346] = {.lex_state = 27}, + [1343] = {.lex_state = 0}, + [1344] = {.lex_state = 0}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 0}, [1347] = {.lex_state = 27}, [1348] = {.lex_state = 27}, [1349] = {.lex_state = 27}, [1350] = {.lex_state = 27}, [1351] = {.lex_state = 27}, - [1352] = {.lex_state = 27}, - [1353] = {.lex_state = 27}, - [1354] = {.lex_state = 27}, + [1352] = {.lex_state = 0}, + [1353] = {.lex_state = 0}, + [1354] = {.lex_state = 0}, [1355] = {.lex_state = 27}, [1356] = {.lex_state = 27}, - [1357] = {.lex_state = 27}, + [1357] = {.lex_state = 0}, [1358] = {.lex_state = 27}, [1359] = {.lex_state = 27}, [1360] = {.lex_state = 27}, @@ -8845,9 +8882,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 27}, [1363] = {.lex_state = 27}, [1364] = {.lex_state = 27}, - [1365] = {.lex_state = 27}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 27}, - [1367] = {.lex_state = 0}, + [1367] = {.lex_state = 27}, [1368] = {.lex_state = 27}, [1369] = {.lex_state = 27}, [1370] = {.lex_state = 27}, @@ -8856,61 +8893,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1373] = {.lex_state = 0}, [1374] = {.lex_state = 27}, [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 27}, + [1376] = {.lex_state = 0}, [1377] = {.lex_state = 27}, [1378] = {.lex_state = 27}, [1379] = {.lex_state = 27}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 27}, - [1382] = {.lex_state = 0}, + [1382] = {.lex_state = 27}, [1383] = {.lex_state = 27}, [1384] = {.lex_state = 27}, [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 0}, + [1386] = {.lex_state = 27}, + [1387] = {.lex_state = 27}, [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, + [1389] = {.lex_state = 27}, [1390] = {.lex_state = 27}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 27}, - [1393] = {.lex_state = 0}, + [1391] = {.lex_state = 27}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 27}, [1394] = {.lex_state = 0}, [1395] = {.lex_state = 27}, [1396] = {.lex_state = 27}, - [1397] = {.lex_state = 0}, + [1397] = {.lex_state = 27}, [1398] = {.lex_state = 27}, [1399] = {.lex_state = 27}, [1400] = {.lex_state = 27}, [1401] = {.lex_state = 27}, - [1402] = {.lex_state = 27}, + [1402] = {.lex_state = 0}, [1403] = {.lex_state = 27}, - [1404] = {.lex_state = 27}, + [1404] = {.lex_state = 0}, [1405] = {.lex_state = 0}, [1406] = {.lex_state = 27}, [1407] = {.lex_state = 27}, [1408] = {.lex_state = 27}, - [1409] = {.lex_state = 0}, + [1409] = {.lex_state = 27}, [1410] = {.lex_state = 0}, [1411] = {.lex_state = 27}, [1412] = {.lex_state = 27}, [1413] = {.lex_state = 27}, - [1414] = {.lex_state = 27}, - [1415] = {.lex_state = 27}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 0}, [1416] = {.lex_state = 27}, [1417] = {.lex_state = 27}, [1418] = {.lex_state = 27}, - [1419] = {.lex_state = 27}, + [1419] = {.lex_state = 0}, [1420] = {.lex_state = 27}, [1421] = {.lex_state = 27}, [1422] = {.lex_state = 27}, [1423] = {.lex_state = 27}, [1424] = {.lex_state = 27}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, + [1425] = {.lex_state = 27}, + [1426] = {.lex_state = 27}, [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 27}, + [1428] = {.lex_state = 0}, [1429] = {.lex_state = 27}, - [1430] = {.lex_state = 0}, + [1430] = {.lex_state = 27}, [1431] = {.lex_state = 27}, [1432] = {.lex_state = 27}, [1433] = {.lex_state = 27}, @@ -8920,20 +8957,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1437] = {.lex_state = 27}, [1438] = {.lex_state = 27}, [1439] = {.lex_state = 27}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 27}, + [1440] = {.lex_state = 27}, + [1441] = {.lex_state = 0}, [1442] = {.lex_state = 27}, [1443] = {.lex_state = 27}, [1444] = {.lex_state = 27}, - [1445] = {.lex_state = 0}, + [1445] = {.lex_state = 27}, [1446] = {.lex_state = 27}, [1447] = {.lex_state = 27}, [1448] = {.lex_state = 27}, [1449] = {.lex_state = 27}, [1450] = {.lex_state = 27}, [1451] = {.lex_state = 27}, - [1452] = {.lex_state = 27}, - [1453] = {.lex_state = 0}, + [1452] = {.lex_state = 0}, + [1453] = {.lex_state = 27}, [1454] = {.lex_state = 0}, [1455] = {.lex_state = 27}, [1456] = {.lex_state = 27}, @@ -8942,7 +8979,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1459] = {.lex_state = 27}, [1460] = {.lex_state = 27}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 27}, + [1462] = {.lex_state = 0}, [1463] = {.lex_state = 27}, [1464] = {.lex_state = 27}, [1465] = {.lex_state = 0}, @@ -8950,80 +8987,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1467] = {.lex_state = 27}, [1468] = {.lex_state = 27}, [1469] = {.lex_state = 27}, - [1470] = {.lex_state = 27}, + [1470] = {.lex_state = 0}, [1471] = {.lex_state = 27}, [1472] = {.lex_state = 27}, - [1473] = {.lex_state = 27}, - [1474] = {.lex_state = 27}, - [1475] = {.lex_state = 27}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 27}, + [1473] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, + [1476] = {.lex_state = 27}, + [1477] = {.lex_state = 27}, + [1478] = {.lex_state = 0}, [1479] = {.lex_state = 27}, [1480] = {.lex_state = 27}, [1481] = {.lex_state = 27}, - [1482] = {.lex_state = 27}, + [1482] = {.lex_state = 0}, [1483] = {.lex_state = 27}, [1484] = {.lex_state = 27}, - [1485] = {.lex_state = 27}, - [1486] = {.lex_state = 27}, + [1485] = {.lex_state = 0}, + [1486] = {.lex_state = 0}, [1487] = {.lex_state = 27}, [1488] = {.lex_state = 27}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, + [1489] = {.lex_state = 27}, + [1490] = {.lex_state = 27}, [1491] = {.lex_state = 27}, [1492] = {.lex_state = 27}, - [1493] = {.lex_state = 0}, + [1493] = {.lex_state = 27}, [1494] = {.lex_state = 27}, [1495] = {.lex_state = 27}, [1496] = {.lex_state = 27}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, + [1497] = {.lex_state = 27}, + [1498] = {.lex_state = 27}, + [1499] = {.lex_state = 27}, [1500] = {.lex_state = 27}, [1501] = {.lex_state = 27}, [1502] = {.lex_state = 27}, [1503] = {.lex_state = 27}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, + [1504] = {.lex_state = 27}, + [1505] = {.lex_state = 27}, [1506] = {.lex_state = 27}, [1507] = {.lex_state = 27}, [1508] = {.lex_state = 27}, - [1509] = {.lex_state = 0}, + [1509] = {.lex_state = 27}, [1510] = {.lex_state = 27}, [1511] = {.lex_state = 0}, [1512] = {.lex_state = 27}, - [1513] = {.lex_state = 0}, + [1513] = {.lex_state = 27}, [1514] = {.lex_state = 27}, [1515] = {.lex_state = 27}, [1516] = {.lex_state = 27}, [1517] = {.lex_state = 27}, [1518] = {.lex_state = 0}, [1519] = {.lex_state = 27}, - [1520] = {.lex_state = 27}, - [1521] = {.lex_state = 27}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 27}, - [1524] = {.lex_state = 27}, + [1520] = {.lex_state = 0}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 27}, + [1523] = {.lex_state = 0}, + [1524] = {.lex_state = 0}, [1525] = {.lex_state = 27}, - [1526] = {.lex_state = 27}, - [1527] = {.lex_state = 27}, - [1528] = {.lex_state = 27}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 0}, + [1528] = {.lex_state = 0}, [1529] = {.lex_state = 27}, [1530] = {.lex_state = 27}, - [1531] = {.lex_state = 27}, + [1531] = {.lex_state = 0}, [1532] = {.lex_state = 27}, [1533] = {.lex_state = 27}, - [1534] = {.lex_state = 0}, + [1534] = {.lex_state = 27}, [1535] = {.lex_state = 27}, [1536] = {.lex_state = 27}, [1537] = {.lex_state = 27}, [1538] = {.lex_state = 27}, - [1539] = {.lex_state = 27}, - [1540] = {.lex_state = 27}, - [1541] = {.lex_state = 27}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 27}, + [1543] = {.lex_state = 27}, [1544] = {.lex_state = 27}, [1545] = {.lex_state = 27}, [1546] = {.lex_state = 27}, @@ -9034,7 +9071,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1551] = {.lex_state = 27}, [1552] = {.lex_state = 27}, [1553] = {.lex_state = 27}, - [1554] = {.lex_state = 0}, + [1554] = {.lex_state = 27}, [1555] = {.lex_state = 27}, [1556] = {.lex_state = 27}, [1557] = {.lex_state = 27}, @@ -9042,82 +9079,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1559] = {.lex_state = 27}, [1560] = {.lex_state = 27}, [1561] = {.lex_state = 27}, - [1562] = {.lex_state = 27}, - [1563] = {.lex_state = 27}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 0}, [1564] = {.lex_state = 27}, [1565] = {.lex_state = 27}, [1566] = {.lex_state = 27}, - [1567] = {.lex_state = 0}, + [1567] = {.lex_state = 27}, [1568] = {.lex_state = 27}, [1569] = {.lex_state = 27}, [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 27}, + [1571] = {.lex_state = 0}, [1572] = {.lex_state = 27}, [1573] = {.lex_state = 27}, [1574] = {.lex_state = 0}, [1575] = {.lex_state = 27}, [1576] = {.lex_state = 27}, - [1577] = {.lex_state = 27}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, [1579] = {.lex_state = 27}, [1580] = {.lex_state = 27}, [1581] = {.lex_state = 27}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 27}, + [1583] = {.lex_state = 0}, [1584] = {.lex_state = 27}, [1585] = {.lex_state = 27}, - [1586] = {.lex_state = 27}, + [1586] = {.lex_state = 0}, [1587] = {.lex_state = 27}, - [1588] = {.lex_state = 27}, + [1588] = {.lex_state = 0}, [1589] = {.lex_state = 27}, - [1590] = {.lex_state = 27}, + [1590] = {.lex_state = 0}, [1591] = {.lex_state = 27}, [1592] = {.lex_state = 27}, [1593] = {.lex_state = 27}, [1594] = {.lex_state = 27}, [1595] = {.lex_state = 27}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 27}, + [1596] = {.lex_state = 27}, + [1597] = {.lex_state = 0}, [1598] = {.lex_state = 27}, [1599] = {.lex_state = 27}, [1600] = {.lex_state = 27}, [1601] = {.lex_state = 27}, - [1602] = {.lex_state = 27}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 27}, + [1604] = {.lex_state = 27}, [1605] = {.lex_state = 27}, [1606] = {.lex_state = 27}, - [1607] = {.lex_state = 0}, + [1607] = {.lex_state = 27}, [1608] = {.lex_state = 27}, [1609] = {.lex_state = 27}, - [1610] = {.lex_state = 0}, + [1610] = {.lex_state = 27}, [1611] = {.lex_state = 27}, [1612] = {.lex_state = 27}, - [1613] = {.lex_state = 0}, + [1613] = {.lex_state = 27}, [1614] = {.lex_state = 27}, [1615] = {.lex_state = 27}, [1616] = {.lex_state = 27}, - [1617] = {.lex_state = 27}, + [1617] = {.lex_state = 0}, [1618] = {.lex_state = 27}, [1619] = {.lex_state = 27}, [1620] = {.lex_state = 27}, - [1621] = {.lex_state = 0}, + [1621] = {.lex_state = 27}, [1622] = {.lex_state = 27}, [1623] = {.lex_state = 27}, [1624] = {.lex_state = 27}, - [1625] = {.lex_state = 27}, + [1625] = {.lex_state = 0}, [1626] = {.lex_state = 27}, [1627] = {.lex_state = 27}, [1628] = {.lex_state = 27}, [1629] = {.lex_state = 27}, - [1630] = {.lex_state = 27}, + [1630] = {.lex_state = 0}, [1631] = {.lex_state = 27}, - [1632] = {.lex_state = 27}, + [1632] = {.lex_state = 0}, [1633] = {.lex_state = 27}, - [1634] = {.lex_state = 0}, + [1634] = {.lex_state = 27}, [1635] = {.lex_state = 27}, [1636] = {.lex_state = 27}, - [1637] = {.lex_state = 0}, + [1637] = {.lex_state = 27}, [1638] = {.lex_state = 27}, [1639] = {.lex_state = 27}, [1640] = {.lex_state = 27}, @@ -9128,10 +9165,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1645] = {.lex_state = 27}, [1646] = {.lex_state = 27}, [1647] = {.lex_state = 27}, - [1648] = {.lex_state = 0}, + [1648] = {.lex_state = 27}, [1649] = {.lex_state = 27}, [1650] = {.lex_state = 27}, - [1651] = {.lex_state = 0}, + [1651] = {.lex_state = 27}, [1652] = {.lex_state = 27}, [1653] = {.lex_state = 27}, [1654] = {.lex_state = 27}, @@ -9140,51 +9177,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1657] = {.lex_state = 27}, [1658] = {.lex_state = 27}, [1659] = {.lex_state = 27}, - [1660] = {.lex_state = 0}, + [1660] = {.lex_state = 27}, [1661] = {.lex_state = 27}, [1662] = {.lex_state = 27}, - [1663] = {.lex_state = 0}, + [1663] = {.lex_state = 27}, [1664] = {.lex_state = 27}, - [1665] = {.lex_state = 27}, + [1665] = {.lex_state = 0}, [1666] = {.lex_state = 27}, [1667] = {.lex_state = 27}, [1668] = {.lex_state = 27}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, + [1669] = {.lex_state = 27}, + [1670] = {.lex_state = 27}, [1671] = {.lex_state = 27}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 27}, + [1672] = {.lex_state = 27}, + [1673] = {.lex_state = 0}, [1674] = {.lex_state = 27}, - [1675] = {.lex_state = 27}, - [1676] = {.lex_state = 0}, + [1675] = {.lex_state = 0}, + [1676] = {.lex_state = 27}, [1677] = {.lex_state = 27}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 27}, + [1678] = {.lex_state = 27}, + [1679] = {.lex_state = 27}, + [1680] = {.lex_state = 0}, [1681] = {.lex_state = 27}, - [1682] = {.lex_state = 0}, + [1682] = {.lex_state = 27}, [1683] = {.lex_state = 0}, [1684] = {.lex_state = 27}, - [1685] = {.lex_state = 27}, + [1685] = {.lex_state = 0}, [1686] = {.lex_state = 27}, [1687] = {.lex_state = 27}, - [1688] = {.lex_state = 27}, - [1689] = {.lex_state = 27}, + [1688] = {.lex_state = 0}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 27}, [1691] = {.lex_state = 27}, - [1692] = {.lex_state = 27}, + [1692] = {.lex_state = 0}, [1693] = {.lex_state = 27}, - [1694] = {.lex_state = 27}, - [1695] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 27}, [1696] = {.lex_state = 27}, [1697] = {.lex_state = 27}, - [1698] = {.lex_state = 27}, - [1699] = {.lex_state = 27}, + [1698] = {.lex_state = 0}, + [1699] = {.lex_state = 0}, [1700] = {.lex_state = 27}, [1701] = {.lex_state = 27}, [1702] = {.lex_state = 27}, [1703] = {.lex_state = 27}, - [1704] = {.lex_state = 0}, + [1704] = {.lex_state = 27}, [1705] = {.lex_state = 27}, [1706] = {.lex_state = 27}, [1707] = {.lex_state = 27}, @@ -9198,45 +9235,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1715] = {.lex_state = 27}, [1716] = {.lex_state = 27}, [1717] = {.lex_state = 27}, - [1718] = {.lex_state = 0}, + [1718] = {.lex_state = 27}, [1719] = {.lex_state = 27}, [1720] = {.lex_state = 27}, [1721] = {.lex_state = 27}, [1722] = {.lex_state = 27}, - [1723] = {.lex_state = 27}, - [1724] = {.lex_state = 27}, + [1723] = {.lex_state = 0}, + [1724] = {.lex_state = 0}, [1725] = {.lex_state = 27}, [1726] = {.lex_state = 27}, - [1727] = {.lex_state = 27}, + [1727] = {.lex_state = 0}, [1728] = {.lex_state = 27}, [1729] = {.lex_state = 27}, - [1730] = {.lex_state = 27}, - [1731] = {.lex_state = 0}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 27}, [1732] = {.lex_state = 27}, - [1733] = {.lex_state = 27}, - [1734] = {.lex_state = 0}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 27}, [1735] = {.lex_state = 27}, - [1736] = {.lex_state = 0}, + [1736] = {.lex_state = 27}, [1737] = {.lex_state = 27}, - [1738] = {.lex_state = 0}, + [1738] = {.lex_state = 27}, [1739] = {.lex_state = 0}, [1740] = {.lex_state = 27}, [1741] = {.lex_state = 27}, [1742] = {.lex_state = 27}, - [1743] = {.lex_state = 0}, + [1743] = {.lex_state = 27}, [1744] = {.lex_state = 27}, [1745] = {.lex_state = 27}, [1746] = {.lex_state = 27}, - [1747] = {.lex_state = 0}, + [1747] = {.lex_state = 27}, [1748] = {.lex_state = 27}, [1749] = {.lex_state = 27}, - [1750] = {.lex_state = 27}, - [1751] = {.lex_state = 0}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 27}, [1752] = {.lex_state = 27}, [1753] = {.lex_state = 27}, [1754] = {.lex_state = 27}, - [1755] = {.lex_state = 27}, - [1756] = {.lex_state = 27}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 0}, [1757] = {.lex_state = 27}, [1758] = {.lex_state = 27}, [1759] = {.lex_state = 0}, @@ -9255,7 +9292,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1772] = {.lex_state = 27}, [1773] = {.lex_state = 27}, [1774] = {.lex_state = 27}, - [1775] = {.lex_state = 27}, + [1775] = {.lex_state = 0}, [1776] = {.lex_state = 27}, [1777] = {.lex_state = 27}, [1778] = {.lex_state = 27}, @@ -9269,48 +9306,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1786] = {.lex_state = 27}, [1787] = {.lex_state = 27}, [1788] = {.lex_state = 27}, - [1789] = {.lex_state = 27}, + [1789] = {.lex_state = 0}, [1790] = {.lex_state = 27}, - [1791] = {.lex_state = 0}, + [1791] = {.lex_state = 27}, [1792] = {.lex_state = 27}, [1793] = {.lex_state = 27}, [1794] = {.lex_state = 27}, - [1795] = {.lex_state = 0}, + [1795] = {.lex_state = 27}, [1796] = {.lex_state = 27}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 27}, + [1797] = {.lex_state = 27}, + [1798] = {.lex_state = 27}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 27}, - [1801] = {.lex_state = 0}, + [1801] = {.lex_state = 27}, [1802] = {.lex_state = 27}, - [1803] = {.lex_state = 0}, + [1803] = {.lex_state = 27}, [1804] = {.lex_state = 27}, [1805] = {.lex_state = 27}, [1806] = {.lex_state = 27}, - [1807] = {.lex_state = 27}, + [1807] = {.lex_state = 7}, [1808] = {.lex_state = 27}, [1809] = {.lex_state = 27}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 27}, + [1811] = {.lex_state = 0}, [1812] = {.lex_state = 27}, - [1813] = {.lex_state = 0}, + [1813] = {.lex_state = 27}, [1814] = {.lex_state = 27}, [1815] = {.lex_state = 27}, [1816] = {.lex_state = 27}, [1817] = {.lex_state = 27}, [1818] = {.lex_state = 27}, [1819] = {.lex_state = 27}, - [1820] = {.lex_state = 0}, + [1820] = {.lex_state = 27}, [1821] = {.lex_state = 27}, - [1822] = {.lex_state = 0}, + [1822] = {.lex_state = 27}, [1823] = {.lex_state = 27}, [1824] = {.lex_state = 27}, [1825] = {.lex_state = 27}, [1826] = {.lex_state = 27}, [1827] = {.lex_state = 27}, [1828] = {.lex_state = 27}, - [1829] = {.lex_state = 27}, - [1830] = {.lex_state = 27}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 0}, [1831] = {.lex_state = 27}, [1832] = {.lex_state = 27}, [1833] = {.lex_state = 27}, @@ -9322,53 +9359,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1839] = {.lex_state = 27}, [1840] = {.lex_state = 27}, [1841] = {.lex_state = 27}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 27}, - [1844] = {.lex_state = 27}, + [1842] = {.lex_state = 27}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, [1845] = {.lex_state = 27}, - [1846] = {.lex_state = 27}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 27}, [1848] = {.lex_state = 27}, [1849] = {.lex_state = 27}, [1850] = {.lex_state = 27}, - [1851] = {.lex_state = 0}, + [1851] = {.lex_state = 27}, [1852] = {.lex_state = 27}, [1853] = {.lex_state = 27}, [1854] = {.lex_state = 27}, [1855] = {.lex_state = 27}, [1856] = {.lex_state = 27}, [1857] = {.lex_state = 27}, - [1858] = {.lex_state = 0}, + [1858] = {.lex_state = 27}, [1859] = {.lex_state = 27}, [1860] = {.lex_state = 27}, [1861] = {.lex_state = 27}, [1862] = {.lex_state = 27}, [1863] = {.lex_state = 27}, [1864] = {.lex_state = 27}, - [1865] = {.lex_state = 0}, + [1865] = {.lex_state = 27}, [1866] = {.lex_state = 27}, [1867] = {.lex_state = 27}, [1868] = {.lex_state = 27}, [1869] = {.lex_state = 27}, [1870] = {.lex_state = 27}, [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, + [1872] = {.lex_state = 27}, [1873] = {.lex_state = 27}, [1874] = {.lex_state = 27}, [1875] = {.lex_state = 27}, - [1876] = {.lex_state = 0}, + [1876] = {.lex_state = 27}, [1877] = {.lex_state = 27}, - [1878] = {.lex_state = 27}, - [1879] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 27}, [1880] = {.lex_state = 27}, [1881] = {.lex_state = 27}, [1882] = {.lex_state = 27}, [1883] = {.lex_state = 27}, [1884] = {.lex_state = 27}, - [1885] = {.lex_state = 27}, + [1885] = {.lex_state = 0}, [1886] = {.lex_state = 27}, [1887] = {.lex_state = 27}, - [1888] = {.lex_state = 27}, + [1888] = {.lex_state = 0}, [1889] = {.lex_state = 27}, [1890] = {.lex_state = 27}, [1891] = {.lex_state = 27}, @@ -9377,56 +9414,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1894] = {.lex_state = 27}, [1895] = {.lex_state = 27}, [1896] = {.lex_state = 27}, - [1897] = {.lex_state = 0}, + [1897] = {.lex_state = 27}, [1898] = {.lex_state = 27}, [1899] = {.lex_state = 27}, [1900] = {.lex_state = 27}, [1901] = {.lex_state = 27}, [1902] = {.lex_state = 27}, [1903] = {.lex_state = 27}, - [1904] = {.lex_state = 27}, + [1904] = {.lex_state = 0}, [1905] = {.lex_state = 27}, [1906] = {.lex_state = 27}, - [1907] = {.lex_state = 27}, + [1907] = {.lex_state = 0}, [1908] = {.lex_state = 27}, - [1909] = {.lex_state = 0}, + [1909] = {.lex_state = 27}, [1910] = {.lex_state = 27}, - [1911] = {.lex_state = 7}, + [1911] = {.lex_state = 27}, [1912] = {.lex_state = 27}, - [1913] = {.lex_state = 27}, + [1913] = {.lex_state = 0}, [1914] = {.lex_state = 27}, [1915] = {.lex_state = 27}, - [1916] = {.lex_state = 0}, + [1916] = {.lex_state = 27}, [1917] = {.lex_state = 27}, [1918] = {.lex_state = 27}, [1919] = {.lex_state = 27}, - [1920] = {.lex_state = 27}, - [1921] = {.lex_state = 27}, - [1922] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 0}, + [1922] = {.lex_state = 27}, [1923] = {.lex_state = 27}, [1924] = {.lex_state = 27}, [1925] = {.lex_state = 27}, - [1926] = {.lex_state = 27}, + [1926] = {.lex_state = 0}, [1927] = {.lex_state = 27}, [1928] = {.lex_state = 27}, - [1929] = {.lex_state = 0}, + [1929] = {.lex_state = 27}, [1930] = {.lex_state = 27}, [1931] = {.lex_state = 27}, - [1932] = {.lex_state = 27}, + [1932] = {.lex_state = 0}, [1933] = {.lex_state = 27}, [1934] = {.lex_state = 27}, [1935] = {.lex_state = 27}, [1936] = {.lex_state = 27}, - [1937] = {.lex_state = 27}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 27}, [1939] = {.lex_state = 27}, - [1940] = {.lex_state = 27}, + [1940] = {.lex_state = 0}, [1941] = {.lex_state = 27}, [1942] = {.lex_state = 27}, [1943] = {.lex_state = 27}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, + [1944] = {.lex_state = 27}, + [1945] = {.lex_state = 27}, [1946] = {.lex_state = 27}, + [1947] = {.lex_state = 27}, + [1948] = {.lex_state = 27}, + [1949] = {.lex_state = 27}, + [1950] = {.lex_state = 27}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 27}, + [1953] = {.lex_state = 27}, + [1954] = {.lex_state = 27}, + [1955] = {.lex_state = 27}, + [1956] = {.lex_state = 27}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 27}, + [1959] = {.lex_state = 0}, + [1960] = {.lex_state = 27}, + [1961] = {.lex_state = 27}, + [1962] = {.lex_state = 27}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9482,6 +9535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subunit_token1] = ACTIONS(1), [aux_sym_subprogram_body_token1] = ACTIONS(1), [aux_sym_package_body_token1] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), [anon_sym_DOT_DOT] = ACTIONS(1), [aux_sym_range_attribute_designator_token1] = ACTIONS(1), [aux_sym_expression_token1] = ACTIONS(1), @@ -9491,7 +9545,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expression_token5] = ACTIONS(1), [aux_sym_relation_membership_token1] = ACTIONS(1), [aux_sym_raise_expression_token1] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), [aux_sym_factor_abs_token1] = ACTIONS(1), [aux_sym_primary_null_token1] = ACTIONS(1), @@ -9546,102 +9599,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(1), }, [1] = { - [sym_compilation] = STATE(1678), - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym__defining_identifier_list] = STATE(1663), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), + [sym_compilation] = STATE(1940), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym__defining_identifier_list] = STATE(1937), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(482), - [sym__basic_declarative_item] = STATE(482), - [sym__basic_declaration] = STATE(482), - [sym__package_declaration] = STATE(482), - [sym_package_specification] = STATE(1626), - [sym_with_clause] = STATE(482), - [sym_use_clause] = STATE(482), - [sym_subunit] = STATE(482), - [sym__proper_body] = STATE(482), - [sym_subprogram_body] = STATE(482), - [sym_package_body] = STATE(482), - [sym__type_declaration] = STATE(482), - [sym_full_type_declaration] = STATE(482), - [sym_private_type_declaration] = STATE(482), - [sym_private_extension_declaration] = STATE(482), - [sym_incomplete_type_declaration] = STATE(482), - [sym__aspect_clause] = STATE(482), - [sym_at_clause] = STATE(482), - [sym_attribute_definition_clause] = STATE(482), - [sym_body_stub] = STATE(482), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(482), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(482), - [sym_protected_body_stub] = STATE(417), - [sym_entry_declaration] = STATE(482), - [sym_enumeration_representation_clause] = STATE(482), - [sym_exception_declaration] = STATE(482), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(482), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(482), - [sym_generic_package_declaration] = STATE(482), - [sym_generic_instantiation] = STATE(482), - [sym_loop_label] = STATE(952), + [sym__declarative_item] = STATE(487), + [sym__basic_declarative_item] = STATE(487), + [sym__basic_declaration] = STATE(487), + [sym__package_declaration] = STATE(487), + [sym_package_specification] = STATE(1931), + [sym_with_clause] = STATE(487), + [sym_use_clause] = STATE(487), + [sym_subunit] = STATE(487), + [sym__proper_body] = STATE(487), + [sym_subprogram_body] = STATE(487), + [sym_package_body] = STATE(487), + [sym__type_declaration] = STATE(487), + [sym_full_type_declaration] = STATE(487), + [sym_private_type_declaration] = STATE(487), + [sym_private_extension_declaration] = STATE(487), + [sym_incomplete_type_declaration] = STATE(487), + [sym__aspect_clause] = STATE(487), + [sym_at_clause] = STATE(487), + [sym_attribute_definition_clause] = STATE(487), + [sym_body_stub] = STATE(487), + [sym_subprogram_body_stub] = STATE(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(487), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(487), + [sym_protected_body_stub] = STATE(420), + [sym_entry_declaration] = STATE(487), + [sym_enumeration_representation_clause] = STATE(487), + [sym_exception_declaration] = STATE(487), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(487), + [sym_generic_formal_part] = STATE(906), + [sym_generic_subprogram_declaration] = STATE(487), + [sym_generic_package_declaration] = STATE(487), + [sym_generic_instantiation] = STATE(487), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(482), - [sym_null_statement] = STATE(482), - [sym_number_declaration] = STATE(482), - [sym_object_declaration] = STATE(482), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(948), - [sym_pragma_g] = STATE(482), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(482), - [sym__renaming_declaration] = STATE(482), - [sym_object_renaming_declaration] = STATE(482), - [sym_exception_renaming_declaration] = STATE(482), - [sym_package_renaming_declaration] = STATE(482), - [sym_subprogram_renaming_declaration] = STATE(482), - [sym_generic_renaming_declaration] = STATE(482), - [sym__simple_statement] = STATE(482), - [sym__statement] = STATE(482), - [sym__compound_statement] = STATE(482), - [sym__select_statement] = STATE(482), - [sym_asynchronous_select] = STATE(482), - [sym_conditional_entry_call] = STATE(482), - [sym_timed_entry_call] = STATE(482), - [sym_selective_accept] = STATE(482), - [sym_abort_statement] = STATE(482), - [sym_requeue_statement] = STATE(482), - [sym_accept_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_block_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_exit_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym__delay_statement] = STATE(482), - [sym_delay_until_statement] = STATE(482), - [sym_delay_relative_statement] = STATE(482), - [sym_simple_return_statement] = STATE(482), - [sym_extended_return_statement] = STATE(482), - [sym_procedure_call_statement] = STATE(482), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(482), - [sym_loop_statement] = STATE(482), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(482), - [sym_subprogram_declaration] = STATE(482), - [sym_expression_function_declaration] = STATE(482), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(482), + [sym_null_procedure_declaration] = STATE(487), + [sym_null_statement] = STATE(487), + [sym_number_declaration] = STATE(487), + [sym_object_declaration] = STATE(487), + [sym_single_task_declaration] = STATE(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(958), + [sym_pragma_g] = STATE(487), + [sym_procedure_specification] = STATE(1105), + [sym_record_representation_clause] = STATE(487), + [sym__renaming_declaration] = STATE(487), + [sym_object_renaming_declaration] = STATE(487), + [sym_exception_renaming_declaration] = STATE(487), + [sym_package_renaming_declaration] = STATE(487), + [sym_subprogram_renaming_declaration] = STATE(487), + [sym_generic_renaming_declaration] = STATE(487), + [sym__simple_statement] = STATE(487), + [sym__statement] = STATE(487), + [sym__compound_statement] = STATE(487), + [sym__select_statement] = STATE(487), + [sym_asynchronous_select] = STATE(487), + [sym_conditional_entry_call] = STATE(487), + [sym_timed_entry_call] = STATE(487), + [sym_selective_accept] = STATE(487), + [sym_abort_statement] = STATE(487), + [sym_requeue_statement] = STATE(487), + [sym_accept_statement] = STATE(487), + [sym_case_statement] = STATE(487), + [sym_block_statement] = STATE(487), + [sym_if_statement] = STATE(487), + [sym_exit_statement] = STATE(487), + [sym_goto_statement] = STATE(487), + [sym__delay_statement] = STATE(487), + [sym_delay_until_statement] = STATE(487), + [sym_delay_relative_statement] = STATE(487), + [sym_simple_return_statement] = STATE(487), + [sym_extended_return_statement] = STATE(487), + [sym_procedure_call_statement] = STATE(487), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(487), + [sym_loop_statement] = STATE(487), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(487), + [sym_subprogram_declaration] = STATE(487), + [sym_expression_function_declaration] = STATE(487), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(487), [aux_sym_compilation_repeat1] = STATE(3), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(5), @@ -9688,101 +9741,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [2] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym__defining_identifier_list] = STATE(1663), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym__defining_identifier_list] = STATE(1937), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(482), - [sym__basic_declarative_item] = STATE(482), - [sym__basic_declaration] = STATE(482), - [sym__package_declaration] = STATE(482), - [sym_package_specification] = STATE(1626), - [sym_with_clause] = STATE(482), - [sym_use_clause] = STATE(482), - [sym_subunit] = STATE(482), - [sym__proper_body] = STATE(482), - [sym_subprogram_body] = STATE(482), - [sym_package_body] = STATE(482), - [sym__type_declaration] = STATE(482), - [sym_full_type_declaration] = STATE(482), - [sym_private_type_declaration] = STATE(482), - [sym_private_extension_declaration] = STATE(482), - [sym_incomplete_type_declaration] = STATE(482), - [sym__aspect_clause] = STATE(482), - [sym_at_clause] = STATE(482), - [sym_attribute_definition_clause] = STATE(482), - [sym_body_stub] = STATE(482), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(482), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(482), - [sym_protected_body_stub] = STATE(417), - [sym_entry_declaration] = STATE(482), - [sym_enumeration_representation_clause] = STATE(482), - [sym_exception_declaration] = STATE(482), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(482), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(482), - [sym_generic_package_declaration] = STATE(482), - [sym_generic_instantiation] = STATE(482), - [sym_loop_label] = STATE(952), + [sym__declarative_item] = STATE(487), + [sym__basic_declarative_item] = STATE(487), + [sym__basic_declaration] = STATE(487), + [sym__package_declaration] = STATE(487), + [sym_package_specification] = STATE(1931), + [sym_with_clause] = STATE(487), + [sym_use_clause] = STATE(487), + [sym_subunit] = STATE(487), + [sym__proper_body] = STATE(487), + [sym_subprogram_body] = STATE(487), + [sym_package_body] = STATE(487), + [sym__type_declaration] = STATE(487), + [sym_full_type_declaration] = STATE(487), + [sym_private_type_declaration] = STATE(487), + [sym_private_extension_declaration] = STATE(487), + [sym_incomplete_type_declaration] = STATE(487), + [sym__aspect_clause] = STATE(487), + [sym_at_clause] = STATE(487), + [sym_attribute_definition_clause] = STATE(487), + [sym_body_stub] = STATE(487), + [sym_subprogram_body_stub] = STATE(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(487), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(487), + [sym_protected_body_stub] = STATE(420), + [sym_entry_declaration] = STATE(487), + [sym_enumeration_representation_clause] = STATE(487), + [sym_exception_declaration] = STATE(487), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(487), + [sym_generic_formal_part] = STATE(906), + [sym_generic_subprogram_declaration] = STATE(487), + [sym_generic_package_declaration] = STATE(487), + [sym_generic_instantiation] = STATE(487), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(482), - [sym_null_statement] = STATE(482), - [sym_number_declaration] = STATE(482), - [sym_object_declaration] = STATE(482), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(948), - [sym_pragma_g] = STATE(482), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(482), - [sym__renaming_declaration] = STATE(482), - [sym_object_renaming_declaration] = STATE(482), - [sym_exception_renaming_declaration] = STATE(482), - [sym_package_renaming_declaration] = STATE(482), - [sym_subprogram_renaming_declaration] = STATE(482), - [sym_generic_renaming_declaration] = STATE(482), - [sym__simple_statement] = STATE(482), - [sym__statement] = STATE(482), - [sym__compound_statement] = STATE(482), - [sym__select_statement] = STATE(482), - [sym_asynchronous_select] = STATE(482), - [sym_conditional_entry_call] = STATE(482), - [sym_timed_entry_call] = STATE(482), - [sym_selective_accept] = STATE(482), - [sym_abort_statement] = STATE(482), - [sym_requeue_statement] = STATE(482), - [sym_accept_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_block_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_exit_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym__delay_statement] = STATE(482), - [sym_delay_until_statement] = STATE(482), - [sym_delay_relative_statement] = STATE(482), - [sym_simple_return_statement] = STATE(482), - [sym_extended_return_statement] = STATE(482), - [sym_procedure_call_statement] = STATE(482), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(482), - [sym_loop_statement] = STATE(482), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(482), - [sym_subprogram_declaration] = STATE(482), - [sym_expression_function_declaration] = STATE(482), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(482), + [sym_null_procedure_declaration] = STATE(487), + [sym_null_statement] = STATE(487), + [sym_number_declaration] = STATE(487), + [sym_object_declaration] = STATE(487), + [sym_single_task_declaration] = STATE(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(958), + [sym_pragma_g] = STATE(487), + [sym_procedure_specification] = STATE(1105), + [sym_record_representation_clause] = STATE(487), + [sym__renaming_declaration] = STATE(487), + [sym_object_renaming_declaration] = STATE(487), + [sym_exception_renaming_declaration] = STATE(487), + [sym_package_renaming_declaration] = STATE(487), + [sym_subprogram_renaming_declaration] = STATE(487), + [sym_generic_renaming_declaration] = STATE(487), + [sym__simple_statement] = STATE(487), + [sym__statement] = STATE(487), + [sym__compound_statement] = STATE(487), + [sym__select_statement] = STATE(487), + [sym_asynchronous_select] = STATE(487), + [sym_conditional_entry_call] = STATE(487), + [sym_timed_entry_call] = STATE(487), + [sym_selective_accept] = STATE(487), + [sym_abort_statement] = STATE(487), + [sym_requeue_statement] = STATE(487), + [sym_accept_statement] = STATE(487), + [sym_case_statement] = STATE(487), + [sym_block_statement] = STATE(487), + [sym_if_statement] = STATE(487), + [sym_exit_statement] = STATE(487), + [sym_goto_statement] = STATE(487), + [sym__delay_statement] = STATE(487), + [sym_delay_until_statement] = STATE(487), + [sym_delay_relative_statement] = STATE(487), + [sym_simple_return_statement] = STATE(487), + [sym_extended_return_statement] = STATE(487), + [sym_procedure_call_statement] = STATE(487), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(487), + [sym_loop_statement] = STATE(487), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(487), + [sym_subprogram_declaration] = STATE(487), + [sym_expression_function_declaration] = STATE(487), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(487), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(83), @@ -9829,101 +9882,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(196), }, [3] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym__defining_identifier_list] = STATE(1663), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym__defining_identifier_list] = STATE(1937), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(482), - [sym__basic_declarative_item] = STATE(482), - [sym__basic_declaration] = STATE(482), - [sym__package_declaration] = STATE(482), - [sym_package_specification] = STATE(1626), - [sym_with_clause] = STATE(482), - [sym_use_clause] = STATE(482), - [sym_subunit] = STATE(482), - [sym__proper_body] = STATE(482), - [sym_subprogram_body] = STATE(482), - [sym_package_body] = STATE(482), - [sym__type_declaration] = STATE(482), - [sym_full_type_declaration] = STATE(482), - [sym_private_type_declaration] = STATE(482), - [sym_private_extension_declaration] = STATE(482), - [sym_incomplete_type_declaration] = STATE(482), - [sym__aspect_clause] = STATE(482), - [sym_at_clause] = STATE(482), - [sym_attribute_definition_clause] = STATE(482), - [sym_body_stub] = STATE(482), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(482), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(482), - [sym_protected_body_stub] = STATE(417), - [sym_entry_declaration] = STATE(482), - [sym_enumeration_representation_clause] = STATE(482), - [sym_exception_declaration] = STATE(482), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(482), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(482), - [sym_generic_package_declaration] = STATE(482), - [sym_generic_instantiation] = STATE(482), - [sym_loop_label] = STATE(952), + [sym__declarative_item] = STATE(487), + [sym__basic_declarative_item] = STATE(487), + [sym__basic_declaration] = STATE(487), + [sym__package_declaration] = STATE(487), + [sym_package_specification] = STATE(1931), + [sym_with_clause] = STATE(487), + [sym_use_clause] = STATE(487), + [sym_subunit] = STATE(487), + [sym__proper_body] = STATE(487), + [sym_subprogram_body] = STATE(487), + [sym_package_body] = STATE(487), + [sym__type_declaration] = STATE(487), + [sym_full_type_declaration] = STATE(487), + [sym_private_type_declaration] = STATE(487), + [sym_private_extension_declaration] = STATE(487), + [sym_incomplete_type_declaration] = STATE(487), + [sym__aspect_clause] = STATE(487), + [sym_at_clause] = STATE(487), + [sym_attribute_definition_clause] = STATE(487), + [sym_body_stub] = STATE(487), + [sym_subprogram_body_stub] = STATE(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(487), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(487), + [sym_protected_body_stub] = STATE(420), + [sym_entry_declaration] = STATE(487), + [sym_enumeration_representation_clause] = STATE(487), + [sym_exception_declaration] = STATE(487), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(487), + [sym_generic_formal_part] = STATE(906), + [sym_generic_subprogram_declaration] = STATE(487), + [sym_generic_package_declaration] = STATE(487), + [sym_generic_instantiation] = STATE(487), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(482), - [sym_null_statement] = STATE(482), - [sym_number_declaration] = STATE(482), - [sym_object_declaration] = STATE(482), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(948), - [sym_pragma_g] = STATE(482), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(482), - [sym__renaming_declaration] = STATE(482), - [sym_object_renaming_declaration] = STATE(482), - [sym_exception_renaming_declaration] = STATE(482), - [sym_package_renaming_declaration] = STATE(482), - [sym_subprogram_renaming_declaration] = STATE(482), - [sym_generic_renaming_declaration] = STATE(482), - [sym__simple_statement] = STATE(482), - [sym__statement] = STATE(482), - [sym__compound_statement] = STATE(482), - [sym__select_statement] = STATE(482), - [sym_asynchronous_select] = STATE(482), - [sym_conditional_entry_call] = STATE(482), - [sym_timed_entry_call] = STATE(482), - [sym_selective_accept] = STATE(482), - [sym_abort_statement] = STATE(482), - [sym_requeue_statement] = STATE(482), - [sym_accept_statement] = STATE(482), - [sym_case_statement] = STATE(482), - [sym_block_statement] = STATE(482), - [sym_if_statement] = STATE(482), - [sym_exit_statement] = STATE(482), - [sym_goto_statement] = STATE(482), - [sym__delay_statement] = STATE(482), - [sym_delay_until_statement] = STATE(482), - [sym_delay_relative_statement] = STATE(482), - [sym_simple_return_statement] = STATE(482), - [sym_extended_return_statement] = STATE(482), - [sym_procedure_call_statement] = STATE(482), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(482), - [sym_loop_statement] = STATE(482), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(482), - [sym_subprogram_declaration] = STATE(482), - [sym_expression_function_declaration] = STATE(482), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(482), + [sym_null_procedure_declaration] = STATE(487), + [sym_null_statement] = STATE(487), + [sym_number_declaration] = STATE(487), + [sym_object_declaration] = STATE(487), + [sym_single_task_declaration] = STATE(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(958), + [sym_pragma_g] = STATE(487), + [sym_procedure_specification] = STATE(1105), + [sym_record_representation_clause] = STATE(487), + [sym__renaming_declaration] = STATE(487), + [sym_object_renaming_declaration] = STATE(487), + [sym_exception_renaming_declaration] = STATE(487), + [sym_package_renaming_declaration] = STATE(487), + [sym_subprogram_renaming_declaration] = STATE(487), + [sym_generic_renaming_declaration] = STATE(487), + [sym__simple_statement] = STATE(487), + [sym__statement] = STATE(487), + [sym__compound_statement] = STATE(487), + [sym__select_statement] = STATE(487), + [sym_asynchronous_select] = STATE(487), + [sym_conditional_entry_call] = STATE(487), + [sym_timed_entry_call] = STATE(487), + [sym_selective_accept] = STATE(487), + [sym_abort_statement] = STATE(487), + [sym_requeue_statement] = STATE(487), + [sym_accept_statement] = STATE(487), + [sym_case_statement] = STATE(487), + [sym_block_statement] = STATE(487), + [sym_if_statement] = STATE(487), + [sym_exit_statement] = STATE(487), + [sym_goto_statement] = STATE(487), + [sym__delay_statement] = STATE(487), + [sym_delay_until_statement] = STATE(487), + [sym_delay_relative_statement] = STATE(487), + [sym_simple_return_statement] = STATE(487), + [sym_extended_return_statement] = STATE(487), + [sym_procedure_call_statement] = STATE(487), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(487), + [sym_loop_statement] = STATE(487), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(487), + [sym_subprogram_declaration] = STATE(487), + [sym_expression_function_declaration] = STATE(487), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(487), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(199), @@ -9970,63 +10023,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [4] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1847), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1742), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10047,229 +10100,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [5] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1609), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym_unary_adding_operator] = STATE(508), + [sym__name] = STATE(486), + [sym_selected_component] = STATE(263), + [sym_slice] = STATE(263), + [sym__attribute_reference] = STATE(263), + [sym__reduction_attribute_reference] = STATE(263), + [sym_value_sequence] = STATE(1932), + [sym_iterated_element_association] = STATE(1257), + [sym_qualified_expression] = STATE(263), + [sym__subtype_indication] = STATE(1415), + [sym_range_g] = STATE(1410), + [sym_expression] = STATE(965), + [sym__relation] = STATE(566), + [sym_relation_membership] = STATE(566), + [sym_raise_expression] = STATE(566), + [sym__simple_expression] = STATE(604), + [sym_term] = STATE(515), + [sym__factor] = STATE(489), + [sym_factor_power] = STATE(489), + [sym_factor_abs] = STATE(489), + [sym_factor_not] = STATE(489), + [sym__parenthesized_expression] = STATE(497), + [sym__primary] = STATE(497), + [sym_primary_null] = STATE(497), + [sym_allocator] = STATE(497), + [sym__conditional_expression] = STATE(1694), + [sym_quantified_expression] = STATE(1694), + [sym_declare_expression] = STATE(1694), + [sym_case_expression] = STATE(1694), + [sym_component_choice_list] = STATE(1689), + [sym__aggregate] = STATE(497), + [sym__delta_aggregate] = STATE(497), + [sym_extension_aggregate] = STATE(497), + [sym_record_delta_aggregate] = STATE(497), + [sym_array_delta_aggregate] = STATE(497), + [sym_record_aggregate] = STATE(497), + [sym_record_component_association_list] = STATE(1685), + [sym__named_record_component_association] = STATE(1273), + [sym_null_exclusion] = STATE(780), + [sym__array_aggregate] = STATE(497), + [sym_positional_array_aggregate] = STATE(497), + [sym_null_array_aggregate] = STATE(497), + [sym_named_array_aggregate] = STATE(497), + [sym__array_component_association_list] = STATE(1680), + [sym_array_component_association] = STATE(1120), + [sym_discrete_choice_list] = STATE(1673), + [sym_discrete_choice] = STATE(1286), + [sym_global_aspect_element] = STATE(1308), + [sym_global_mode] = STATE(743), + [sym_non_empty_mode] = STATE(836), + [sym_if_expression] = STATE(1694), + [sym_function_call] = STATE(486), + [sym_identifier] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(213), + [sym_character_literal] = ACTIONS(215), + [sym_numeric_literal] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(221), + [sym_target_name] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [aux_sym_chunk_specification_token1] = ACTIONS(227), + [aux_sym_iterated_element_association_token1] = ACTIONS(229), + [aux_sym_relation_membership_token1] = ACTIONS(231), + [aux_sym_raise_expression_token1] = ACTIONS(233), + [aux_sym_factor_abs_token1] = ACTIONS(235), + [aux_sym_primary_null_token1] = ACTIONS(237), + [aux_sym_allocator_token1] = ACTIONS(239), + [aux_sym_declare_expression_token1] = ACTIONS(241), + [aux_sym_case_expression_token1] = ACTIONS(243), + [aux_sym_component_choice_list_token1] = ACTIONS(245), + [aux_sym_global_mode_token1] = ACTIONS(247), + [aux_sym_non_empty_mode_token1] = ACTIONS(249), + [aux_sym_if_expression_token1] = ACTIONS(251), + }, + [6] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [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(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [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(211), - [aux_sym_subprogram_body_token1] = ACTIONS(213), + [aux_sym_subunit_token1] = ACTIONS(253), + [aux_sym_subprogram_body_token1] = ACTIONS(255), [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(215), + [aux_sym_private_type_declaration_token1] = ACTIONS(257), [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_subtype_declaration_token1] = ACTIONS(81), }, - [6] = { - [sym_unary_adding_operator] = STATE(499), - [sym__name] = STATE(480), - [sym_selected_component] = STATE(502), - [sym_slice] = STATE(264), - [sym__attribute_reference] = STATE(264), - [sym__reduction_attribute_reference] = STATE(264), - [sym_value_sequence] = STATE(1651), - [sym_iterated_element_association] = STATE(1281), - [sym_qualified_expression] = STATE(264), - [sym__subtype_indication] = STATE(1375), - [sym_range_g] = STATE(1373), - [sym_expression] = STATE(938), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(602), - [sym_term] = STATE(511), - [sym__factor] = STATE(487), - [sym_factor_power] = STATE(487), - [sym_factor_abs] = STATE(487), - [sym_factor_not] = STATE(487), - [sym__parenthesized_expression] = STATE(490), - [sym__primary] = STATE(490), - [sym_primary_null] = STATE(490), - [sym_allocator] = STATE(490), - [sym__conditional_expression] = STATE(1865), - [sym_quantified_expression] = STATE(1865), - [sym_declare_expression] = STATE(1865), - [sym_case_expression] = STATE(1865), - [sym_component_choice_list] = STATE(1876), - [sym__aggregate] = STATE(490), - [sym__delta_aggregate] = STATE(490), - [sym_extension_aggregate] = STATE(490), - [sym_record_delta_aggregate] = STATE(490), - [sym_array_delta_aggregate] = STATE(490), - [sym_record_aggregate] = STATE(490), - [sym_record_component_association_list] = STATE(1879), - [sym__named_record_component_association] = STATE(1309), - [sym_null_exclusion] = STATE(802), - [sym__array_aggregate] = STATE(490), - [sym_positional_array_aggregate] = STATE(490), - [sym_null_array_aggregate] = STATE(490), - [sym_named_array_aggregate] = STATE(490), - [sym__array_component_association_list] = STATE(1922), - [sym_array_component_association] = STATE(1088), - [sym_discrete_choice_list] = STATE(1534), - [sym_discrete_choice] = STATE(1260), - [sym_global_aspect_element] = STATE(1333), - [sym_global_mode] = STATE(690), - [sym_non_empty_mode] = STATE(830), - [sym_if_expression] = STATE(1865), - [sym_function_call] = STATE(480), - [sym_identifier] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(221), - [sym_numeric_literal] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(227), - [sym_target_name] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [aux_sym_chunk_specification_token1] = ACTIONS(233), - [aux_sym_iterated_element_association_token1] = ACTIONS(235), - [aux_sym_relation_membership_token1] = ACTIONS(237), - [aux_sym_raise_expression_token1] = ACTIONS(239), - [aux_sym_factor_abs_token1] = ACTIONS(241), - [aux_sym_primary_null_token1] = ACTIONS(243), - [aux_sym_allocator_token1] = ACTIONS(245), - [aux_sym_declare_expression_token1] = ACTIONS(247), - [aux_sym_case_expression_token1] = ACTIONS(249), - [aux_sym_component_choice_list_token1] = ACTIONS(251), - [aux_sym_global_mode_token1] = ACTIONS(253), - [aux_sym_non_empty_mode_token1] = ACTIONS(255), - [aux_sym_if_expression_token1] = ACTIONS(257), - }, [7] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1609), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1955), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [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(213), + [aux_sym_subunit_token1] = ACTIONS(259), + [aux_sym_subprogram_body_token1] = ACTIONS(261), [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(215), [aux_sym_interface_type_definition_token1] = ACTIONS(47), [aux_sym_generic_formal_part_token1] = ACTIONS(51), [aux_sym_global_mode_token1] = ACTIONS(53), @@ -10277,63 +10330,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [8] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1847), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1742), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10353,139 +10406,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [9] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1455), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [aux_sym_iterated_element_association_token2] = ACTIONS(15), - [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(259), - [aux_sym_use_clause_token2] = ACTIONS(25), - [aux_sym_subprogram_body_token1] = ACTIONS(261), - [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_subtype_declaration_token1] = ACTIONS(81), - }, - [10] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1343), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1476), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10504,71 +10481,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [11] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1757), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [10] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [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(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [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(267), + [aux_sym_subprogram_body_token1] = ACTIONS(255), + [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(257), + [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_subtype_declaration_token1] = ACTIONS(81), + }, + [11] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1372), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [aux_sym_iterated_element_association_token2] = ACTIONS(15), + [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(267), + [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(269), [aux_sym_relation_membership_token1] = ACTIONS(31), [aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37), @@ -10581,63 +10634,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [12] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1856), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1872), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10656,63 +10709,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [13] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1901), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1917), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10731,137 +10784,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [14] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1847), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [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(207), - [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_subtype_declaration_token1] = ACTIONS(81), - }, - [15] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(15), - [sym__basic_declarative_item] = STATE(15), - [sym__basic_declaration] = STATE(15), - [sym__package_declaration] = STATE(15), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(15), - [sym__proper_body] = STATE(15), - [sym_subprogram_body] = STATE(15), - [sym_package_body] = STATE(15), - [sym__type_declaration] = STATE(15), - [sym_full_type_declaration] = STATE(15), - [sym_private_type_declaration] = STATE(15), - [sym_private_extension_declaration] = STATE(15), - [sym_incomplete_type_declaration] = STATE(15), - [sym__aspect_clause] = STATE(15), - [sym_at_clause] = STATE(15), - [sym_attribute_definition_clause] = STATE(15), - [sym_body_stub] = STATE(15), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(15), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(15), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(15), - [sym_enumeration_representation_clause] = STATE(15), - [sym_exception_declaration] = STATE(15), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(15), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(15), - [sym_generic_package_declaration] = STATE(15), - [sym_generic_instantiation] = STATE(15), - [sym_null_procedure_declaration] = STATE(15), - [sym_number_declaration] = STATE(15), - [sym_object_declaration] = STATE(15), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(15), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(15), - [sym__renaming_declaration] = STATE(15), - [sym_object_renaming_declaration] = STATE(15), - [sym_exception_renaming_declaration] = STATE(15), - [sym_package_renaming_declaration] = STATE(15), - [sym_subprogram_renaming_declaration] = STATE(15), - [sym_generic_renaming_declaration] = STATE(15), - [sym_subprogram_declaration] = STATE(15), - [sym_expression_function_declaration] = STATE(15), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(15), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(15), + [sym__defining_identifier_list] = STATE(1937), + [sym__declarative_item] = STATE(14), + [sym__basic_declarative_item] = STATE(14), + [sym__basic_declaration] = STATE(14), + [sym__package_declaration] = STATE(14), + [sym_package_specification] = STATE(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(14), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(14), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(14), + [sym_enumeration_representation_clause] = STATE(14), + [sym_exception_declaration] = STATE(14), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(14), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(14), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(14), + [sym_expression_function_declaration] = STATE(14), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(14), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(14), [sym_identifier] = ACTIONS(275), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(278), @@ -10880,64 +10858,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(313), [aux_sym_subtype_declaration_token1] = ACTIONS(316), }, - [16] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1619), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [15] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1802), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -10955,64 +10933,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, + [16] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1955), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [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(261), + [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_subtype_declaration_token1] = ACTIONS(81), + }, [17] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1706), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1865), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11031,63 +11084,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [18] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1658), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [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(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(201), + [sym_comment] = ACTIONS(3), + [aux_sym_iterated_element_association_token1] = ACTIONS(203), + [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(255), + [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_subtype_declaration_token1] = ACTIONS(81), + }, + [19] = { + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1556), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11105,146 +11233,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pragma_g_token1] = ACTIONS(57), [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, - [19] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1757), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(201), - [sym_comment] = ACTIONS(3), - [aux_sym_iterated_element_association_token1] = ACTIONS(203), - [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(269), - [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_subtype_declaration_token1] = ACTIONS(81), - }, [20] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1609), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1742), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [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(213), + [aux_sym_subprogram_body_token1] = ACTIONS(207), [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), @@ -11256,63 +11309,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [21] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1786), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1847), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -11331,68 +11384,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [22] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(23), - [sym__basic_declarative_item] = STATE(23), - [sym__basic_declaration] = STATE(23), - [sym__package_declaration] = STATE(23), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(23), - [sym__proper_body] = STATE(23), - [sym_subprogram_body] = STATE(23), - [sym_package_body] = STATE(23), - [sym__type_declaration] = STATE(23), - [sym_full_type_declaration] = STATE(23), - [sym_private_type_declaration] = STATE(23), - [sym_private_extension_declaration] = STATE(23), - [sym_incomplete_type_declaration] = STATE(23), - [sym__aspect_clause] = STATE(23), - [sym_at_clause] = STATE(23), - [sym_attribute_definition_clause] = STATE(23), - [sym_body_stub] = STATE(23), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(23), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(23), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(23), - [sym_non_empty_declarative_part] = STATE(1615), - [sym_enumeration_representation_clause] = STATE(23), - [sym_exception_declaration] = STATE(23), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(23), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(23), - [sym_generic_package_declaration] = STATE(23), - [sym_generic_instantiation] = STATE(23), - [sym_null_procedure_declaration] = STATE(23), - [sym_number_declaration] = STATE(23), - [sym_object_declaration] = STATE(23), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(23), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(23), - [sym__renaming_declaration] = STATE(23), - [sym_object_renaming_declaration] = STATE(23), - [sym_exception_renaming_declaration] = STATE(23), - [sym_package_renaming_declaration] = STATE(23), - [sym_subprogram_renaming_declaration] = STATE(23), - [sym_generic_renaming_declaration] = STATE(23), - [sym_subprogram_declaration] = STATE(23), - [sym_expression_function_declaration] = STATE(23), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(23), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(23), + [sym__defining_identifier_list] = STATE(1937), + [sym__declarative_item] = STATE(14), + [sym__basic_declarative_item] = STATE(14), + [sym__basic_declaration] = STATE(14), + [sym__package_declaration] = STATE(14), + [sym_package_specification] = STATE(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(14), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(14), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(14), + [sym_enumeration_representation_clause] = STATE(14), + [sym_exception_declaration] = STATE(14), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(14), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(14), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(14), + [sym_expression_function_declaration] = STATE(14), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(14), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(14), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), + [aux_sym_package_specification_token3] = ACTIONS(327), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(327), [aux_sym_relation_membership_token1] = ACTIONS(31), @@ -11406,68 +11459,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [23] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(15), - [sym__basic_declarative_item] = STATE(15), - [sym__basic_declaration] = STATE(15), - [sym__package_declaration] = STATE(15), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(15), - [sym__proper_body] = STATE(15), - [sym_subprogram_body] = STATE(15), - [sym_package_body] = STATE(15), - [sym__type_declaration] = STATE(15), - [sym_full_type_declaration] = STATE(15), - [sym_private_type_declaration] = STATE(15), - [sym_private_extension_declaration] = STATE(15), - [sym_incomplete_type_declaration] = STATE(15), - [sym__aspect_clause] = STATE(15), - [sym_at_clause] = STATE(15), - [sym_attribute_definition_clause] = STATE(15), - [sym_body_stub] = STATE(15), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(15), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(15), - [sym_protected_body_stub] = STATE(417), - [sym__declarative_item_pragma] = STATE(15), - [sym_enumeration_representation_clause] = STATE(15), - [sym_exception_declaration] = STATE(15), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(15), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(15), - [sym_generic_package_declaration] = STATE(15), - [sym_generic_instantiation] = STATE(15), - [sym_null_procedure_declaration] = STATE(15), - [sym_number_declaration] = STATE(15), - [sym_object_declaration] = STATE(15), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_pragma_g] = STATE(15), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(15), - [sym__renaming_declaration] = STATE(15), - [sym_object_renaming_declaration] = STATE(15), - [sym_exception_renaming_declaration] = STATE(15), - [sym_package_renaming_declaration] = STATE(15), - [sym_subprogram_renaming_declaration] = STATE(15), - [sym_generic_renaming_declaration] = STATE(15), - [sym_subprogram_declaration] = STATE(15), - [sym_expression_function_declaration] = STATE(15), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(15), - [aux_sym_non_empty_declarative_part_repeat1] = STATE(15), + [sym__defining_identifier_list] = STATE(1937), + [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(1931), + [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(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(22), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(22), + [sym_protected_body_stub] = STATE(420), + [sym__declarative_item_pragma] = STATE(22), + [sym_non_empty_declarative_part] = STATE(1697), + [sym_enumeration_representation_clause] = STATE(22), + [sym_exception_declaration] = STATE(22), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(22), + [sym_generic_formal_part] = STATE(906), + [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(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_pragma_g] = STATE(22), + [sym_procedure_specification] = STATE(1105), + [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_subprogram_declaration] = STATE(22), + [sym_expression_function_declaration] = STATE(22), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(22), + [aux_sym_non_empty_declarative_part_repeat1] = STATE(22), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), [aux_sym_iterated_element_association_token2] = ACTIONS(15), [aux_sym_package_specification_token1] = ACTIONS(19), - [aux_sym_package_specification_token3] = ACTIONS(329), [aux_sym_use_clause_token2] = ACTIONS(25), [aux_sym_subprogram_body_token1] = ACTIONS(329), [aux_sym_relation_membership_token1] = ACTIONS(31), @@ -11481,15 +11534,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [24] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(27), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(26), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), [sym__simple_statement] = STATE(25), @@ -11514,13 +11567,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), - [aux_sym__sequence_of_statements_repeat2] = STATE(27), + [aux_sym__sequence_of_statements_repeat2] = STATE(26), [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -11555,14 +11608,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [25] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), @@ -11588,10 +11641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -11629,14 +11682,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(402), }, [26] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(521), + [sym_null_statement] = STATE(150), + [sym_pragma_g] = STATE(150), + [sym__simple_statement] = STATE(150), + [sym__compound_statement] = STATE(150), + [sym__select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(150), + [sym_conditional_entry_call] = STATE(150), + [sym_timed_entry_call] = STATE(150), + [sym_selective_accept] = STATE(150), + [sym_abort_statement] = STATE(150), + [sym_requeue_statement] = STATE(150), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__delay_statement] = STATE(150), + [sym_delay_until_statement] = STATE(150), + [sym_delay_relative_statement] = STATE(150), + [sym_simple_return_statement] = STATE(150), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(150), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(150), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(150), + [aux_sym__sequence_of_statements_repeat2] = STATE(521), + [sym_identifier] = ACTIONS(331), + [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(333), + [aux_sym_iterator_filter_token1] = ACTIONS(405), + [aux_sym_package_specification_token3] = ACTIONS(405), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(405), + [aux_sym_expression_token3] = ACTIONS(405), + [aux_sym_expression_token4] = ACTIONS(405), + [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(405), + [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(405), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [27] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), @@ -11663,10 +11788,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -11677,90 +11802,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(333), - [aux_sym_package_specification_token3] = ACTIONS(405), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), - [aux_sym_expression_token3] = ACTIONS(405), - [aux_sym_expression_token4] = ACTIONS(405), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [27] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(517), - [sym_null_statement] = STATE(181), - [sym_pragma_g] = STATE(181), - [sym__simple_statement] = STATE(181), - [sym__compound_statement] = STATE(181), - [sym__select_statement] = STATE(181), - [sym_asynchronous_select] = STATE(181), - [sym_conditional_entry_call] = STATE(181), - [sym_timed_entry_call] = STATE(181), - [sym_selective_accept] = STATE(181), - [sym_abort_statement] = STATE(181), - [sym_requeue_statement] = STATE(181), - [sym_accept_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_block_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_exit_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym__delay_statement] = STATE(181), - [sym_delay_until_statement] = STATE(181), - [sym_delay_relative_statement] = STATE(181), - [sym_simple_return_statement] = STATE(181), - [sym_extended_return_statement] = STATE(181), - [sym_procedure_call_statement] = STATE(181), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(181), - [sym_loop_statement] = STATE(181), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(181), - [aux_sym__sequence_of_statements_repeat2] = STATE(517), - [sym_identifier] = ACTIONS(331), - [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(333), - [aux_sym_iterator_filter_token1] = ACTIONS(409), - [aux_sym_package_specification_token3] = ACTIONS(409), + [aux_sym_package_specification_token3] = ACTIONS(407), [aux_sym_subprogram_body_token1] = ACTIONS(29), [aux_sym_expression_token2] = ACTIONS(409), - [aux_sym_expression_token3] = ACTIONS(409), - [aux_sym_expression_token4] = ACTIONS(409), + [aux_sym_expression_token3] = ACTIONS(407), + [aux_sym_expression_token4] = ACTIONS(407), [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(409), [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(409), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), [aux_sym_asynchronous_select_token2] = ACTIONS(65), @@ -11773,18 +11826,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [28] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1264), + [sym__sequence_of_statements] = STATE(1294), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -11807,10 +11860,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -11821,8 +11874,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(333), + [aux_sym_package_specification_token3] = ACTIONS(407), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token3] = ACTIONS(407), + [aux_sym_expression_token4] = ACTIONS(407), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [29] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1329), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [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(333), + [aux_sym_package_specification_token3] = ACTIONS(411), [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token2] = ACTIONS(407), [aux_sym_expression_token3] = ACTIONS(411), [aux_sym_expression_token4] = ACTIONS(411), [aux_sym_raise_expression_token1] = ACTIONS(33), @@ -11843,19 +11967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [29] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [30] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1267), + [sym__sequence_of_statements] = STATE(1311), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -11878,10 +12002,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -11892,8 +12016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(333), - [aux_sym_package_specification_token3] = ACTIONS(413), [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_expression_token2] = ACTIONS(409), [aux_sym_expression_token3] = ACTIONS(413), [aux_sym_expression_token4] = ACTIONS(413), [aux_sym_raise_expression_token1] = ACTIONS(33), @@ -11914,202 +12038,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [30] = { - [sym_unary_adding_operator] = STATE(499), - [sym__name] = STATE(480), - [sym_selected_component] = STATE(502), - [sym_slice] = STATE(264), - [sym__attribute_reference] = STATE(264), - [sym__reduction_attribute_reference] = STATE(264), - [sym_value_sequence] = STATE(1651), - [sym_iterated_element_association] = STATE(1281), - [sym_qualified_expression] = STATE(264), - [sym__subtype_indication] = STATE(1375), - [sym_range_g] = STATE(1373), - [sym_expression] = STATE(938), + [31] = { + [sym_unary_adding_operator] = STATE(508), + [sym__name] = STATE(486), + [sym_selected_component] = STATE(263), + [sym_slice] = STATE(263), + [sym__attribute_reference] = STATE(263), + [sym__reduction_attribute_reference] = STATE(263), + [sym_value_sequence] = STATE(1932), + [sym_iterated_element_association] = STATE(1257), + [sym_qualified_expression] = STATE(263), + [sym__subtype_indication] = STATE(1415), + [sym_range_g] = STATE(1410), + [sym_expression] = STATE(965), [sym__relation] = STATE(566), [sym_relation_membership] = STATE(566), [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(602), - [sym_term] = STATE(511), - [sym__factor] = STATE(487), - [sym_factor_power] = STATE(487), - [sym_factor_abs] = STATE(487), - [sym_factor_not] = STATE(487), - [sym__parenthesized_expression] = STATE(490), - [sym__primary] = STATE(490), - [sym_primary_null] = STATE(490), - [sym_allocator] = STATE(490), - [sym__conditional_expression] = STATE(1865), - [sym_quantified_expression] = STATE(1865), - [sym_declare_expression] = STATE(1865), - [sym_case_expression] = STATE(1865), - [sym_component_choice_list] = STATE(1876), - [sym__aggregate] = STATE(490), - [sym__delta_aggregate] = STATE(490), - [sym_extension_aggregate] = STATE(490), - [sym_record_delta_aggregate] = STATE(490), - [sym_array_delta_aggregate] = STATE(490), - [sym_record_aggregate] = STATE(490), - [sym_record_component_association_list] = STATE(1879), - [sym__named_record_component_association] = STATE(1309), - [sym_null_exclusion] = STATE(802), - [sym__array_aggregate] = STATE(490), - [sym_positional_array_aggregate] = STATE(490), - [sym_null_array_aggregate] = STATE(490), - [sym_named_array_aggregate] = STATE(490), - [sym__array_component_association_list] = STATE(1922), - [sym_array_component_association] = STATE(1088), - [sym_discrete_choice_list] = STATE(1534), - [sym_discrete_choice] = STATE(1260), - [sym_if_expression] = STATE(1865), - [sym_function_call] = STATE(480), - [sym_identifier] = ACTIONS(217), + [sym__simple_expression] = STATE(604), + [sym_term] = STATE(515), + [sym__factor] = STATE(489), + [sym_factor_power] = STATE(489), + [sym_factor_abs] = STATE(489), + [sym_factor_not] = STATE(489), + [sym__parenthesized_expression] = STATE(497), + [sym__primary] = STATE(497), + [sym_primary_null] = STATE(497), + [sym_allocator] = STATE(497), + [sym__conditional_expression] = STATE(1694), + [sym_quantified_expression] = STATE(1694), + [sym_declare_expression] = STATE(1694), + [sym_case_expression] = STATE(1694), + [sym_component_choice_list] = STATE(1689), + [sym__aggregate] = STATE(497), + [sym__delta_aggregate] = STATE(497), + [sym_extension_aggregate] = STATE(497), + [sym_record_delta_aggregate] = STATE(497), + [sym_array_delta_aggregate] = STATE(497), + [sym_record_aggregate] = STATE(497), + [sym_record_component_association_list] = STATE(1685), + [sym__named_record_component_association] = STATE(1273), + [sym_null_exclusion] = STATE(780), + [sym__array_aggregate] = STATE(497), + [sym_positional_array_aggregate] = STATE(497), + [sym_null_array_aggregate] = STATE(497), + [sym_named_array_aggregate] = STATE(497), + [sym__array_component_association_list] = STATE(1680), + [sym_array_component_association] = STATE(1120), + [sym_discrete_choice_list] = STATE(1673), + [sym_discrete_choice] = STATE(1286), + [sym_if_expression] = STATE(1694), + [sym_function_call] = STATE(486), + [sym_identifier] = ACTIONS(211), [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(219), - [sym_character_literal] = ACTIONS(221), - [sym_numeric_literal] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(227), - [sym_target_name] = ACTIONS(221), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), - [aux_sym_iterated_element_association_token1] = ACTIONS(235), - [aux_sym_relation_membership_token1] = ACTIONS(237), - [aux_sym_raise_expression_token1] = ACTIONS(239), - [aux_sym_factor_abs_token1] = ACTIONS(241), - [aux_sym_primary_null_token1] = ACTIONS(243), - [aux_sym_allocator_token1] = ACTIONS(245), - [aux_sym_declare_expression_token1] = ACTIONS(247), - [aux_sym_case_expression_token1] = ACTIONS(249), - [aux_sym_component_choice_list_token1] = ACTIONS(251), - [aux_sym_if_expression_token1] = ACTIONS(257), - }, - [31] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1145), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(331), - [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(333), - [aux_sym_package_specification_token3] = ACTIONS(405), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_expression_token3] = ACTIONS(405), - [aux_sym_expression_token4] = ACTIONS(405), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), + [sym_string_literal] = ACTIONS(213), + [sym_character_literal] = ACTIONS(215), + [sym_numeric_literal] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(221), + [sym_target_name] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [aux_sym_iterated_element_association_token1] = ACTIONS(229), + [aux_sym_relation_membership_token1] = ACTIONS(231), + [aux_sym_raise_expression_token1] = ACTIONS(233), + [aux_sym_factor_abs_token1] = ACTIONS(235), + [aux_sym_primary_null_token1] = ACTIONS(237), + [aux_sym_allocator_token1] = ACTIONS(239), + [aux_sym_declare_expression_token1] = ACTIONS(241), + [aux_sym_case_expression_token1] = ACTIONS(243), + [aux_sym_component_choice_list_token1] = ACTIONS(245), + [aux_sym_if_expression_token1] = ACTIONS(251), }, [32] = { - [sym__defining_identifier_list] = STATE(1663), - [sym__declarative_item] = STATE(483), - [sym__basic_declarative_item] = STATE(483), - [sym__basic_declaration] = STATE(483), - [sym__package_declaration] = STATE(483), - [sym_package_specification] = STATE(1626), - [sym_use_clause] = STATE(483), - [sym__proper_body] = STATE(483), - [sym_subprogram_body] = STATE(483), - [sym_package_body] = STATE(483), - [sym__type_declaration] = STATE(483), - [sym_full_type_declaration] = STATE(483), - [sym_private_type_declaration] = STATE(483), - [sym_private_extension_declaration] = STATE(483), - [sym_incomplete_type_declaration] = STATE(483), - [sym__aspect_clause] = STATE(483), - [sym_at_clause] = STATE(483), - [sym_attribute_definition_clause] = STATE(483), - [sym_body_stub] = STATE(483), - [sym_subprogram_body_stub] = STATE(417), - [sym_package_body_stub] = STATE(417), - [sym_task_body] = STATE(483), - [sym_task_body_stub] = STATE(417), - [sym_protected_type_declaration] = STATE(419), - [sym_single_protected_declaration] = STATE(426), - [sym_protected_body] = STATE(483), - [sym_protected_body_stub] = STATE(417), - [sym_enumeration_representation_clause] = STATE(483), - [sym_exception_declaration] = STATE(483), - [sym_function_specification] = STATE(1109), - [sym__generic_declaration] = STATE(483), - [sym_generic_formal_part] = STATE(907), - [sym_generic_subprogram_declaration] = STATE(483), - [sym_generic_package_declaration] = STATE(483), - [sym_generic_instantiation] = STATE(483), - [sym_null_procedure_declaration] = STATE(483), - [sym_number_declaration] = STATE(483), - [sym_object_declaration] = STATE(483), - [sym_single_task_declaration] = STATE(426), - [sym_task_type_declaration] = STATE(419), - [sym_overriding_indicator] = STATE(997), - [sym_procedure_specification] = STATE(1127), - [sym_record_representation_clause] = STATE(483), - [sym__renaming_declaration] = STATE(483), - [sym_object_renaming_declaration] = STATE(483), - [sym_exception_renaming_declaration] = STATE(483), - [sym_package_renaming_declaration] = STATE(483), - [sym_subprogram_renaming_declaration] = STATE(483), - [sym_generic_renaming_declaration] = STATE(483), - [sym_subprogram_declaration] = STATE(483), - [sym_expression_function_declaration] = STATE(483), - [sym__subprogram_specification] = STATE(1004), - [sym_subtype_declaration] = STATE(483), + [sym__defining_identifier_list] = STATE(1937), + [sym__declarative_item] = STATE(484), + [sym__basic_declarative_item] = STATE(484), + [sym__basic_declaration] = STATE(484), + [sym__package_declaration] = STATE(484), + [sym_package_specification] = STATE(1931), + [sym_use_clause] = STATE(484), + [sym__proper_body] = STATE(484), + [sym_subprogram_body] = STATE(484), + [sym_package_body] = STATE(484), + [sym__type_declaration] = STATE(484), + [sym_full_type_declaration] = STATE(484), + [sym_private_type_declaration] = STATE(484), + [sym_private_extension_declaration] = STATE(484), + [sym_incomplete_type_declaration] = STATE(484), + [sym__aspect_clause] = STATE(484), + [sym_at_clause] = STATE(484), + [sym_attribute_definition_clause] = STATE(484), + [sym_body_stub] = STATE(484), + [sym_subprogram_body_stub] = STATE(420), + [sym_package_body_stub] = STATE(420), + [sym_task_body] = STATE(484), + [sym_task_body_stub] = STATE(420), + [sym_protected_type_declaration] = STATE(283), + [sym_single_protected_declaration] = STATE(347), + [sym_protected_body] = STATE(484), + [sym_protected_body_stub] = STATE(420), + [sym_enumeration_representation_clause] = STATE(484), + [sym_exception_declaration] = STATE(484), + [sym_function_specification] = STATE(1103), + [sym__generic_declaration] = STATE(484), + [sym_generic_formal_part] = STATE(906), + [sym_generic_subprogram_declaration] = STATE(484), + [sym_generic_package_declaration] = STATE(484), + [sym_generic_instantiation] = STATE(484), + [sym_null_procedure_declaration] = STATE(484), + [sym_number_declaration] = STATE(484), + [sym_object_declaration] = STATE(484), + [sym_single_task_declaration] = STATE(347), + [sym_task_type_declaration] = STATE(283), + [sym_overriding_indicator] = STATE(1015), + [sym_procedure_specification] = STATE(1105), + [sym_record_representation_clause] = STATE(484), + [sym__renaming_declaration] = STATE(484), + [sym_object_renaming_declaration] = STATE(484), + [sym_exception_renaming_declaration] = STATE(484), + [sym_package_renaming_declaration] = STATE(484), + [sym_subprogram_renaming_declaration] = STATE(484), + [sym_generic_renaming_declaration] = STATE(484), + [sym_subprogram_declaration] = STATE(484), + [sym_expression_function_declaration] = STATE(484), + [sym__subprogram_specification] = STATE(993), + [sym_subtype_declaration] = STATE(484), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -12127,19 +12180,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [33] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1705), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1629), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12162,10 +12215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12196,19 +12249,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [34] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1561), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1935), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12231,10 +12284,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12265,221 +12318,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [35] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1595), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(331), - [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(333), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [36] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1628), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(331), - [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(333), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [37] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1614), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(331), - [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(333), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, - [38] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(73), [sym_null_statement] = STATE(25), [sym_pragma_g] = STATE(25), @@ -12505,10 +12351,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(25), [sym_extended_return_statement] = STATE(25), [sym_procedure_call_statement] = STATE(25), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(25), [sym_loop_statement] = STATE(25), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(25), [aux_sym__sequence_of_statements_repeat1] = STATE(25), [aux_sym__sequence_of_statements_repeat2] = STATE(73), @@ -12540,20 +12386,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [39] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1931), - [sym_loop_label] = STATE(952), + [36] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1585), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12576,10 +12422,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [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(333), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [37] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1651), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1369), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [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(333), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [38] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1525), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1369), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [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(333), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [39] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1902), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1369), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12610,19 +12663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [40] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1785), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1690), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12645,10 +12698,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12679,19 +12732,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [41] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1664), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1740), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12714,10 +12767,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12748,19 +12801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [42] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1919), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1809), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12783,10 +12836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12817,19 +12870,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [43] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1684), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1947), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12852,10 +12905,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12886,19 +12939,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [44] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1620), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1746), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12921,10 +12974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -12955,19 +13008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [45] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1693), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1576), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -12990,10 +13043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13024,19 +13077,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [46] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1597), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1914), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13059,10 +13112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13093,19 +13146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [47] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1888), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1887), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13128,10 +13181,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13162,19 +13215,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [48] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1517), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1710), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13197,10 +13250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13231,19 +13284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [49] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1790), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1851), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13266,10 +13319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13300,19 +13353,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [50] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1694), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1711), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13335,10 +13388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13369,19 +13422,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [51] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1724), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1610), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13404,10 +13457,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13438,19 +13491,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [52] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1857), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1873), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13473,10 +13526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13507,19 +13560,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [53] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1898), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1876), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13542,10 +13595,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13576,19 +13629,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [54] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1646), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1700), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13611,10 +13664,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13645,19 +13698,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [55] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1915), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1568), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13680,10 +13733,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13714,19 +13767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [56] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_handled_sequence_of_statements] = STATE(1900), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_handled_sequence_of_statements] = STATE(1607), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1348), + [sym__sequence_of_statements] = STATE(1369), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13749,10 +13802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13783,18 +13836,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [57] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1712), + [sym__sequence_of_statements] = STATE(1648), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13817,10 +13870,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13851,46 +13904,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [58] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_statement] = STATE(24), - [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1710), - [sym__simple_statement] = STATE(24), - [sym__statement] = STATE(24), - [sym__compound_statement] = STATE(24), - [sym__select_statement] = STATE(24), - [sym_asynchronous_select] = STATE(24), - [sym_conditional_entry_call] = STATE(24), - [sym_timed_entry_call] = STATE(24), - [sym_selective_accept] = STATE(24), - [sym_abort_statement] = STATE(24), - [sym_requeue_statement] = STATE(24), - [sym_accept_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_block_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__delay_statement] = STATE(24), - [sym_delay_until_statement] = STATE(24), - [sym_delay_relative_statement] = STATE(24), - [sym_simple_return_statement] = STATE(24), - [sym_extended_return_statement] = STATE(24), - [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(24), - [aux_sym__sequence_of_statements_repeat1] = STATE(24), + [sym_null_statement] = STATE(35), + [sym_pragma_g] = STATE(35), + [sym__sequence_of_statements] = STATE(1200), + [sym__simple_statement] = STATE(35), + [sym__statement] = STATE(35), + [sym__compound_statement] = STATE(35), + [sym__select_statement] = STATE(35), + [sym_asynchronous_select] = STATE(35), + [sym_conditional_entry_call] = STATE(35), + [sym_timed_entry_call] = STATE(35), + [sym_selective_accept] = STATE(35), + [sym_abort_statement] = STATE(35), + [sym_requeue_statement] = STATE(35), + [sym_accept_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_block_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_exit_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__delay_statement] = STATE(35), + [sym_delay_until_statement] = STATE(35), + [sym_delay_relative_statement] = STATE(35), + [sym_simple_return_statement] = STATE(35), + [sym_extended_return_statement] = STATE(35), + [sym_procedure_call_statement] = STATE(35), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(35), + [sym_loop_statement] = STATE(35), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(35), + [aux_sym__sequence_of_statements_repeat1] = STATE(35), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), @@ -13919,18 +13972,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [59] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1207), + [sym__sequence_of_statements] = STATE(1489), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -13953,10 +14006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -13987,18 +14040,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [60] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(75), + [sym_null_statement] = STATE(35), + [sym_pragma_g] = STATE(35), + [sym__sequence_of_statements] = STATE(1280), + [sym__simple_statement] = STATE(35), + [sym__statement] = STATE(35), + [sym__compound_statement] = STATE(35), + [sym__select_statement] = STATE(35), + [sym_asynchronous_select] = STATE(35), + [sym_conditional_entry_call] = STATE(35), + [sym_timed_entry_call] = STATE(35), + [sym_selective_accept] = STATE(35), + [sym_abort_statement] = STATE(35), + [sym_requeue_statement] = STATE(35), + [sym_accept_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_block_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_exit_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__delay_statement] = STATE(35), + [sym_delay_until_statement] = STATE(35), + [sym_delay_relative_statement] = STATE(35), + [sym_simple_return_statement] = STATE(35), + [sym_extended_return_statement] = STATE(35), + [sym_procedure_call_statement] = STATE(35), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(35), + [sym_loop_statement] = STATE(35), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(35), + [aux_sym__sequence_of_statements_repeat1] = STATE(35), + [aux_sym__sequence_of_statements_repeat2] = STATE(75), + [sym_identifier] = ACTIONS(331), + [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(333), + [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_exit_statement_token1] = ACTIONS(71), + [aux_sym_goto_statement_token1] = ACTIONS(73), + [aux_sym_delay_until_statement_token1] = ACTIONS(75), + [aux_sym_loop_statement_token1] = ACTIONS(77), + [aux_sym_iteration_scheme_token1] = ACTIONS(79), + }, + [61] = { + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1022), + [sym__sequence_of_statements] = STATE(991), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14021,10 +14142,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14054,87 +14175,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(77), [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, - [61] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(75), - [sym_null_statement] = STATE(38), - [sym_pragma_g] = STATE(38), - [sym__sequence_of_statements] = STATE(1235), - [sym__simple_statement] = STATE(38), - [sym__statement] = STATE(38), - [sym__compound_statement] = STATE(38), - [sym__select_statement] = STATE(38), - [sym_asynchronous_select] = STATE(38), - [sym_conditional_entry_call] = STATE(38), - [sym_timed_entry_call] = STATE(38), - [sym_selective_accept] = STATE(38), - [sym_abort_statement] = STATE(38), - [sym_requeue_statement] = STATE(38), - [sym_accept_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_block_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_exit_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__delay_statement] = STATE(38), - [sym_delay_until_statement] = STATE(38), - [sym_delay_relative_statement] = STATE(38), - [sym_simple_return_statement] = STATE(38), - [sym_extended_return_statement] = STATE(38), - [sym_procedure_call_statement] = STATE(38), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(38), - [sym_loop_statement] = STATE(38), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(38), - [aux_sym__sequence_of_statements_repeat1] = STATE(38), - [aux_sym__sequence_of_statements_repeat2] = STATE(75), - [sym_identifier] = ACTIONS(331), - [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(333), - [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_exit_statement_token1] = ACTIONS(71), - [aux_sym_goto_statement_token1] = ACTIONS(73), - [aux_sym_delay_until_statement_token1] = ACTIONS(75), - [aux_sym_loop_statement_token1] = ACTIONS(77), - [aux_sym_iteration_scheme_token1] = ACTIONS(79), - }, [62] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1553), + [sym__sequence_of_statements] = STATE(1555), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14157,10 +14210,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14191,18 +14244,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [63] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1480), + [sym__sequence_of_statements] = STATE(1814), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14225,10 +14278,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14259,18 +14312,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [64] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1699), + [sym__sequence_of_statements] = STATE(1659), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14293,10 +14346,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14327,46 +14380,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [65] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_statement] = STATE(38), - [sym_pragma_g] = STATE(38), - [sym__sequence_of_statements] = STATE(1242), - [sym__simple_statement] = STATE(38), - [sym__statement] = STATE(38), - [sym__compound_statement] = STATE(38), - [sym__select_statement] = STATE(38), - [sym_asynchronous_select] = STATE(38), - [sym_conditional_entry_call] = STATE(38), - [sym_timed_entry_call] = STATE(38), - [sym_selective_accept] = STATE(38), - [sym_abort_statement] = STATE(38), - [sym_requeue_statement] = STATE(38), - [sym_accept_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_block_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_exit_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__delay_statement] = STATE(38), - [sym_delay_until_statement] = STATE(38), - [sym_delay_relative_statement] = STATE(38), - [sym_simple_return_statement] = STATE(38), - [sym_extended_return_statement] = STATE(38), - [sym_procedure_call_statement] = STATE(38), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(38), - [sym_loop_statement] = STATE(38), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(38), - [aux_sym__sequence_of_statements_repeat1] = STATE(38), + [sym_null_statement] = STATE(24), + [sym_pragma_g] = STATE(24), + [sym__sequence_of_statements] = STATE(1633), + [sym__simple_statement] = STATE(24), + [sym__statement] = STATE(24), + [sym__compound_statement] = STATE(24), + [sym__select_statement] = STATE(24), + [sym_asynchronous_select] = STATE(24), + [sym_conditional_entry_call] = STATE(24), + [sym_timed_entry_call] = STATE(24), + [sym_selective_accept] = STATE(24), + [sym_abort_statement] = STATE(24), + [sym_requeue_statement] = STATE(24), + [sym_accept_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_block_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym__delay_statement] = STATE(24), + [sym_delay_until_statement] = STATE(24), + [sym_delay_relative_statement] = STATE(24), + [sym_simple_return_statement] = STATE(24), + [sym_extended_return_statement] = STATE(24), + [sym_procedure_call_statement] = STATE(24), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(24), + [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), @@ -14395,18 +14448,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [66] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1825), + [sym__sequence_of_statements] = STATE(1682), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14429,10 +14482,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14463,18 +14516,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [67] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1830), + [sym__sequence_of_statements] = STATE(1567), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14497,10 +14550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14531,18 +14584,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [68] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1939), + [sym__sequence_of_statements] = STATE(1729), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14565,10 +14618,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14599,18 +14652,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [69] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1668), + [sym__sequence_of_statements] = STATE(1234), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14633,10 +14686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14667,18 +14720,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [70] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1818), + [sym__sequence_of_statements] = STATE(1912), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14701,10 +14754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14735,18 +14788,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [71] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), [sym_label] = STATE(75), [sym_null_statement] = STATE(24), [sym_pragma_g] = STATE(24), - [sym__sequence_of_statements] = STATE(1656), + [sym__sequence_of_statements] = STATE(1906), [sym__simple_statement] = STATE(24), [sym__statement] = STATE(24), [sym__compound_statement] = STATE(24), @@ -14769,10 +14822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_return_statement] = STATE(24), [sym_extended_return_statement] = STATE(24), [sym_procedure_call_statement] = STATE(24), - [sym_function_call] = STATE(939), + [sym_function_call] = STATE(956), [sym_raise_statement] = STATE(24), [sym_loop_statement] = STATE(24), - [sym_iteration_scheme] = STATE(1581), + [sym_iteration_scheme] = STATE(1923), [sym_assignment_statement] = STATE(24), [aux_sym__sequence_of_statements_repeat1] = STATE(24), [aux_sym__sequence_of_statements_repeat2] = STATE(75), @@ -14803,111 +14856,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [72] = { - [sym_unary_adding_operator] = STATE(499), - [sym__name] = STATE(480), - [sym_selected_component] = STATE(507), - [sym_slice] = STATE(516), - [sym__attribute_reference] = STATE(516), - [sym__reduction_attribute_reference] = STATE(516), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(516), - [sym__subtype_indication] = STATE(1380), - [sym_range_g] = STATE(1393), - [sym_expression] = STATE(1409), + [sym_unary_adding_operator] = STATE(508), + [sym__name] = STATE(486), + [sym_selected_component] = STATE(519), + [sym_slice] = STATE(519), + [sym__attribute_reference] = STATE(519), + [sym__reduction_attribute_reference] = STATE(519), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(519), + [sym__subtype_indication] = STATE(1462), + [sym_range_g] = STATE(1474), + [sym_expression] = STATE(1385), [sym__relation] = STATE(566), [sym_relation_membership] = STATE(566), [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(602), - [sym_term] = STATE(511), - [sym__factor] = STATE(487), - [sym_factor_power] = STATE(487), - [sym_factor_abs] = STATE(487), - [sym_factor_not] = STATE(487), - [sym__parenthesized_expression] = STATE(490), - [sym__primary] = STATE(490), - [sym_primary_null] = STATE(490), - [sym_allocator] = STATE(490), - [sym_parameter_association] = STATE(1219), - [sym__conditional_expression] = STATE(1736), - [sym_quantified_expression] = STATE(1736), - [sym_declare_expression] = STATE(1736), - [sym_case_expression] = STATE(1736), - [sym_component_choice_list] = STATE(1734), - [sym__aggregate] = STATE(490), - [sym__delta_aggregate] = STATE(490), - [sym_extension_aggregate] = STATE(490), - [sym_record_delta_aggregate] = STATE(490), - [sym_array_delta_aggregate] = STATE(490), - [sym_record_aggregate] = STATE(490), - [sym_null_exclusion] = STATE(802), - [sym__discrete_range] = STATE(1271), - [sym__array_aggregate] = STATE(490), - [sym_positional_array_aggregate] = STATE(490), - [sym_null_array_aggregate] = STATE(490), - [sym_named_array_aggregate] = STATE(490), - [sym_if_expression] = STATE(1736), - [sym_function_call] = STATE(480), + [sym__simple_expression] = STATE(604), + [sym_term] = STATE(515), + [sym__factor] = STATE(489), + [sym_factor_power] = STATE(489), + [sym_factor_abs] = STATE(489), + [sym_factor_not] = STATE(489), + [sym__parenthesized_expression] = STATE(497), + [sym__primary] = STATE(497), + [sym_primary_null] = STATE(497), + [sym_allocator] = STATE(497), + [sym_parameter_association] = STATE(1282), + [sym__conditional_expression] = STATE(1571), + [sym_quantified_expression] = STATE(1571), + [sym_declare_expression] = STATE(1571), + [sym_case_expression] = STATE(1571), + [sym_component_choice_list] = STATE(1578), + [sym__aggregate] = STATE(497), + [sym__delta_aggregate] = STATE(497), + [sym_extension_aggregate] = STATE(497), + [sym_record_delta_aggregate] = STATE(497), + [sym_array_delta_aggregate] = STATE(497), + [sym_record_aggregate] = STATE(497), + [sym_null_exclusion] = STATE(780), + [sym__discrete_range] = STATE(1202), + [sym__array_aggregate] = STATE(497), + [sym_positional_array_aggregate] = STATE(497), + [sym_null_array_aggregate] = STATE(497), + [sym_named_array_aggregate] = STATE(497), + [sym_if_expression] = STATE(1571), + [sym_function_call] = STATE(486), [sym_identifier] = ACTIONS(417), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(419), [sym_character_literal] = ACTIONS(421), - [sym_numeric_literal] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(227), + [sym_numeric_literal] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(221), [sym_target_name] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), [aux_sym_iterated_element_association_token1] = ACTIONS(423), - [aux_sym_relation_membership_token1] = ACTIONS(237), - [aux_sym_raise_expression_token1] = ACTIONS(239), - [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_relation_membership_token1] = ACTIONS(231), + [aux_sym_raise_expression_token1] = ACTIONS(233), + [aux_sym_factor_abs_token1] = ACTIONS(235), [aux_sym_primary_null_token1] = ACTIONS(425), - [aux_sym_allocator_token1] = ACTIONS(245), + [aux_sym_allocator_token1] = ACTIONS(239), [anon_sym_LT_GT] = ACTIONS(427), - [aux_sym_declare_expression_token1] = ACTIONS(247), - [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_declare_expression_token1] = ACTIONS(241), + [aux_sym_case_expression_token1] = ACTIONS(243), [aux_sym_component_choice_list_token1] = ACTIONS(429), - [aux_sym_if_expression_token1] = ACTIONS(257), + [aux_sym_if_expression_token1] = ACTIONS(251), }, [73] = { - [sym__name] = STATE(939), - [sym_selected_component] = STATE(1028), - [sym_slice] = STATE(1028), - [sym__attribute_reference] = STATE(1028), - [sym__reduction_attribute_reference] = STATE(1028), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(1028), - [sym_loop_label] = STATE(952), - [sym_label] = STATE(517), - [sym_null_statement] = STATE(181), - [sym_pragma_g] = STATE(181), - [sym__simple_statement] = STATE(181), - [sym__compound_statement] = STATE(181), - [sym__select_statement] = STATE(181), - [sym_asynchronous_select] = STATE(181), - [sym_conditional_entry_call] = STATE(181), - [sym_timed_entry_call] = STATE(181), - [sym_selective_accept] = STATE(181), - [sym_abort_statement] = STATE(181), - [sym_requeue_statement] = STATE(181), - [sym_accept_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_block_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_exit_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym__delay_statement] = STATE(181), - [sym_delay_until_statement] = STATE(181), - [sym_delay_relative_statement] = STATE(181), - [sym_simple_return_statement] = STATE(181), - [sym_extended_return_statement] = STATE(181), - [sym_procedure_call_statement] = STATE(181), - [sym_function_call] = STATE(939), - [sym_raise_statement] = STATE(181), - [sym_loop_statement] = STATE(181), - [sym_iteration_scheme] = STATE(1581), - [sym_assignment_statement] = STATE(181), - [aux_sym__sequence_of_statements_repeat2] = STATE(517), + [sym__name] = STATE(956), + [sym_selected_component] = STATE(1054), + [sym_slice] = STATE(1054), + [sym__attribute_reference] = STATE(1054), + [sym__reduction_attribute_reference] = STATE(1054), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(1054), + [sym_loop_label] = STATE(966), + [sym_label] = STATE(521), + [sym_null_statement] = STATE(150), + [sym_pragma_g] = STATE(150), + [sym__simple_statement] = STATE(150), + [sym__compound_statement] = STATE(150), + [sym__select_statement] = STATE(150), + [sym_asynchronous_select] = STATE(150), + [sym_conditional_entry_call] = STATE(150), + [sym_timed_entry_call] = STATE(150), + [sym_selective_accept] = STATE(150), + [sym_abort_statement] = STATE(150), + [sym_requeue_statement] = STATE(150), + [sym_accept_statement] = STATE(150), + [sym_case_statement] = STATE(150), + [sym_block_statement] = STATE(150), + [sym_if_statement] = STATE(150), + [sym_exit_statement] = STATE(150), + [sym_goto_statement] = STATE(150), + [sym__delay_statement] = STATE(150), + [sym_delay_until_statement] = STATE(150), + [sym_delay_relative_statement] = STATE(150), + [sym_simple_return_statement] = STATE(150), + [sym_extended_return_statement] = STATE(150), + [sym_procedure_call_statement] = STATE(150), + [sym_function_call] = STATE(956), + [sym_raise_statement] = STATE(150), + [sym_loop_statement] = STATE(150), + [sym_iteration_scheme] = STATE(1923), + [sym_assignment_statement] = STATE(150), + [aux_sym__sequence_of_statements_repeat2] = STATE(521), [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(9), @@ -14915,15 +14968,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_target_name] = ACTIONS(9), [anon_sym_LBRACK] = ACTIONS(11), [aux_sym_iterated_element_association_token1] = ACTIONS(333), - [aux_sym_iterator_filter_token1] = ACTIONS(409), - [aux_sym_package_specification_token3] = ACTIONS(409), + [aux_sym_iterator_filter_token1] = ACTIONS(405), + [aux_sym_package_specification_token3] = ACTIONS(405), [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(409), + [aux_sym_pragma_g_token1] = ACTIONS(405), [aux_sym_if_expression_token1] = ACTIONS(59), [aux_sym_result_profile_token1] = ACTIONS(61), [aux_sym_asynchronous_select_token1] = ACTIONS(63), @@ -14937,71 +14990,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [74] = { - [sym_unary_adding_operator] = STATE(499), - [sym__name] = STATE(480), - [sym_selected_component] = STATE(528), - [sym__defining_identifier_list] = STATE(1718), - [sym_slice] = STATE(480), - [sym__attribute_reference] = STATE(480), - [sym__reduction_attribute_reference] = STATE(480), - [sym_value_sequence] = STATE(1651), - [sym_qualified_expression] = STATE(480), - [sym_range_g] = STATE(1739), - [sym_expression] = STATE(1409), + [sym_unary_adding_operator] = STATE(508), + [sym__name] = STATE(486), + [sym_selected_component] = STATE(486), + [sym__defining_identifier_list] = STATE(1570), + [sym_slice] = STATE(486), + [sym__attribute_reference] = STATE(486), + [sym__reduction_attribute_reference] = STATE(486), + [sym_value_sequence] = STATE(1932), + [sym_qualified_expression] = STATE(486), + [sym_range_g] = STATE(1582), + [sym_expression] = STATE(1385), [sym__relation] = STATE(566), [sym_relation_membership] = STATE(566), [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(602), - [sym_term] = STATE(511), - [sym__factor] = STATE(487), - [sym_factor_power] = STATE(487), - [sym_factor_abs] = STATE(487), - [sym_factor_not] = STATE(487), - [sym__parenthesized_expression] = STATE(490), - [sym__primary] = STATE(490), - [sym_primary_null] = STATE(490), - [sym_allocator] = STATE(490), - [sym_parameter_association] = STATE(1219), - [sym__conditional_expression] = STATE(1736), - [sym_quantified_expression] = STATE(1736), - [sym_declare_expression] = STATE(1736), - [sym_case_expression] = STATE(1736), - [sym_component_choice_list] = STATE(1734), - [sym__aggregate] = STATE(490), - [sym__delta_aggregate] = STATE(490), - [sym_extension_aggregate] = STATE(490), - [sym_record_delta_aggregate] = STATE(490), - [sym_array_delta_aggregate] = STATE(490), - [sym_record_aggregate] = STATE(490), - [sym__array_aggregate] = STATE(490), - [sym_positional_array_aggregate] = STATE(490), - [sym_null_array_aggregate] = STATE(490), - [sym_named_array_aggregate] = STATE(490), - [sym_parameter_specification] = STATE(1255), - [sym__parameter_specification_list] = STATE(1672), - [sym_if_expression] = STATE(1736), - [sym_function_call] = STATE(480), + [sym__simple_expression] = STATE(604), + [sym_term] = STATE(515), + [sym__factor] = STATE(489), + [sym_factor_power] = STATE(489), + [sym_factor_abs] = STATE(489), + [sym_factor_not] = STATE(489), + [sym__parenthesized_expression] = STATE(497), + [sym__primary] = STATE(497), + [sym_primary_null] = STATE(497), + [sym_allocator] = STATE(497), + [sym_parameter_association] = STATE(1282), + [sym__conditional_expression] = STATE(1571), + [sym_quantified_expression] = STATE(1571), + [sym_declare_expression] = STATE(1571), + [sym_case_expression] = STATE(1571), + [sym_component_choice_list] = STATE(1578), + [sym__aggregate] = STATE(497), + [sym__delta_aggregate] = STATE(497), + [sym_extension_aggregate] = STATE(497), + [sym_record_delta_aggregate] = STATE(497), + [sym_array_delta_aggregate] = STATE(497), + [sym_record_aggregate] = STATE(497), + [sym__array_aggregate] = STATE(497), + [sym_positional_array_aggregate] = STATE(497), + [sym_null_array_aggregate] = STATE(497), + [sym_named_array_aggregate] = STATE(497), + [sym_parameter_specification] = STATE(1270), + [sym__parameter_specification_list] = STATE(1577), + [sym_if_expression] = STATE(1571), + [sym_function_call] = STATE(486), [sym_identifier] = ACTIONS(431), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(433), [sym_character_literal] = ACTIONS(435), - [sym_numeric_literal] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(225), - [anon_sym_DASH] = ACTIONS(227), + [sym_numeric_literal] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(219), + [anon_sym_DASH] = ACTIONS(221), [sym_target_name] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), [aux_sym_iterated_element_association_token1] = ACTIONS(423), [aux_sym_relation_membership_token1] = ACTIONS(437), - [aux_sym_raise_expression_token1] = ACTIONS(239), - [aux_sym_factor_abs_token1] = ACTIONS(241), + [aux_sym_raise_expression_token1] = ACTIONS(233), + [aux_sym_factor_abs_token1] = ACTIONS(235), [aux_sym_primary_null_token1] = ACTIONS(425), - [aux_sym_allocator_token1] = ACTIONS(245), + [aux_sym_allocator_token1] = ACTIONS(239), [anon_sym_LT_GT] = ACTIONS(427), - [aux_sym_declare_expression_token1] = ACTIONS(247), - [aux_sym_case_expression_token1] = ACTIONS(249), + [aux_sym_declare_expression_token1] = ACTIONS(241), + [aux_sym_case_expression_token1] = ACTIONS(243), [aux_sym_component_choice_list_token1] = ACTIONS(429), - [aux_sym_if_expression_token1] = ACTIONS(257), + [aux_sym_if_expression_token1] = ACTIONS(251), }, }; @@ -15051,29 +15104,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(333), 1, aux_sym_iterated_element_association_token1, - STATE(952), 1, + STATE(966), 1, sym_loop_label, - STATE(1581), 1, + STATE(1923), 1, sym_iteration_scheme, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(517), 2, + STATE(521), 2, sym_label, aux_sym__sequence_of_statements_repeat2, - STATE(939), 2, + STATE(956), 2, sym__name, sym_function_call, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1028), 5, + STATE(1054), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(181), 26, + STATE(150), 26, sym_null_statement, sym_pragma_g, sym__simple_statement, @@ -15137,24 +15190,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - STATE(907), 1, + STATE(906), 1, sym_generic_formal_part, - STATE(995), 1, + STATE(1046), 1, sym__subprogram_specification, - STATE(1012), 1, + STATE(1047), 1, sym_overriding_indicator, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(1626), 1, + STATE(1931), 1, sym_package_specification, - STATE(1663), 1, + STATE(1937), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(283), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(426), 2, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(83), 34, @@ -15192,93 +15245,88 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [244] = 38, + [244] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, - sym_identifier, - ACTIONS(219), 1, - sym_string_literal, - ACTIONS(223), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_primary_null_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, + ACTIONS(241), 1, + aux_sym_declare_expression_token1, + ACTIONS(243), 1, + aux_sym_case_expression_token1, ACTIONS(251), 1, - aux_sym_component_choice_list_token1, - ACTIONS(451), 1, + aux_sym_if_expression_token1, + ACTIONS(423), 1, aux_sym_iterated_element_association_token1, - STATE(499), 1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(427), 1, + anon_sym_LT_GT, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(451), 1, + sym_identifier, + STATE(508), 1, sym_unary_adding_operator, - STATE(502), 1, - sym_selected_component, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, - sym_null_exclusion, - STATE(1088), 1, - sym_array_component_association, - STATE(1130), 1, + STATE(1282), 1, + sym_parameter_association, + STATE(1385), 1, sym_expression, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, - sym_iterated_element_association, - STATE(1309), 1, - sym__named_record_component_association, - STATE(1373), 1, - sym_range_g, - STATE(1375), 1, - sym__subtype_indication, - STATE(1534), 1, - sym_discrete_choice_list, STATE(1578), 1, - sym__array_component_association_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, sym_component_choice_list, - ACTIONS(221), 2, + STATE(1582), 1, + sym_range_g, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(435), 2, sym_character_literal, sym_target_name, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1574), 2, - sym_record_component_association_list, - sym__record_component_association_list_or_expression, STATE(566), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(264), 4, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(490), 14, + STATE(1571), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(486), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -15293,7 +15341,97 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [383] = 27, + [373] = 27, + 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(453), 1, + aux_sym_compilation_unit_token1, + ACTIONS(455), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(82), 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, + [490] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15328,24 +15466,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - STATE(907), 1, + STATE(906), 1, sym_generic_formal_part, - STATE(995), 1, + STATE(1046), 1, sym__subprogram_specification, - STATE(1012), 1, + STATE(1047), 1, sym_overriding_indicator, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(1626), 1, + STATE(1931), 1, sym_package_specification, - STATE(1663), 1, + STATE(1937), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(283), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(426), 2, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(83), 34, @@ -15383,89 +15521,181 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [500] = 34, + [607] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(247), 1, - aux_sym_declare_expression_token1, - ACTIONS(249), 1, - aux_sym_case_expression_token1, - ACTIONS(257), 1, - aux_sym_if_expression_token1, - ACTIONS(423), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(427), 1, - anon_sym_LT_GT, - ACTIONS(429), 1, - aux_sym_component_choice_list_token1, - ACTIONS(433), 1, - sym_string_literal, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(453), 1, + ACTIONS(457), 1, sym_identifier, - STATE(499), 1, + ACTIONS(460), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(463), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(468), 1, + aux_sym_package_specification_token1, + ACTIONS(471), 1, + aux_sym_use_clause_token2, + ACTIONS(474), 1, + aux_sym_relation_membership_token1, + ACTIONS(477), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(480), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(483), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(486), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(489), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(492), 1, + aux_sym_global_mode_token1, + ACTIONS(495), 1, + aux_sym_pragma_g_token1, + ACTIONS(498), 1, + aux_sym_subtype_declaration_token1, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + ACTIONS(466), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 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, + [722] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + sym_identifier, + ACTIONS(213), 1, + sym_string_literal, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(237), 1, + aux_sym_primary_null_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(245), 1, + aux_sym_component_choice_list_token1, + ACTIONS(501), 1, + aux_sym_iterated_element_association_token1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(528), 1, - sym_selected_component, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(1219), 1, - sym_parameter_association, - STATE(1409), 1, + STATE(780), 1, + sym_null_exclusion, + STATE(1120), 1, + sym_array_component_association, + STATE(1130), 1, sym_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1734), 1, - sym_component_choice_list, - STATE(1739), 1, + STATE(1257), 1, + sym_iterated_element_association, + STATE(1273), 1, + sym__named_record_component_association, + STATE(1286), 1, + sym_discrete_choice, + STATE(1410), 1, sym_range_g, - ACTIONS(435), 2, + STATE(1415), 1, + sym__subtype_indication, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1689), 1, + sym_component_choice_list, + STATE(1730), 1, + sym__array_component_association_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(215), 2, sym_character_literal, sym_target_name, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1733), 2, + sym_record_component_association_list, + sym__record_component_association_list_or_expression, STATE(566), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1736), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(480), 6, - sym__name, + STATE(263), 5, + sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -15480,58 +15710,149 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [631] = 26, + [859] = 27, 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(503), 1, + aux_sym_compilation_unit_token1, + ACTIONS(505), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 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, + [976] = 27, + 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(453), 1, + aux_sym_compilation_unit_token1, ACTIONS(455), 1, - sym_identifier, - ACTIONS(458), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(461), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(466), 1, - aux_sym_package_specification_token1, - ACTIONS(469), 1, - aux_sym_use_clause_token2, - ACTIONS(472), 1, - aux_sym_relation_membership_token1, - ACTIONS(475), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(478), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(481), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(484), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(487), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(490), 1, - aux_sym_global_mode_token1, - ACTIONS(493), 1, - aux_sym_pragma_g_token1, - ACTIONS(496), 1, - aux_sym_subtype_declaration_token1, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - ACTIONS(464), 2, - aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, - STATE(419), 2, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(426), 2, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(80), 34, @@ -15569,7 +15890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [746] = 27, + [1093] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15600,66 +15921,339 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - ACTIONS(499), 1, - aux_sym_compilation_unit_token1, + ACTIONS(507), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 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, + [1207] = 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(509), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(84), 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, + [1321] = 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(509), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 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, + [1435] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(211), 1, + sym_identifier, + ACTIONS(213), 1, + sym_string_literal, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(237), 1, + aux_sym_primary_null_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(245), 1, + aux_sym_component_choice_list_token1, ACTIONS(501), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(80), 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, - [863] = 27, + aux_sym_iterated_element_association_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(604), 1, + sym__simple_expression, + STATE(780), 1, + sym_null_exclusion, + STATE(967), 1, + sym_expression, + STATE(1120), 1, + sym_array_component_association, + STATE(1257), 1, + sym_iterated_element_association, + STATE(1273), 1, + sym__named_record_component_association, + STATE(1286), 1, + sym_discrete_choice, + STATE(1410), 1, + sym_range_g, + STATE(1415), 1, + sym__subtype_indication, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1680), 1, + sym__array_component_association_list, + STATE(1685), 1, + sym_record_component_association_list, + STATE(1689), 1, + sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(215), 2, + sym_character_literal, + sym_target_name, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [1571] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -15690,206 +16284,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - ACTIONS(503), 1, - aux_sym_compilation_unit_token1, ACTIONS(505), 1, aux_sym_package_specification_token3, - STATE(907), 1, + STATE(906), 1, sym_generic_formal_part, - STATE(995), 1, + STATE(1046), 1, sym__subprogram_specification, - STATE(1012), 1, + STATE(1047), 1, sym_overriding_indicator, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(1626), 1, + STATE(1931), 1, sym_package_specification, - STATE(1663), 1, + STATE(1937), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(283), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(81), 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, - [980] = 27, - 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(503), 1, - aux_sym_compilation_unit_token1, - ACTIONS(505), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(80), 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, - [1097] = 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(501), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(86), 34, @@ -15927,183 +16341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1211] = 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(507), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(80), 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, - [1325] = 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(509), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(80), 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, - [1439] = 26, + [1685] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -16136,24 +16374,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(505), 1, aux_sym_package_specification_token3, - STATE(907), 1, + STATE(906), 1, sym_generic_formal_part, - STATE(995), 1, + STATE(1046), 1, sym__subprogram_specification, - STATE(1012), 1, + STATE(1047), 1, sym_overriding_indicator, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(1626), 1, + STATE(1931), 1, sym_package_specification, - STATE(1663), 1, + STATE(1937), 1, sym__defining_identifier_list, - STATE(419), 2, + STATE(283), 2, sym_protected_type_declaration, sym_task_type_declaration, - STATE(426), 2, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(80), 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, + [1799] = 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(81), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(201), 1, + sym_identifier, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(441), 1, + aux_sym_package_specification_token1, + ACTIONS(447), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(449), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(455), 1, + aux_sym_package_specification_token3, + STATE(906), 1, + sym_generic_formal_part, + STATE(1046), 1, + sym__subprogram_specification, + STATE(1047), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1931), 1, + sym_package_specification, + STATE(1937), 1, + sym__defining_identifier_list, + STATE(283), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, STATE(89), 34, @@ -16191,306 +16517,30 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym_package_specification_repeat1, - [1553] = 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(509), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(85), 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, - [1667] = 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(81), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(201), 1, - sym_identifier, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(441), 1, - aux_sym_package_specification_token1, - ACTIONS(447), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(449), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(501), 1, - aux_sym_package_specification_token3, - STATE(907), 1, - sym_generic_formal_part, - STATE(995), 1, - sym__subprogram_specification, - STATE(1012), 1, - sym_overriding_indicator, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(1626), 1, - sym_package_specification, - STATE(1663), 1, - sym__defining_identifier_list, - STATE(419), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(80), 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, - [1781] = 38, + [1913] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, - sym_identifier, + sym_numeric_literal, ACTIONS(219), 1, - sym_string_literal, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(243), 1, - aux_sym_primary_null_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(251), 1, - aux_sym_component_choice_list_token1, - ACTIONS(451), 1, - aux_sym_iterated_element_association_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(502), 1, - sym_selected_component, - STATE(511), 1, - sym_term, - STATE(602), 1, - sym__simple_expression, - STATE(802), 1, - sym_null_exclusion, - STATE(942), 1, - sym_expression, - STATE(1088), 1, - sym_array_component_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, - sym_iterated_element_association, - STATE(1309), 1, - sym__named_record_component_association, - STATE(1373), 1, - sym_range_g, - STATE(1375), 1, - sym__subtype_indication, - STATE(1534), 1, - sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, - sym_component_choice_list, - STATE(1879), 1, - sym_record_component_association_list, - STATE(1922), 1, - sym__array_component_association_list, - ACTIONS(221), 2, - sym_character_literal, - sym_target_name, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(264), 4, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(490), 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, - [1919] = 35, - ACTIONS(3), 1, - sym_comment, ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(451), 1, + ACTIONS(501), 1, aux_sym_iterated_element_association_token1, ACTIONS(511), 1, sym_identifier, @@ -16500,36 +16550,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(929), 1, + STATE(964), 1, sym_expression, - STATE(1088), 1, + STATE(1120), 1, sym_array_component_association, - STATE(1260), 1, + STATE(1286), 1, sym_discrete_choice, - STATE(1373), 1, + STATE(1410), 1, sym_range_g, - STATE(1375), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1382), 1, + STATE(1427), 1, sym_iterated_element_association, - STATE(1534), 1, - sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1945), 1, + STATE(1665), 1, sym__array_component_association_list, - STATE(480), 2, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, sym__name, sym_function_call, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -16537,18 +16587,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16563,30 +16613,30 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2050] = 34, + [2044] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(451), 1, + ACTIONS(501), 1, aux_sym_iterated_element_association_token1, ACTIONS(511), 1, sym_identifier, @@ -16594,36 +16644,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(929), 1, + STATE(1013), 1, sym_expression, - STATE(1088), 1, + STATE(1120), 1, sym_array_component_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, + STATE(1257), 1, sym_iterated_element_association, - STATE(1373), 1, + STATE(1286), 1, + sym_discrete_choice, + STATE(1410), 1, sym_range_g, - STATE(1375), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1534), 1, - sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1945), 1, + STATE(1665), 1, sym__array_component_association_list, - STATE(480), 2, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, sym__name, sym_function_call, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -16631,18 +16681,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16657,30 +16707,30 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2178] = 34, + [2172] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(451), 1, + ACTIONS(501), 1, aux_sym_iterated_element_association_token1, ACTIONS(511), 1, sym_identifier, @@ -16688,36 +16738,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1025), 1, + STATE(964), 1, sym_expression, - STATE(1088), 1, + STATE(1120), 1, sym_array_component_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, + STATE(1257), 1, sym_iterated_element_association, - STATE(1373), 1, + STATE(1286), 1, + sym_discrete_choice, + STATE(1410), 1, sym_range_g, - STATE(1375), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1534), 1, - sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1945), 1, + STATE(1665), 1, sym__array_component_association_list, - STATE(480), 2, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, sym__name, sym_function_call, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -16725,18 +16775,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16751,64 +16801,65 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2306] = 32, + [2300] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(451), 1, + ACTIONS(501), 1, aux_sym_iterated_element_association_token1, ACTIONS(511), 1, sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1088), 1, + STATE(1120), 1, sym_array_component_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, + STATE(1138), 1, + sym_expression, + STATE(1257), 1, sym_iterated_element_association, - STATE(1375), 1, + STATE(1286), 1, + sym_discrete_choice, + STATE(1410), 1, + sym_range_g, + STATE(1415), 1, sym__subtype_indication, - STATE(1534), 1, + STATE(1673), 1, sym_discrete_choice_list, - STATE(1621), 1, + STATE(1680), 1, sym__array_component_association_list, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(480), 2, + STATE(486), 2, sym__name, sym_function_call, - STATE(1373), 2, - sym_range_g, - sym_expression, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -16816,18 +16867,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16842,154 +16893,64 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2429] = 33, + [2425] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(451), 1, + ACTIONS(501), 1, aux_sym_iterated_element_association_token1, ACTIONS(511), 1, sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1088), 1, + STATE(1120), 1, sym_array_component_association, - STATE(1134), 1, - sym_expression, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, + STATE(1257), 1, sym_iterated_element_association, - STATE(1373), 1, - sym_range_g, - STATE(1375), 1, + STATE(1286), 1, + sym_discrete_choice, + STATE(1415), 1, sym__subtype_indication, - STATE(1534), 1, + STATE(1673), 1, sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(1922), 1, + STATE(1724), 1, sym__array_component_association_list, - STATE(480), 2, - sym__name, - sym_function_call, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [2554] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(451), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(517), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(602), 1, - sym__simple_expression, - STATE(802), 1, - sym_null_exclusion, - STATE(1253), 1, - sym_array_component_association, - STATE(1260), 1, - sym_discrete_choice, - STATE(1281), 1, - sym_iterated_element_association, - STATE(1375), 1, - sym__subtype_indication, - STATE(1534), 1, - sym_discrete_choice_list, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(480), 2, + STATE(486), 2, sym__name, sym_function_call, - STATE(1373), 2, + STATE(1410), 2, sym_range_g, sym_expression, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -16997,18 +16958,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17023,28 +16984,28 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2674] = 28, + [2548] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, - ACTIONS(249), 1, + ACTIONS(243), 1, aux_sym_case_expression_token1, - ACTIONS(257), 1, + ACTIONS(251), 1, aux_sym_if_expression_token1, ACTIONS(423), 1, aux_sym_iterated_element_association_token1, @@ -17054,19 +17015,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(519), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1173), 1, + STATE(1330), 1, sym_pragma_argument_association, - STATE(1453), 1, + STATE(1354), 1, sym_expression, - STATE(1610), 1, + STATE(1632), 1, sym__aspect_mark, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -17076,17 +17037,17 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(1607), 4, + STATE(1630), 4, sym__conditional_quantified_expression, sym_quantified_expression, sym_case_expression, sym_if_expression, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -17094,7 +17055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17109,28 +17070,117 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2788] = 27, + [2662] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(231), 1, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, ACTIONS(233), 1, - aux_sym_chunk_specification_token1, - ACTIONS(239), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, - ACTIONS(253), 1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(501), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(604), 1, + sym__simple_expression, + STATE(780), 1, + sym_null_exclusion, + STATE(1257), 1, + sym_iterated_element_association, + STATE(1286), 1, + sym_discrete_choice, + STATE(1336), 1, + sym_array_component_association, + STATE(1415), 1, + sym__subtype_indication, + STATE(1673), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1410), 2, + sym_range_g, + sym_expression, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [2782] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(247), 1, aux_sym_global_mode_token1, - ACTIONS(255), 1, + ACTIONS(249), 1, aux_sym_non_empty_mode_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -17140,17 +17190,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(525), 1, anon_sym_LPAREN, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(830), 1, + STATE(836), 1, sym_non_empty_mode, - STATE(1024), 1, + STATE(1048), 1, sym_global_mode, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -17160,16 +17210,16 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(1027), 3, + STATE(1049), 3, sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -17177,7 +17227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17192,26 +17242,192 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [2898] = 29, + [2892] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(243), 1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(245), 1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(604), 1, + sym__simple_expression, + STATE(780), 1, + sym_null_exclusion, + STATE(1286), 1, + sym_discrete_choice, + STATE(1415), 1, + sym__subtype_indication, + STATE(1775), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1410), 2, + sym_range_g, + sym_expression, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [3003] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(517), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(604), 1, + sym__simple_expression, + STATE(780), 1, + sym_null_exclusion, + STATE(1286), 1, + sym_discrete_choice, + STATE(1415), 1, + sym__subtype_indication, + STATE(1524), 1, + sym_discrete_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1410), 2, + sym_range_g, + sym_expression, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [3114] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(237), 1, + aux_sym_primary_null_token1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(429), 1, aux_sym_component_choice_list_token1, @@ -17219,49 +17435,48 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(453), 1, + ACTIONS(451), 1, sym_identifier, ACTIONS(527), 1, aux_sym_attribute_designator_token2, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1309), 1, + STATE(1273), 1, sym__named_record_component_association, - STATE(1387), 1, + STATE(1357), 1, sym_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, + STATE(1689), 1, sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(1810), 2, + STATE(1926), 2, sym_record_component_association_list, sym__record_component_association_list_or_expression, STATE(566), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 6, + STATE(275), 7, sym__name, + sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17276,26 +17491,26 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3011] = 28, + [3225] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -17303,29 +17518,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1260), 1, + STATE(1286), 1, sym_discrete_choice, - STATE(1375), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1791), 1, + STATE(1957), 1, sym_discrete_choice_list, - STATE(480), 2, + STATE(486), 2, sym__name, sym_function_call, - STATE(1373), 2, + STATE(1410), 2, sym_range_g, sym_expression, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -17333,18 +17548,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17359,26 +17574,108 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3122] = 28, + [3336] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(529), 1, + sym_identifier, + ACTIONS(531), 1, + sym_string_literal, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(604), 1, + sym__simple_expression, + STATE(780), 1, + sym_null_exclusion, + STATE(1190), 1, + sym_discriminant_association, + STATE(1461), 1, + sym_expression, + STATE(1462), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(421), 2, + sym_character_literal, + sym_target_name, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1202), 2, + sym_range_g, + sym__discrete_range, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(519), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [3446] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -17386,29 +17683,27 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(602), 1, + STATE(604), 1, sym__simple_expression, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1260), 1, + STATE(1402), 1, sym_discrete_choice, - STATE(1375), 1, + STATE(1415), 1, sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1759), 1, - sym_discrete_choice_list, - STATE(480), 2, + STATE(486), 2, sym__name, sym_function_call, - STATE(1373), 2, + STATE(1410), 2, sym_range_g, sym_expression, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -17416,18 +17711,18 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17442,188 +17737,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3233] = 28, + [3554] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(517), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(602), 1, - sym__simple_expression, - STATE(802), 1, - sym_null_exclusion, - STATE(1260), 1, - sym_discrete_choice, - STATE(1375), 1, - sym__subtype_indication, - STATE(1499), 1, - sym_discrete_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1373), 2, - sym_range_g, - sym_expression, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [3344] = 27, - ACTIONS(3), 1, - sym_comment, ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(517), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(602), 1, - sym__simple_expression, - STATE(802), 1, - sym_null_exclusion, - STATE(1375), 1, - sym__subtype_indication, - STATE(1391), 1, - sym_discrete_choice, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1373), 2, - sym_range_g, - sym_expression, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [3452] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -17635,24 +17766,22 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(453), 1, + ACTIONS(451), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1409), 1, + STATE(1385), 1, sym_expression, - STATE(1426), 1, + STATE(1466), 1, sym_parameter_association, - STATE(1651), 1, - sym_value_sequence, - STATE(1734), 1, + STATE(1578), 1, sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 2, sym_character_literal, sym_target_name, @@ -17660,19 +17789,20 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 6, + STATE(275), 7, sym__name, + sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17687,24 +17817,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3561] = 27, + [3661] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -17714,191 +17844,34 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(453), 1, + ACTIONS(451), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1340), 1, - sym__named_record_component_association, - STATE(1489), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, + STATE(1689), 1, sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [3667] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_component_choice_list_token1, - ACTIONS(433), 1, - sym_string_literal, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(453), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, - sym_component_choice_list, - ACTIONS(521), 2, - sym_character_literal, - sym_target_name, - STATE(1211), 2, + STATE(1318), 2, sym_expression, sym__named_record_component_association, STATE(566), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [3771] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(529), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1255), 1, - sym_parameter_specification, - STATE(1651), 1, - sym_value_sequence, - STATE(1672), 1, - sym__parameter_specification_list, - STATE(1679), 1, - sym_expression, - STATE(1718), 1, - sym__defining_identifier_list, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -17906,7 +17879,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17921,279 +17894,47 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3873] = 26, + [3763] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(429), 1, - aux_sym_component_choice_list_token1, - ACTIONS(433), 1, - sym_string_literal, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(453), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, - sym_component_choice_list, - ACTIONS(521), 2, - sym_character_literal, - sym_target_name, - STATE(1340), 2, - sym_expression, - sym__named_record_component_association, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [3977] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(433), 1, - sym_string_literal, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(453), 1, - sym_identifier, - ACTIONS(531), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(528), 1, - sym_selected_component, - STATE(1107), 1, - sym_expression, - STATE(1211), 1, - sym__named_record_component_association, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, - sym_component_choice_list, - ACTIONS(521), 2, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [4083] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, ACTIONS(533), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1255), 1, + STATE(531), 1, + sym__simple_expression, + STATE(1270), 1, sym_parameter_specification, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1672), 1, - sym__parameter_specification_list, - STATE(1718), 1, + STATE(1570), 1, sym__defining_identifier_list, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1490), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [4186] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(537), 1, - sym_identifier, - ACTIONS(539), 1, - anon_sym_SEMI, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1421), 1, - sym_extended_return_object_declaration, - STATE(1651), 1, - sym_value_sequence, - STATE(1707), 1, + STATE(1577), 1, + sym__parameter_specification_list, + STATE(1688), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -18202,12 +17943,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -18215,7 +17956,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18230,58 +17971,518 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4285] = 26, + [3865] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(541), 1, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(451), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1192), 1, - sym_index_subtype_definition, - STATE(1518), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, + STATE(1485), 1, + sym_expression, + STATE(1486), 1, + sym__named_record_component_association, + STATE(1689), 1, + sym_component_choice_list, + STATE(1932), 1, sym_value_sequence, - STATE(1669), 1, - sym__index_subtype_definition_list, - STATE(1670), 1, - sym__discrete_subtype_definition_list, - STATE(677), 2, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [3969] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(451), 1, + sym_identifier, + ACTIONS(535), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1108), 1, + sym_expression, + STATE(1318), 1, + sym__named_record_component_association, + STATE(1689), 1, + sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [4073] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(433), 1, + sym_string_literal, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(451), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1689), 1, + sym_component_choice_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 2, + sym_character_literal, + sym_target_name, + STATE(1486), 2, + sym_expression, + sym__named_record_component_association, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [4175] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(537), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(780), 1, + sym_null_exclusion, + STATE(937), 1, + sym__subtype_indication, + STATE(1270), 1, + sym_parameter_specification, + STATE(1520), 1, + sym__simple_expression, + STATE(1570), 1, + sym__defining_identifier_list, + STATE(1577), 1, + sym__parameter_specification_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, sym__name, sym_function_call, - STATE(1193), 2, + STATE(1617), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(543), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [4278] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(519), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1354), 1, + sym_expression, + STATE(1375), 1, + sym_pragma_argument_association, + STATE(1632), 1, + sym__aspect_mark, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [4377] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(543), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1412), 1, + sym_extended_return_object_declaration, + STATE(1839), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [4476] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(545), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(780), 1, + sym_null_exclusion, + STATE(937), 1, + sym__subtype_indication, + STATE(1317), 1, + sym_index_subtype_definition, + STATE(1520), 1, + sym__simple_expression, + STATE(1885), 1, + sym__index_subtype_definition_list, + STATE(1888), 1, + sym__discrete_subtype_definition_list, + STATE(1932), 1, + sym_value_sequence, + STATE(697), 2, + sym__name, + sym_function_call, + STATE(1235), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(547), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18292,7 +18493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18307,69 +18508,69 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4388] = 26, + [4579] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(533), 1, + ACTIONS(537), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(934), 1, + STATE(937), 1, sym__subtype_indication, - STATE(1255), 1, + STATE(1270), 1, sym_parameter_specification, - STATE(1518), 1, + STATE(1520), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1672), 1, - sym__parameter_specification_list, - STATE(1718), 1, + STATE(1570), 1, sym__defining_identifier_list, - STATE(480), 2, + STATE(1577), 1, + sym__parameter_specification_list, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, sym__name, sym_function_call, - STATE(1567), 2, + STATE(1871), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18384,135 +18585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [4491] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(519), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1385), 1, - sym_pragma_argument_association, - STATE(1453), 1, - sym_expression, - STATE(1610), 1, - sym__aspect_mark, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [4590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(547), 1, - sym_identifier, - ACTIONS(545), 47, - ts_builtin_sym_end, - 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_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, - [4646] = 3, + [4682] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(551), 1, @@ -18565,153 +18638,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4702] = 23, + [4738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(553), 1, - anon_sym_LT_GT, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1505), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [4798] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, ACTIONS(555), 1, - anon_sym_LT_GT, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1509), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, + sym_identifier, + ACTIONS(553), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [4894] = 3, + 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_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, + [4794] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(559), 1, @@ -18764,7 +18744,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [4950] = 3, + [4850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(563), 1, @@ -18817,7 +18797,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5006] = 3, + [4906] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(567), 1, @@ -18870,7 +18850,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5062] = 3, + [4962] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(571), 1, @@ -18923,7 +18903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5118] = 3, + [5018] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(575), 1, @@ -18976,24 +18956,501 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5174] = 23, + [5074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(579), 1, + sym_identifier, + ACTIONS(577), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(239), 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_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(241), 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_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_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, + [5130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(583), 1, + sym_identifier, + ACTIONS(581), 47, + ts_builtin_sym_end, + 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_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, + [5186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(587), 1, + sym_identifier, + ACTIONS(585), 47, + ts_builtin_sym_end, + 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_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, + [5242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(591), 1, + sym_identifier, + ACTIONS(589), 47, + ts_builtin_sym_end, + 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_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, + [5298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 1, + sym_identifier, + ACTIONS(593), 47, + ts_builtin_sym_end, + 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_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, + [5354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + sym_identifier, + ACTIONS(597), 47, + ts_builtin_sym_end, + 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_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, + [5410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(601), 47, + ts_builtin_sym_end, + 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_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, + [5466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 1, + sym_identifier, + ACTIONS(605), 47, + ts_builtin_sym_end, + 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_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, + [5522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(611), 1, + sym_identifier, + ACTIONS(609), 47, + ts_builtin_sym_end, + 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_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, + [5578] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -19001,17 +19458,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - ACTIONS(577), 1, + ACTIONS(613), 1, aux_sym_component_choice_list_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1301), 1, + STATE(1287), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -19021,12 +19478,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -19034,7 +19491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19049,484 +19506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [5270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(581), 1, - sym_identifier, - ACTIONS(579), 47, - ts_builtin_sym_end, - 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_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, - [5326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(585), 1, - sym_identifier, - ACTIONS(583), 47, - ts_builtin_sym_end, - 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_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, - [5382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(589), 1, - sym_identifier, - ACTIONS(587), 47, - ts_builtin_sym_end, - 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_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, - [5438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(591), 47, - ts_builtin_sym_end, - 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_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, - [5494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 1, - sym_identifier, - ACTIONS(595), 47, - ts_builtin_sym_end, - 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_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, - [5550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(601), 1, - sym_identifier, - ACTIONS(599), 47, - ts_builtin_sym_end, - 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_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, - [5606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(603), 47, - ts_builtin_sym_end, - 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_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, - [5662] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, - sym_identifier, - ACTIONS(607), 47, - ts_builtin_sym_end, - 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_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, - [5718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(613), 1, - sym_identifier, - ACTIONS(611), 47, - ts_builtin_sym_end, - 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_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, - [5774] = 3, + [5674] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(617), 1, @@ -19579,7 +19559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5830] = 3, + [5730] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(621), 1, @@ -19632,7 +19612,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5886] = 3, + [5786] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(625), 1, @@ -19685,7 +19665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5942] = 3, + [5842] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(629), 1, @@ -19738,7 +19718,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [5998] = 3, + [5898] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(633), 1, @@ -19791,7 +19771,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6054] = 3, + [5954] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(637), 1, @@ -19844,7 +19824,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6110] = 3, + [6010] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(641), 1, @@ -19897,7 +19877,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6166] = 3, + [6066] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(645), 1, @@ -19950,231 +19930,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6222] = 23, + [6122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(647), 1, - anon_sym_LT_GT, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1682), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [6318] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, ACTIONS(649), 1, - anon_sym_LT_GT, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1683), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [6414] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, sym_identifier, - ACTIONS(651), 1, - anon_sym_LT_GT, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1388), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [6510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(655), 1, - sym_identifier, - ACTIONS(653), 47, + ACTIONS(647), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20222,12 +19983,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6566] = 3, + [6178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(659), 1, + ACTIONS(653), 1, sym_identifier, - ACTIONS(657), 47, + ACTIONS(651), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20275,12 +20036,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6622] = 3, + [6234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(663), 1, + ACTIONS(657), 1, sym_identifier, - ACTIONS(661), 47, + ACTIONS(655), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20328,12 +20089,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6678] = 3, + [6290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(667), 1, + ACTIONS(661), 1, sym_identifier, - ACTIONS(665), 47, + ACTIONS(659), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -20381,80 +20142,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6734] = 23, + [6346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, + ACTIONS(665), 1, sym_identifier, + ACTIONS(663), 47, + ts_builtin_sym_end, + 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_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, + [6402] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(669), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1247), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, + sym_identifier, + ACTIONS(667), 47, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [6830] = 3, + 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_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, + [6458] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(673), 1, @@ -20507,660 +20301,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [6886] = 23, + [6514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(677), 1, + sym_identifier, + ACTIONS(675), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(239), 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_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(241), 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_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_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, + [6570] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(675), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1247), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [6982] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(679), 1, sym_identifier, - ACTIONS(677), 47, - ts_builtin_sym_end, + ACTIONS(681), 1, 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_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, - [7038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(683), 1, - sym_identifier, - ACTIONS(681), 47, - ts_builtin_sym_end, - 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_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, - [7094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(687), 1, - sym_identifier, - ACTIONS(685), 47, - ts_builtin_sym_end, - 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_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, - [7150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(691), 1, - sym_identifier, - ACTIONS(689), 47, - ts_builtin_sym_end, - 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_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, - [7206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(695), 1, - sym_identifier, - ACTIONS(693), 47, - ts_builtin_sym_end, - 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_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, - [7262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(699), 1, - sym_identifier, - ACTIONS(697), 47, - ts_builtin_sym_end, - 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_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, - [7318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(703), 1, - sym_identifier, - ACTIONS(701), 47, - ts_builtin_sym_end, - 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_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, - [7374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(707), 1, - sym_identifier, - ACTIONS(705), 47, - ts_builtin_sym_end, - 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_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, - [7430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(711), 1, - sym_identifier, - ACTIONS(709), 47, - ts_builtin_sym_end, - 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_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, - [7486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - sym_identifier, - ACTIONS(713), 47, - ts_builtin_sym_end, - 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_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, - [7542] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(717), 1, - anon_sym_LT_GT, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1251), 1, + STATE(1461), 1, sym_expression, - STATE(1651), 1, + STATE(1475), 1, + sym_discriminant_association, + STATE(1932), 1, sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, + ACTIONS(521), 2, sym_character_literal, sym_target_name, STATE(566), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -21168,7 +20413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21183,7 +20428,577 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7638] = 3, + [6668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(685), 1, + sym_identifier, + ACTIONS(683), 47, + ts_builtin_sym_end, + 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_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, + [6724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(689), 1, + sym_identifier, + ACTIONS(687), 47, + ts_builtin_sym_end, + 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_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, + [6780] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(691), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1194), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [6876] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(693), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1194), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [6972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(697), 1, + sym_identifier, + ACTIONS(695), 47, + ts_builtin_sym_end, + 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_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, + [7028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(701), 1, + sym_identifier, + ACTIONS(699), 47, + ts_builtin_sym_end, + 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_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, + [7084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(705), 1, + sym_identifier, + ACTIONS(703), 47, + ts_builtin_sym_end, + 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_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, + [7140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(709), 1, + sym_identifier, + ACTIONS(707), 47, + ts_builtin_sym_end, + 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_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, + [7196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(711), 47, + ts_builtin_sym_end, + 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_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, + [7252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(715), 47, + ts_builtin_sym_end, + 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_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, + [7308] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(721), 1, @@ -21236,7 +21051,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7694] = 3, + [7364] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(725), 1, @@ -21289,7 +21104,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7750] = 3, + [7420] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(729), 1, @@ -21342,24 +21157,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7806] = 23, + [7476] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -21368,17 +21183,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(523), 1, sym_identifier, ACTIONS(731), 1, - aux_sym_delay_until_statement_token2, - STATE(499), 1, + anon_sym_LT_GT, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1815), 1, + STATE(1511), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -21387,12 +21202,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -21400,7 +21215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21415,7 +21230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [7902] = 3, + [7572] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(735), 1, @@ -21468,12 +21283,231 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [7958] = 3, + [7628] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(737), 1, + aux_sym_component_choice_list_token1, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1194), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [7724] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(739), 1, + anon_sym_LT_GT, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1470), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [7820] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(737), 47, + ACTIONS(741), 1, + anon_sym_LT_GT, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1699), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [7916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(745), 1, + sym_identifier, + ACTIONS(743), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -21521,113 +21555,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8014] = 3, + [7972] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(743), 1, - sym_identifier, - ACTIONS(741), 47, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, 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, + ACTIONS(233), 1, aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 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_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_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, - [8070] = 3, - ACTIONS(3), 1, - sym_comment, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, ACTIONS(747), 1, - sym_identifier, - ACTIONS(745), 47, - ts_builtin_sym_end, + aux_sym_delay_until_statement_token2, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1816), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, 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_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, - [8126] = 3, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [8068] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(751), 1, @@ -21680,24 +21681,448 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8182] = 23, + [8124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(755), 1, + sym_identifier, + ACTIONS(753), 47, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, anon_sym_LBRACK, - ACTIONS(239), 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_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_relation_membership_token1, aux_sym_raise_expression_token1, - ACTIONS(241), 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_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_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, + [8180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + sym_identifier, + ACTIONS(757), 47, + ts_builtin_sym_end, + 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_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, + [8236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(763), 1, + sym_identifier, + ACTIONS(761), 47, + ts_builtin_sym_end, + 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_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, + [8292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(767), 1, + sym_identifier, + ACTIONS(765), 47, + ts_builtin_sym_end, + 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_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, + [8348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(771), 1, + sym_identifier, + ACTIONS(769), 47, + ts_builtin_sym_end, + 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_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, + [8404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(775), 1, + sym_identifier, + ACTIONS(773), 47, + ts_builtin_sym_end, + 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_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, + [8460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(779), 1, + sym_identifier, + ACTIONS(777), 47, + ts_builtin_sym_end, + 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_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, + [8516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(783), 1, + sym_identifier, + ACTIONS(781), 47, + ts_builtin_sym_end, + 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_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, + [8572] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -21705,17 +22130,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - ACTIONS(753), 1, + ACTIONS(785), 1, anon_sym_LT_GT, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1427), 1, + STATE(1698), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -21725,12 +22150,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -21738,7 +22163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21753,431 +22178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [8278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(757), 1, - sym_identifier, - ACTIONS(755), 47, - ts_builtin_sym_end, - 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_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, - [8334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(761), 1, - sym_identifier, - ACTIONS(759), 47, - ts_builtin_sym_end, - 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_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, - [8390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(765), 1, - sym_identifier, - ACTIONS(763), 47, - ts_builtin_sym_end, - 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_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, - [8446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(769), 1, - sym_identifier, - ACTIONS(767), 47, - ts_builtin_sym_end, - 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_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, - [8502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(773), 1, - sym_identifier, - ACTIONS(771), 47, - ts_builtin_sym_end, - 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_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, - [8558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(777), 1, - sym_identifier, - ACTIONS(775), 47, - ts_builtin_sym_end, - 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_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, - [8614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(781), 1, - sym_identifier, - ACTIONS(779), 47, - ts_builtin_sym_end, - 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_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, - [8670] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(785), 1, - sym_identifier, - ACTIONS(783), 47, - ts_builtin_sym_end, - 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_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, - [8726] = 3, + [8668] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(789), 1, @@ -22230,7 +22231,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8782] = 3, + [8724] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(793), 1, @@ -22283,7 +22284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8838] = 3, + [8780] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(797), 1, @@ -22336,7 +22337,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8894] = 3, + [8836] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(801), 1, @@ -22389,7 +22390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [8950] = 3, + [8892] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(805), 1, @@ -22442,7 +22443,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9006] = 3, + [8948] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(809), 1, @@ -22495,85 +22496,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9062] = 23, + [9004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, + ACTIONS(813), 1, sym_identifier, - ACTIONS(811), 1, - aux_sym_component_choice_list_token1, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1247), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(815), 1, - sym_identifier, - ACTIONS(813), 47, + ACTIONS(811), 47, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -22621,24 +22549,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [9214] = 22, + [9060] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -22646,16 +22574,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + ACTIONS(815), 1, + anon_sym_LT_GT, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1676), 1, + STATE(1540), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -22664,12 +22594,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -22677,7 +22607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22692,95 +22622,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9307] = 22, + [9156] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1087), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9400] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -22789,211 +22648,124 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(523), 1, sym_identifier, ACTIONS(817), 1, + anon_sym_LT_GT, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1328), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [9252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(821), 1, + sym_identifier, + ACTIONS(819), 47, + ts_builtin_sym_end, + 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, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(617), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9493] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(969), 1, - sym_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9586] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(819), 1, + aux_sym_expression_token3, aux_sym_expression_token4, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(611), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9679] = 22, + 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_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, + [9308] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23001,15 +22773,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + ACTIONS(823), 1, + anon_sym_LT_GT, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1114), 1, + STATE(1353), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23019,12 +22793,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23032,7 +22806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23047,24 +22821,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9772] = 22, + [9404] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23072,86 +22846,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1719), 1, + STATE(1539), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [9865] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1289), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23161,12 +22864,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23174,7 +22877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23189,24 +22892,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [9958] = 22, + [9497] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23214,228 +22917,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1696), 1, + STATE(1593), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [10051] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1869), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [10144] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1779), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [10237] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1502), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23445,12 +22935,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23458,7 +22948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23473,24 +22963,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10330] = 22, + [9590] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23498,15 +22988,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + ACTIONS(825), 1, + aux_sym_expression_token2, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1493), 1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(622), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [9683] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(827), 1, + aux_sym_expression_token4, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(609), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [9776] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1920), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23516,12 +23148,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23529,7 +23161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23544,24 +23176,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10423] = 22, + [9869] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23569,86 +23201,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1795), 1, + STATE(1376), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1500), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23658,12 +23219,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23671,7 +23232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23686,24 +23247,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10609] = 22, + [9962] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23711,86 +23272,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1788), 1, + STATE(1813), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [10702] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1394), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23800,12 +23290,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23813,7 +23303,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23828,24 +23318,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10795] = 22, + [10055] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23853,15 +23343,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1602), 1, + STATE(1004), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -23871,12 +23361,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23884,7 +23374,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23899,24 +23389,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10888] = 22, + [10148] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -23924,16 +23414,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1677), 1, + STATE(1365), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -23942,12 +23432,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -23955,7 +23445,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23970,65 +23460,633 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [10981] = 24, + [10241] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1739), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10334] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1811), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10427] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1645), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10520] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1606), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10613] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1604), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10706] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1296), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10799] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1442), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1135), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [10985] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(511), 1, sym_identifier, - ACTIONS(821), 1, + ACTIONS(829), 1, aux_sym_loop_parameter_specification_token1, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(934), 1, + STATE(937), 1, sym__subtype_indication, - STATE(1518), 1, + STATE(1520), 1, sym__simple_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(606), 2, + STATE(615), 2, sym__name, sym_function_call, - STATE(1034), 2, + STATE(1053), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24043,24 +24101,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11078] = 22, + [11082] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24068,157 +24126,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1729), 1, + STATE(1198), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [11171] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1661), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [11264] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1160), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24228,12 +24144,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24241,7 +24157,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24256,24 +24172,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11357] = 22, + [11175] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24281,15 +24197,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1582), 1, + STATE(1676), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24299,12 +24215,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24312,7 +24228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24327,24 +24243,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11450] = 22, + [11268] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24352,15 +24268,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1386), 1, + STATE(1584), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24370,12 +24286,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24383,7 +24299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24398,24 +24314,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11543] = 22, + [11361] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24423,157 +24339,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1821), 1, + STATE(1695), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [11636] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1704), 1, - sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [11729] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1247), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24583,12 +24357,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24596,7 +24370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24611,24 +24385,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11822] = 22, + [11454] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24636,15 +24410,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1504), 1, + STATE(1404), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24654,12 +24428,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24667,7 +24441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24682,24 +24456,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [11915] = 22, + [11547] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24707,86 +24481,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1851), 1, + STATE(1581), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [12008] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1347), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24796,12 +24499,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24809,7 +24512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24824,24 +24527,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12101] = 22, + [11640] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24849,15 +24552,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1092), 1, + STATE(1692), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24867,12 +24570,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24880,7 +24583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24895,24 +24598,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12194] = 22, + [11733] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24920,15 +24623,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1321), 1, + STATE(1079), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -24938,12 +24641,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -24951,7 +24654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24966,24 +24669,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12287] = 22, + [11826] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -24991,86 +24694,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1837), 1, + STATE(1693), 1, sym_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(566), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [12380] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1498), 1, - sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -25080,12 +24712,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25093,7 +24725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25108,24 +24740,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12473] = 22, + [11919] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25133,15 +24765,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1338), 1, + STATE(1861), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -25151,12 +24783,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25164,7 +24796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25179,24 +24811,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12566] = 22, + [12012] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25204,15 +24836,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1186), 1, + STATE(1826), 1, sym_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, @@ -25222,12 +24854,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25235,7 +24867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25250,24 +24882,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12659] = 22, + [12105] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25275,16 +24907,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1944), 1, + STATE(1625), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -25293,12 +24925,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25306,7 +24938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25321,24 +24953,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12752] = 22, + [12198] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25346,16 +24978,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1816), 1, + STATE(1302), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -25364,12 +24996,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25377,7 +25009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25392,24 +25024,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12845] = 22, + [12291] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25417,16 +25049,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1811), 1, + STATE(1597), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -25435,12 +25067,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25448,7 +25080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25463,24 +25095,24 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [12938] = 22, + [12384] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, + ACTIONS(233), 1, aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -25488,16 +25120,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(531), 1, sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(1943), 1, + STATE(1561), 1, sym_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, @@ -25506,12 +25138,12 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -25519,7 +25151,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25534,109 +25166,717 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13031] = 3, + [12477] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(825), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, 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_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(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - anon_sym_PIPE, - 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, - [13085] = 3, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1840), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [12570] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(829), 39, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_COMMA, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, 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_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(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, aux_sym_relation_membership_token1, - anon_sym_PIPE, - 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, - [13139] = 3, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1473), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [12663] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1084), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [12756] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1194), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [12849] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1758), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [12942] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1523), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [13035] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1596), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1248), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [13221] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1201), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [13314] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1756), 1, + sym_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(566), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [13407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(831), 7, @@ -25670,6 +25910,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -25678,7 +25919,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -25687,223 +25927,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13193] = 23, + [13461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(511), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(608), 2, - sym__name, - sym_function_call, - STATE(1049), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [13287] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(835), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(1380), 1, - sym__subtype_indication, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1477), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [13381] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(835), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1604), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [13475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(837), 7, + ACTIONS(835), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -25911,7 +25938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(839), 39, + ACTIONS(837), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -25934,6 +25961,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -25942,7 +25970,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -25951,10 +25978,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13529] = 3, + [13515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(841), 7, + ACTIONS(839), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -25962,7 +25989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(843), 39, + ACTIONS(841), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -25985,6 +26012,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -25993,7 +26021,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26002,7 +26029,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13583] = 3, + [13569] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(843), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(780), 1, + sym_null_exclusion, + STATE(937), 1, + sym__subtype_indication, + STATE(1520), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1913), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [13663] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(845), 7, @@ -26036,6 +26134,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26044,7 +26143,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26053,7 +26151,149 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13637] = 3, + [13717] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(511), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(780), 1, + sym_null_exclusion, + STATE(937), 1, + sym__subtype_indication, + STATE(1520), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + STATE(612), 2, + sym__name, + sym_function_call, + STATE(1011), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [13811] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(843), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(780), 1, + sym_null_exclusion, + STATE(1462), 1, + sym__subtype_indication, + STATE(1520), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1478), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(497), 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, + [13905] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(849), 7, @@ -26087,6 +26327,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26095,7 +26336,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26104,7 +26344,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13691] = 3, + [13959] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(610), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [14049] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(853), 7, @@ -26138,6 +26447,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26146,7 +26456,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26155,134 +26464,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [13745] = 23, + [14103] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(237), 1, + ACTIONS(231), 1, aux_sym_relation_membership_token1, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(835), 1, + ACTIONS(843), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(802), 1, + STATE(780), 1, sym_null_exclusion, - STATE(1380), 1, + STATE(937), 1, sym__subtype_indication, - STATE(1518), 1, + STATE(1520), 1, sym__simple_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(480), 2, + STATE(486), 2, sym__name, sym_function_call, - STATE(1271), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [13839] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(835), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1465), 2, + STATE(1830), 2, sym__discrete_subtype_definition, sym_range_g, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26297,61 +26535,63 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [13933] = 21, + [14197] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, + ACTIONS(231), 1, + aux_sym_relation_membership_token1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, + ACTIONS(843), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(527), 1, + STATE(780), 1, + sym_null_exclusion, + STATE(937), 1, + sym__subtype_indication, + STATE(1520), 1, sym__simple_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(521), 3, + STATE(486), 2, + sym__name, + sym_function_call, + STATE(1392), 2, + sym__discrete_subtype_definition, + sym_range_g, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(610), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, - sym__name, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26366,7 +26606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [14023] = 3, + [14291] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(857), 7, @@ -26400,6 +26640,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26408,7 +26649,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26417,7 +26657,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14077] = 3, + [14345] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(861), 7, @@ -26451,6 +26691,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26459,7 +26700,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26468,7 +26708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14131] = 3, + [14399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(865), 7, @@ -26502,6 +26742,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26510,7 +26751,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26519,7 +26759,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14185] = 3, + [14453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(869), 7, @@ -26553,6 +26793,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26561,7 +26802,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26570,7 +26810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14239] = 3, + [14507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(873), 7, @@ -26604,6 +26844,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26612,7 +26853,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26621,76 +26861,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14293] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(607), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [14383] = 3, + [14561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(877), 7, @@ -26724,6 +26895,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26732,7 +26904,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26741,147 +26912,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14437] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_raise_expression_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(527), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(604), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [14527] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(237), 1, - aux_sym_relation_membership_token1, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(835), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(802), 1, - sym_null_exclusion, - STATE(934), 1, - sym__subtype_indication, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - STATE(480), 2, - sym__name, - sym_function_call, - STATE(1897), 2, - sym__discrete_subtype_definition, - sym_range_g, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(490), 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, - [14621] = 3, + [14615] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(881), 7, @@ -26915,6 +26946,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26923,7 +26955,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26932,7 +26963,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14675] = 3, + [14669] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(885), 7, @@ -26966,6 +26997,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -26974,7 +27006,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -26983,7 +27014,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14729] = 3, + [14723] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(889), 7, @@ -27017,6 +27048,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27025,7 +27057,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -27034,7 +27065,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14783] = 3, + [14777] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(614), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [14867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(893), 7, @@ -27068,6 +27168,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27076,7 +27177,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -27085,7 +27185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14837] = 3, + [14921] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(897), 7, @@ -27119,6 +27219,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27127,7 +27228,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -27136,7 +27236,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14891] = 3, + [14975] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(233), 1, + aux_sym_raise_expression_token1, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(531), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(617), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [15065] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(901), 7, @@ -27170,6 +27339,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27178,7 +27348,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_at_clause_token1, @@ -27187,7 +27356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_result_profile_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [14945] = 3, + [15119] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(905), 7, @@ -27198,7 +27367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(907), 38, + ACTIONS(907), 39, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27216,300 +27385,167 @@ 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_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - 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_PIPE, - 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, - [14998] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(909), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(572), 1, - sym__simple_expression, - STATE(592), 1, - sym_membership_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(579), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(435), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(480), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [15087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(913), 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_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_PIPE, - 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, - [15140] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(909), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(572), 1, - sym__simple_expression, - STATE(590), 1, - sym_membership_choice_list, - STATE(1651), 1, - sym_value_sequence, - STATE(579), 2, - sym_range_g, - sym__membership_choice, - ACTIONS(435), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(480), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [15229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(917), 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_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_PIPE, - 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, - [15282] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, aux_sym_attribute_designator_token2, - ACTIONS(931), 1, aux_sym_attribute_designator_token3, - ACTIONS(935), 1, + 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, - ACTIONS(933), 3, + 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, + [15173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(911), 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, + [15227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(913), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(915), 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, + [15280] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(931), 3, anon_sym_SEMI, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - ACTIONS(926), 5, + ACTIONS(924), 5, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_PIPE, aux_sym_loop_statement_token1, - STATE(649), 6, + ACTIONS(917), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(919), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(921), 19, + ACTIONS(919), 19, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27529,50 +27565,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [15348] = 20, + [15347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(935), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - ACTIONS(229), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(937), 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, - ACTIONS(231), 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_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, + [15400] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, ACTIONS(437), 1, aux_sym_relation_membership_token1, - ACTIONS(909), 1, + ACTIONS(939), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(572), 1, + STATE(584), 1, sym__simple_expression, - STATE(1651), 1, + STATE(589), 1, + sym_membership_choice_list, + STATE(1932), 1, sym_value_sequence, - STATE(585), 2, + STATE(576), 2, sym_range_g, sym__membership_choice, ACTIONS(435), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(480), 7, + STATE(486), 7, sym__name, sym_selected_component, sym_slice, @@ -27580,7 +27668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27595,27 +27683,86 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [15434] = 8, + [15489] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(943), 1, - anon_sym_DOT, - ACTIONS(945), 1, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, anon_sym_LPAREN, - STATE(261), 1, - sym_actual_parameter_part, - STATE(488), 1, - sym_index_constraint, - ACTIONS(937), 6, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(939), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(593), 1, + sym_membership_choice_list, + STATE(1932), 1, + sym_value_sequence, + STATE(576), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(486), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [15578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(939), 33, + anon_sym_DOT, + ACTIONS(943), 38, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -27623,7 +27770,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27635,6 +27784,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -27643,163 +27793,189 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, 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, - [15496] = 8, + [15631] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(951), 1, anon_sym_DOT, - ACTIONS(945), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym_actual_parameter_part, - STATE(493), 1, - sym_index_constraint, - ACTIONS(947), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(949), 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_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_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [15558] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(953), 1, - sym_identifier, - ACTIONS(951), 42, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + anon_sym_LPAREN, + STATE(264), 1, + sym_actual_parameter_part, + STATE(496), 1, + sym_index_constraint, + ACTIONS(945), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(947), 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_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_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_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, - [15609] = 3, + [15693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 1, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(939), 1, sym_identifier, - ACTIONS(955), 42, - ts_builtin_sym_end, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(584), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + STATE(592), 2, + sym_range_g, + sym__membership_choice, + ACTIONS(435), 3, sym_string_literal, sym_character_literal, sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(486), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [15779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(951), 1, + anon_sym_DOT, + ACTIONS(953), 1, + anon_sym_LPAREN, + STATE(264), 1, + sym_actual_parameter_part, + STATE(494), 1, + sym_index_constraint, + ACTIONS(955), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(957), 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_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_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_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, - [15660] = 3, + [15841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(961), 1, @@ -27847,7 +28023,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15711] = 3, + [15892] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(965), 1, @@ -27895,7 +28071,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15762] = 3, + [15943] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(969), 1, @@ -27943,77 +28119,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15813] = 20, + [15994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(971), 1, + ACTIONS(973), 1, sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1543), 1, - sym__simple_expression, - STATE(1554), 1, - sym_chunk_specification, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [15898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(975), 1, - sym_identifier, - ACTIONS(973), 42, + ACTIONS(971), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28056,138 +28167,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [15949] = 3, + [16045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, - sym_identifier, - ACTIONS(977), 42, - ts_builtin_sym_end, - 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_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, - [16000] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(909), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(665), 1, - sym_range_g, - STATE(1518), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(435), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(480), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [16085] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(943), 1, + ACTIONS(951), 1, anon_sym_DOT, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - ACTIONS(981), 6, + ACTIONS(975), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(983), 33, + ACTIONS(977), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -28207,6 +28205,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -28215,18 +28214,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [16144] = 3, + [16104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 1, + ACTIONS(983), 1, sym_identifier, - ACTIONS(987), 42, + ACTIONS(981), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28269,7 +28267,185 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16195] = 3, + [16155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(987), 1, + sym_identifier, + ACTIONS(985), 42, + ts_builtin_sym_end, + 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_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, + [16206] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(989), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1527), 1, + sym__simple_expression, + STATE(1528), 1, + sym_chunk_specification, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [16291] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(939), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(672), 1, + sym_range_g, + STATE(1520), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(435), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(486), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [16376] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(993), 1, @@ -28317,12 +28493,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16246] = 3, + [16427] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(997), 1, sym_identifier, - ACTIONS(995), 41, + ACTIONS(995), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28330,6 +28506,7 @@ 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, @@ -28364,12 +28541,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16296] = 3, + [16478] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1001), 1, sym_identifier, - ACTIONS(999), 41, + ACTIONS(999), 42, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -28377,6 +28554,7 @@ 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, @@ -28411,7 +28589,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16346] = 3, + [16529] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1005), 1, @@ -28458,7 +28636,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16396] = 3, + [16579] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1009), 1, @@ -28505,7 +28683,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16446] = 3, + [16629] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(570), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [16711] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1013), 1, @@ -28552,7 +28793,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16496] = 3, + [16761] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1017), 1, @@ -28599,7 +28840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16546] = 3, + [16811] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1021), 1, @@ -28646,7 +28887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16596] = 3, + [16861] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1025), 1, @@ -28693,7 +28934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16646] = 3, + [16911] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1029), 1, @@ -28740,7 +28981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16696] = 3, + [16961] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1033), 1, @@ -28787,7 +29028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16746] = 3, + [17011] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1037), 1, @@ -28834,7 +29075,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16796] = 3, + [17061] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1041), 1, @@ -28881,7 +29122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16846] = 3, + [17111] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1045), 1, @@ -28928,7 +29169,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16896] = 3, + [17161] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1049), 1, @@ -28975,7 +29216,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16946] = 3, + [17211] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1053), 1, @@ -29022,54 +29263,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [16996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1051), 41, - ts_builtin_sym_end, - 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_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, - [17046] = 3, + [17261] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1057), 1, @@ -29116,7 +29310,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17096] = 3, + [17311] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1061), 1, @@ -29163,7 +29357,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17146] = 3, + [17361] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1065), 1, @@ -29210,7 +29404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17196] = 3, + [17411] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1069), 1, @@ -29257,7 +29451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17246] = 3, + [17461] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1073), 1, @@ -29304,7 +29498,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17296] = 3, + [17511] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1077), 1, @@ -29351,7 +29545,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17346] = 3, + [17561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1081), 1, @@ -29398,69 +29592,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17396] = 3, + [17611] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1081), 1, - sym_identifier, - ACTIONS(1079), 41, - ts_builtin_sym_end, - 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_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, - [17446] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -29468,24 +29615,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(589), 1, + STATE(597), 1, sym__simple_expression, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -29493,7 +29640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -29508,54 +29655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [17528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1077), 1, - sym_identifier, - ACTIONS(1075), 41, - ts_builtin_sym_end, - 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_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, - [17578] = 3, + [17693] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1085), 1, @@ -29602,54 +29702,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 1, - sym_identifier, - ACTIONS(1047), 41, - ts_builtin_sym_end, - 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_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, - [17678] = 3, + [17743] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1089), 1, @@ -29696,7 +29749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17728] = 3, + [17793] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1093), 1, @@ -29743,7 +29796,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17778] = 3, + [17843] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1097), 1, @@ -29790,7 +29843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17828] = 3, + [17893] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1101), 1, @@ -29837,7 +29890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17878] = 3, + [17943] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1105), 1, @@ -29884,7 +29937,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17928] = 3, + [17993] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1109), 1, @@ -29931,7 +29984,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [17978] = 3, + [18043] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, @@ -29978,7 +30031,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18028] = 3, + [18093] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1117), 1, @@ -30025,7 +30078,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18078] = 3, + [18143] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1121), 1, @@ -30072,7 +30125,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18128] = 3, + [18193] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1125), 1, @@ -30119,7 +30172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18178] = 3, + [18243] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1129), 1, @@ -30166,7 +30219,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18228] = 3, + [18293] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(628), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [18375] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1133), 1, @@ -30213,7 +30329,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18278] = 3, + [18425] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(625), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [18507] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1137), 1, @@ -30260,7 +30439,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18328] = 3, + [18557] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1480), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [18639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -30307,54 +30549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - sym_identifier, - ACTIONS(1139), 41, - ts_builtin_sym_end, - 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_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, - [18428] = 3, + [18689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1145), 1, @@ -30401,54 +30596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1137), 1, - sym_identifier, - ACTIONS(1135), 41, - ts_builtin_sym_end, - 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_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, - [18528] = 3, + [18739] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1149), 1, @@ -30495,7 +30643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18578] = 3, + [18789] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1153), 1, @@ -30542,7 +30690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18628] = 3, + [18839] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1157), 1, @@ -30589,7 +30737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18678] = 3, + [18889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1161), 1, @@ -30636,7 +30784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18728] = 3, + [18939] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1165), 1, @@ -30683,7 +30831,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18778] = 3, + [18989] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1169), 1, @@ -30730,7 +30878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18828] = 3, + [19039] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1173), 1, @@ -30777,7 +30925,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18878] = 3, + [19089] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1177), 1, @@ -30824,7 +30972,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18928] = 3, + [19139] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1181), 1, @@ -30871,7 +31019,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [18978] = 3, + [19189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 1, + sym_identifier, + ACTIONS(1163), 41, + ts_builtin_sym_end, + 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_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, + [19239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1185), 1, @@ -30918,7 +31113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19028] = 3, + [19289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1189), 1, @@ -30965,7 +31160,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19078] = 3, + [19339] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1193), 1, @@ -31012,7 +31207,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19128] = 3, + [19389] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1197), 1, @@ -31059,7 +31254,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19178] = 3, + [19439] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1201), 1, @@ -31106,7 +31301,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19228] = 3, + [19489] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1759), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [19571] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1205), 1, @@ -31153,54 +31411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - sym_identifier, - ACTIONS(1203), 41, - ts_builtin_sym_end, - 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_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, - [19328] = 3, + [19621] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1209), 1, @@ -31247,7 +31458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19378] = 3, + [19671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1213), 1, @@ -31294,54 +31505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1201), 1, - sym_identifier, - ACTIONS(1199), 41, - ts_builtin_sym_end, - 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_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, - [19478] = 3, + [19721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1217), 1, @@ -31388,7 +31552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19528] = 3, + [19771] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1221), 1, @@ -31435,7 +31599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19578] = 3, + [19821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1225), 1, @@ -31482,70 +31646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19628] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1651), 1, - sym_value_sequence, - STATE(1880), 1, - sym__simple_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [19710] = 3, + [19871] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1229), 1, @@ -31592,7 +31693,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19760] = 3, + [19921] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1233), 1, @@ -31639,7 +31740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19810] = 3, + [19971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1237), 1, @@ -31686,7 +31787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19860] = 3, + [20021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1241), 1, @@ -31733,7 +31834,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19910] = 3, + [20071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1245), 1, @@ -31780,7 +31881,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [19960] = 3, + [20121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 1, @@ -31827,7 +31928,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20010] = 3, + [20171] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1253), 1, @@ -31874,7 +31975,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20060] = 3, + [20221] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1257), 1, @@ -31921,7 +32022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20110] = 3, + [20271] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1261), 1, @@ -31968,7 +32069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20160] = 3, + [20321] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1265), 1, @@ -32015,7 +32116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20210] = 3, + [20371] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1269), 1, @@ -32062,7 +32163,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20260] = 3, + [20421] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1273), 1, @@ -32109,7 +32210,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20310] = 3, + [20471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1277), 1, @@ -32156,7 +32257,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20360] = 3, + [20521] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1281), 1, @@ -32203,7 +32304,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20410] = 3, + [20571] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1285), 1, @@ -32250,7 +32351,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20460] = 3, + [20621] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1289), 1, @@ -32297,7 +32398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20510] = 3, + [20671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1293), 1, @@ -32344,54 +32445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1297), 1, - sym_identifier, - ACTIONS(1295), 41, - ts_builtin_sym_end, - 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_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, - [20610] = 3, + [20721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1281), 1, @@ -32438,7 +32492,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20660] = 3, + [20771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1297), 1, + sym_identifier, + ACTIONS(1295), 41, + ts_builtin_sym_end, + 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_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, + [20821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1301), 1, @@ -32485,7 +32586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20710] = 3, + [20871] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1305), 1, @@ -32532,7 +32633,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20760] = 3, + [20921] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1309), 1, @@ -32579,7 +32680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20810] = 3, + [20971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1313), 1, @@ -32626,54 +32727,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1305), 1, - sym_identifier, - ACTIONS(1303), 41, - ts_builtin_sym_end, - 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_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, - [20910] = 3, + [21021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1317), 1, @@ -32720,54 +32774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [20960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1317), 1, - sym_identifier, - ACTIONS(1315), 41, - ts_builtin_sym_end, - 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_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, - [21010] = 3, + [21071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1321), 1, @@ -32814,7 +32821,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21060] = 3, + [21121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1325), 1, @@ -32861,7 +32868,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21110] = 3, + [21171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 1, + sym_identifier, + ACTIONS(1147), 41, + ts_builtin_sym_end, + 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_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, + [21221] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1329), 1, @@ -32908,7 +32962,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21160] = 3, + [21271] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1333), 1, @@ -32955,7 +33009,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21210] = 3, + [21321] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1337), 1, @@ -33002,7 +33056,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21260] = 3, + [21371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1277), 1, + sym_identifier, + ACTIONS(1275), 41, + ts_builtin_sym_end, + 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_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, + [21421] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1341), 1, @@ -33049,7 +33150,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21310] = 3, + [21471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1345), 1, @@ -33096,7 +33197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21360] = 3, + [21521] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1349), 1, @@ -33143,7 +33244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21410] = 3, + [21571] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1353), 1, @@ -33190,7 +33291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21460] = 3, + [21621] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1357), 1, @@ -33237,7 +33338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21510] = 3, + [21671] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1361), 1, @@ -33284,7 +33385,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21560] = 3, + [21721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1365), 1, @@ -33331,7 +33432,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21610] = 3, + [21771] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1369), 1, @@ -33378,7 +33479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21660] = 3, + [21821] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1373), 1, @@ -33425,7 +33526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21710] = 3, + [21871] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1377), 1, @@ -33472,70 +33573,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21760] = 19, + [21921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, + ACTIONS(1361), 1, sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(622), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, + ACTIONS(1359), 41, + ts_builtin_sym_end, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [21842] = 3, + 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_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, + [21971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1381), 1, @@ -33582,7 +33667,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21892] = 3, + [22021] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1385), 1, @@ -33629,7 +33714,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21942] = 3, + [22071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 1, + sym_identifier, + ACTIONS(1067), 41, + ts_builtin_sym_end, + 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_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, + [22121] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1389), 1, @@ -33676,7 +33808,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [21992] = 3, + [22171] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(594), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [22253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1393), 1, @@ -33723,7 +33918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22042] = 3, + [22303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1397), 1, @@ -33770,7 +33965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22092] = 3, + [22353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1401), 1, @@ -33817,7 +34012,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22142] = 3, + [22403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1405), 1, @@ -33864,7 +34059,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22192] = 3, + [22453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1409), 1, @@ -33911,7 +34106,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22242] = 3, + [22503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1413), 1, @@ -33958,7 +34153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22292] = 3, + [22553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1417), 1, @@ -34005,7 +34200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22342] = 3, + [22603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1421), 1, @@ -34052,7 +34247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22392] = 3, + [22653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1425), 1, @@ -34099,7 +34294,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22442] = 3, + [22703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1397), 1, + sym_identifier, + ACTIONS(1395), 41, + ts_builtin_sym_end, + 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_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, + [22753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1429), 1, @@ -34146,7 +34388,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22492] = 3, + [22803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1433), 1, @@ -34193,7 +34435,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22542] = 3, + [22853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1437), 1, @@ -34240,7 +34482,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22592] = 3, + [22903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1441), 1, @@ -34287,7 +34529,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22642] = 3, + [22953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 1, + sym_identifier, + ACTIONS(1435), 41, + ts_builtin_sym_end, + 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_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, + [23003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1445), 1, @@ -34334,7 +34623,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22692] = 3, + [23053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1449), 1, @@ -34381,7 +34670,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22742] = 3, + [23103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1301), 1, + sym_identifier, + ACTIONS(1299), 41, + ts_builtin_sym_end, + 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_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, + [23153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1453), 1, @@ -34428,7 +34764,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22792] = 3, + [23203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1457), 1, @@ -34475,7 +34811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22842] = 3, + [23253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1461), 1, @@ -34522,70 +34858,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22892] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1407), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [22974] = 3, + [23303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1465), 1, @@ -34632,7 +34905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23024] = 3, + [23353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1469), 1, @@ -34679,7 +34952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23074] = 3, + [23403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1473), 1, @@ -34726,7 +34999,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23124] = 3, + [23453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1477), 1, @@ -34773,70 +35046,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23174] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1651), 1, - sym_value_sequence, - STATE(1751), 1, - sym__simple_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [23256] = 3, + [23503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1481), 1, @@ -34883,70 +35093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23306] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1651), 1, - sym_value_sequence, - STATE(1743), 1, - sym__simple_expression, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [23388] = 3, + [23553] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1485), 1, @@ -34993,7 +35140,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23438] = 3, + [23603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1489), 1, @@ -35040,7 +35187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23488] = 3, + [23653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1493), 1, @@ -35087,7 +35234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23538] = 3, + [23703] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1497), 1, @@ -35134,7 +35281,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23588] = 3, + [23753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1501), 1, @@ -35181,7 +35328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23638] = 3, + [23803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1505), 1, @@ -35228,7 +35375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23688] = 3, + [23853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1509), 1, @@ -35275,7 +35422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23738] = 3, + [23903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1513), 1, @@ -35322,7 +35469,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23788] = 3, + [23953] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1517), 1, @@ -35369,7 +35516,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23838] = 3, + [24003] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1521), 1, @@ -35416,7 +35563,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23888] = 3, + [24053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1525), 1, @@ -35463,54 +35610,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [23938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1525), 1, - sym_identifier, - ACTIONS(1523), 41, - ts_builtin_sym_end, - 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_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, - [23988] = 3, + [24103] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1529), 1, @@ -35557,70 +35657,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24038] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(1415), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [24120] = 3, + [24153] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1533), 1, @@ -35667,7 +35704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24170] = 3, + [24203] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1537), 1, @@ -35714,7 +35751,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24220] = 3, + [24253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1541), 1, @@ -35761,54 +35798,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 1, - sym_identifier, - ACTIONS(1515), 41, - ts_builtin_sym_end, - 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_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, - [24320] = 3, + [24303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1545), 1, @@ -35855,7 +35845,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24370] = 3, + [24353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1549), 1, @@ -35902,7 +35892,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24420] = 3, + [24403] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1553), 1, @@ -35949,7 +35939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24470] = 3, + [24453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1557), 1, @@ -35996,7 +35986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24520] = 3, + [24503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1561), 1, @@ -36043,7 +36033,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24570] = 3, + [24553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(1467), 41, + ts_builtin_sym_end, + 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_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, + [24603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1565), 1, @@ -36090,7 +36127,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24620] = 3, + [24653] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1569), 1, @@ -36137,7 +36174,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24670] = 3, + [24703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, + sym_identifier, + ACTIONS(1015), 41, + ts_builtin_sym_end, + 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_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, + [24753] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1573), 1, @@ -36184,7 +36268,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24720] = 3, + [24803] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1577), 1, @@ -36231,7 +36315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24770] = 3, + [24853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1581), 1, @@ -36278,7 +36362,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24820] = 3, + [24903] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1585), 1, @@ -36325,7 +36409,164 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24870] = 3, + [24953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 1, + sym_identifier, + ACTIONS(1359), 41, + ts_builtin_sym_end, + 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_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, + [25003] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1799), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [25085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1361), 1, + sym_identifier, + ACTIONS(1359), 41, + ts_builtin_sym_end, + 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_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, + [25135] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1589), 1, @@ -36372,22 +36613,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [24920] = 19, + [25185] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(225), 1, + ACTIONS(219), 1, anon_sym_PLUS, - ACTIONS(227), 1, + ACTIONS(221), 1, anon_sym_DASH, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -36395,24 +36636,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(499), 1, + STATE(508), 1, sym_unary_adding_operator, - STATE(511), 1, + STATE(515), 1, sym_term, - STATE(1651), 1, - sym_value_sequence, - STATE(1916), 1, + STATE(1896), 1, sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -36420,7 +36661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(490), 14, + STATE(497), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36435,7 +36676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [25002] = 3, + [25267] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1593), 1, @@ -36482,7 +36723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25052] = 3, + [25317] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1597), 1, @@ -36529,7 +36770,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25102] = 3, + [25367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 1, + sym_identifier, + ACTIONS(1427), 41, + ts_builtin_sym_end, + 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_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, + [25417] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1601), 1, @@ -36576,7 +36864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25152] = 3, + [25467] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1605), 1, @@ -36623,54 +36911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 1, - sym_identifier, - ACTIONS(1047), 41, - ts_builtin_sym_end, - 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_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, - [25252] = 3, + [25517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1609), 1, @@ -36717,7 +36958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25302] = 3, + [25567] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1613), 1, @@ -36764,54 +37005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1049), 1, - sym_identifier, - ACTIONS(1047), 41, - ts_builtin_sym_end, - 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_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, - [25402] = 3, + [25617] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1617), 1, @@ -36858,7 +37052,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25452] = 3, + [25667] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1621), 1, @@ -36905,7 +37099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25502] = 3, + [25717] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1625), 1, @@ -36952,70 +37146,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25552] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(588), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [25634] = 3, + [25767] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1629), 1, @@ -37062,7 +37193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25684] = 3, + [25817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1633), 1, @@ -37109,7 +37240,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25734] = 3, + [25867] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1637), 1, @@ -37156,7 +37287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25784] = 3, + [25917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -37203,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, - [25834] = 3, + [25967] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1645), 1, @@ -37250,7 +37381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25884] = 3, + [26017] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1649), 1, @@ -37297,7 +37428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25934] = 3, + [26067] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1653), 1, @@ -37344,70 +37475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [25984] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(558), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [26066] = 3, + [26117] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1657), 1, @@ -37454,7 +37522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26116] = 3, + [26167] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1661), 1, @@ -37501,7 +37569,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26166] = 3, + [26217] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1424), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [26299] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -37548,70 +37679,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26216] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(225), 1, - anon_sym_PLUS, - ACTIONS(227), 1, - anon_sym_DASH, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(499), 1, - sym_unary_adding_operator, - STATE(511), 1, - sym_term, - STATE(621), 1, - sym__simple_expression, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [26298] = 3, + [26349] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1669), 1, @@ -37658,7 +37726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26348] = 3, + [26399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1673), 1, @@ -37705,7 +37773,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26398] = 3, + [26449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1677), 1, @@ -37752,12 +37820,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26448] = 3, + [26499] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(508), 1, + sym_unary_adding_operator, + STATE(515), 1, + sym_term, + STATE(1562), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [26581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1681), 1, sym_identifier, - ACTIONS(1679), 40, + ACTIONS(1679), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37767,6 +37898,7 @@ 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, @@ -37798,12 +37930,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26497] = 3, + [26631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_identifier, + ACTIONS(1215), 41, + ts_builtin_sym_end, + 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_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, + [26681] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1685), 1, sym_identifier, - ACTIONS(1683), 40, + ACTIONS(1683), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37813,6 +37992,7 @@ 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, @@ -37844,7 +38024,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26546] = 3, + [26731] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1689), 1, @@ -37890,25 +38070,255 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26595] = 7, + [26780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(943), 1, + ACTIONS(1693), 1, + sym_identifier, + ACTIONS(1691), 40, + ts_builtin_sym_end, + 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_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, + [26829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1695), 40, + ts_builtin_sym_end, + 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_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, + [26878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1701), 1, + sym_identifier, + ACTIONS(1699), 40, + ts_builtin_sym_end, + 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_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, + [26927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1705), 1, + sym_identifier, + ACTIONS(1703), 40, + ts_builtin_sym_end, + 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_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, + [26976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1709), 1, + sym_identifier, + ACTIONS(1707), 40, + ts_builtin_sym_end, + 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_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, + [27025] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, anon_sym_DOT, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, + ACTIONS(1711), 1, sym_tick, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - ACTIONS(981), 6, + ACTIONS(975), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(983), 31, + ACTIONS(977), 31, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -37927,6 +38337,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -37935,17 +38346,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26652] = 3, + [27082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1695), 1, + ACTIONS(1715), 1, sym_identifier, - ACTIONS(1693), 40, + ACTIONS(1713), 40, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37986,163 +38396,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26701] = 3, + [27131] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1699), 1, - sym_identifier, - ACTIONS(1697), 40, - ts_builtin_sym_end, - 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_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, - [26750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 1, - sym_identifier, - ACTIONS(1701), 40, - ts_builtin_sym_end, - 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_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, - [26799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 1, - sym_identifier, - ACTIONS(1705), 40, - ts_builtin_sym_end, - 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_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, - [26848] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, + ACTIONS(1723), 1, anon_sym_SLASH, - STATE(485), 1, + STATE(490), 1, aux_sym_term_repeat1, - STATE(505), 1, + STATE(511), 1, sym_multiplying_operator, - ACTIONS(1713), 3, + ACTIONS(1721), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1709), 4, + ACTIONS(1717), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1711), 30, + ACTIONS(1719), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38160,6 +38432,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38168,30 +38441,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26904] = 7, + [27187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 1, + ACTIONS(1723), 1, anon_sym_SLASH, - STATE(485), 1, + STATE(488), 1, aux_sym_term_repeat1, - STATE(505), 1, + STATE(511), 1, sym_multiplying_operator, - ACTIONS(1723), 3, + ACTIONS(1721), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1719), 4, + ACTIONS(1725), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1721), 30, + ACTIONS(1727), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38209,6 +38481,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38217,30 +38490,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [26960] = 7, + [27243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 1, + ACTIONS(1736), 1, anon_sym_SLASH, - STATE(486), 1, + STATE(490), 1, aux_sym_term_repeat1, - STATE(505), 1, + STATE(511), 1, sym_multiplying_operator, - ACTIONS(1723), 3, + ACTIONS(1733), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1727), 4, + ACTIONS(1729), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1729), 30, + ACTIONS(1731), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38258,6 +38530,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38266,22 +38539,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27016] = 3, + [27299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(947), 6, + ACTIONS(1739), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(949), 33, + ACTIONS(1741), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38301,6 +38573,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38309,23 +38582,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27063] = 3, + [27346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 6, + ACTIONS(1743), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1733), 33, + ACTIONS(1745), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38345,6 +38617,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38353,68 +38626,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27110] = 4, + [27393] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1747), 1, + anon_sym_EQ_GT, + ACTIONS(1751), 1, + anon_sym_PIPE, + STATE(1290), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(917), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 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_RPAREN, + 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, - ACTIONS(1735), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1737), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27159] = 3, + [27456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 6, + ACTIONS(945), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1743), 33, + ACTIONS(947), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38434,6 +38713,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38442,23 +38722,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27206] = 3, + [27503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1745), 6, + ACTIONS(1755), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1747), 33, + ACTIONS(1757), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38478,6 +38757,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38486,23 +38766,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27253] = 3, + [27550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1749), 6, + ACTIONS(1759), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1751), 33, + ACTIONS(1761), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38522,6 +38801,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38530,67 +38810,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27300] = 3, + [27597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1753), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1755), 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_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_PIPE, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1757), 6, + ACTIONS(1763), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 33, + ACTIONS(1765), 32, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38610,6 +38847,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38618,115 +38856,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27394] = 3, + [27646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 6, + ACTIONS(1769), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1763), 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_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_PIPE, - anon_sym_STAR_STAR, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1765), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1767), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [27487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, ACTIONS(1771), 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, @@ -38741,6 +38890,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38749,74 +38899,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27533] = 15, + [27693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(509), 1, - sym_term, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(487), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [27603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1773), 5, + ACTIONS(1773), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, ACTIONS(1775), 33, anon_sym_SLASH_EQ, @@ -38824,7 +38920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_STAR, anon_sym_mod, anon_sym_rem, anon_sym_COMMA, @@ -38839,6 +38934,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -38847,98 +38943,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, + anon_sym_STAR_STAR, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27649] = 22, + [27740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1777), 1, - anon_sym_LPAREN, - ACTIONS(1779), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1781), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1783), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1787), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1789), 1, - aux_sym_with_clause_token1, - ACTIONS(1791), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1797), 1, - aux_sym_allocator_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1803), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1805), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1807), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1811), 1, - aux_sym_interface_type_definition_token2, - STATE(1328), 1, - sym_null_exclusion, - STATE(1357), 1, - sym_record_definition, - ACTIONS(1799), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1327), 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, - [27733] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - aux_sym_attribute_designator_token2, - ACTIONS(931), 1, - aux_sym_attribute_designator_token3, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1813), 1, + ACTIONS(1777), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1779), 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, - ACTIONS(1817), 1, + 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, - STATE(1238), 1, - aux_sym_component_choice_list_repeat1, - STATE(649), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 7, + 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, + [27787] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1781), 1, + anon_sym_EQ_GT, + ACTIONS(1783), 1, + anon_sym_PIPE, + STATE(1290), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(924), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(917), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -38946,7 +39020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(921), 18, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 15, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38955,26 +39037,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mod, anon_sym_rem, sym_tick, - anon_sym_COMMA, - anon_sym_RPAREN, 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, - [27795] = 3, + [27851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1821), 5, + ACTIONS(1785), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1823), 33, + ACTIONS(1787), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38995,6 +39074,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -39003,23 +39083,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token4, aux_sym_expression_token5, aux_sym_relation_membership_token1, - anon_sym_PIPE, anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27841] = 15, + [27897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, + ACTIONS(1789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1791), 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, + [27943] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, sym_numeric_literal, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(241), 1, + ACTIONS(235), 1, aux_sym_factor_abs_token1, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, ACTIONS(425), 1, aux_sym_primary_null_token1, @@ -39027,694 +39149,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(515), 1, + STATE(520), 1, sym_term, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(487), 4, + STATE(489), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [27911] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - sym_numeric_literal, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_factor_abs_token1, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(498), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(490), 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, - [27978] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1777), 1, - anon_sym_LPAREN, - ACTIONS(1779), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1781), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1783), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1785), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1791), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1811), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1825), 1, - aux_sym_with_clause_token1, - ACTIONS(1827), 1, - aux_sym_allocator_token1, - ACTIONS(1829), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1831), 1, - aux_sym_private_type_declaration_token2, - STATE(1328), 1, - sym_null_exclusion, - STATE(1357), 1, - sym_record_definition, - ACTIONS(1799), 3, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_private_extension_declaration_token1, - aux_sym_interface_type_definition_token1, - STATE(1294), 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, - [28057] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - aux_sym_attribute_designator_token2, - ACTIONS(931), 1, - aux_sym_attribute_designator_token3, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1833), 1, - anon_sym_EQ_GT, - ACTIONS(1835), 1, - anon_sym_PIPE, - STATE(1238), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(926), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(649), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - ACTIONS(921), 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, - [28120] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(512), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1841), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1837), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1839), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(508), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1841), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1845), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28224] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(512), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1841), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1845), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1847), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28276] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1843), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(510), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1841), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1849), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1851), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28328] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - anon_sym_DASH, - STATE(504), 1, - sym_binary_adding_operator, - STATE(512), 1, - aux_sym__simple_expression_repeat1, - ACTIONS(1857), 2, - anon_sym_PLUS, - anon_sym_AMP, - ACTIONS(1853), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1855), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28380] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1811), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1863), 1, - anon_sym_LPAREN, - ACTIONS(1865), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1867), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1869), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1871), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1873), 1, - aux_sym_with_clause_token1, - ACTIONS(1875), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1877), 1, - aux_sym_allocator_token1, - ACTIONS(1879), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1881), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(1883), 1, - aux_sym_private_extension_declaration_token1, - STATE(1215), 1, - sym_interface_type_definition, - STATE(1216), 1, - sym_array_type_definition, - STATE(1328), 1, - sym_null_exclusion, - ACTIONS(1799), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1218), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1117), 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, - [28461] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_attribute_designator_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(1811), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(1863), 1, - anon_sym_LPAREN, - ACTIONS(1865), 1, - aux_sym_attribute_designator_token2, - ACTIONS(1867), 1, - aux_sym_attribute_designator_token3, - ACTIONS(1869), 1, - aux_sym_attribute_designator_token4, - ACTIONS(1871), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1873), 1, - aux_sym_with_clause_token1, - ACTIONS(1875), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1877), 1, - aux_sym_allocator_token1, - ACTIONS(1879), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(1883), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(1885), 1, - aux_sym_private_type_declaration_token2, - STATE(1215), 1, - sym_interface_type_definition, - STATE(1216), 1, - sym_array_type_definition, - STATE(1328), 1, - sym_null_exclusion, - ACTIONS(1799), 2, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_interface_type_definition_token1, - STATE(1218), 3, - sym__access_type_definition, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - STATE(1076), 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, - [28542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1853), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - ACTIONS(1855), 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_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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28584] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - aux_sym_attribute_designator_token2, - ACTIONS(931), 1, - aux_sym_attribute_designator_token3, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(926), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(919), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(649), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(921), 16, - 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, - 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, - [28638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - sym_identifier, - ACTIONS(1891), 1, - anon_sym_LT_LT, - STATE(517), 2, - sym_label, - aux_sym__sequence_of_statements_repeat2, - ACTIONS(1889), 29, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_subprogram_body_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_exception_declaration_token1, - 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_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - [28683] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(1894), 1, - sym_numeric_literal, - ACTIONS(1896), 1, - aux_sym_primary_null_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(277), 7, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -39737,12 +39185,812 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28738] = 3, + [28013] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1898), 1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(1793), 1, + anon_sym_EQ_GT, + STATE(1213), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(924), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(917), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 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, + [28077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1797), 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, + [28123] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1803), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1805), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1807), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1809), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1811), 1, + aux_sym_with_clause_token1, + ACTIONS(1813), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1819), 1, + aux_sym_allocator_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1825), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1827), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1829), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1833), 1, + aux_sym_interface_type_definition_token2, + STATE(1254), 1, + sym_null_exclusion, + STATE(1446), 1, + sym_record_definition, + ACTIONS(1821), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1205), 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, + [28207] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, sym_identifier, - ACTIONS(1900), 30, + STATE(513), 1, + sym_term, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(489), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [28277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1835), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1837), 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, + [28323] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1803), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1805), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1807), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1813), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1833), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1839), 1, + aux_sym_with_clause_token1, + ACTIONS(1841), 1, + aux_sym_allocator_token1, + ACTIONS(1843), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1845), 1, + aux_sym_private_type_declaration_token2, + STATE(1254), 1, + sym_null_exclusion, + STATE(1446), 1, + sym_record_definition, + ACTIONS(1821), 3, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_private_extension_declaration_token1, + aux_sym_interface_type_definition_token1, + STATE(1271), 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, + [28402] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(509), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(497), 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, + [28469] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1854), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(512), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1851), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1847), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1849), 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, + [28521] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(516), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1861), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1857), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1859), 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, + [28573] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(512), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1861), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1857), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1859), 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, + [28625] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(514), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1861), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1865), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1867), 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, + [28677] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 1, + anon_sym_DASH, + STATE(504), 1, + sym_binary_adding_operator, + STATE(512), 1, + aux_sym__simple_expression_repeat1, + ACTIONS(1861), 2, + anon_sym_PLUS, + anon_sym_AMP, + ACTIONS(1869), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1871), 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, + [28729] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1833), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1873), 1, + anon_sym_LPAREN, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1877), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1879), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1881), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1883), 1, + aux_sym_with_clause_token1, + ACTIONS(1885), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1887), 1, + aux_sym_allocator_token1, + ACTIONS(1889), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1891), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(1893), 1, + aux_sym_private_extension_declaration_token1, + STATE(1254), 1, + sym_null_exclusion, + STATE(1316), 1, + sym_array_type_definition, + STATE(1324), 1, + sym_interface_type_definition, + ACTIONS(1821), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1309), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1117), 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, + [28810] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_attribute_designator_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1833), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(1873), 1, + anon_sym_LPAREN, + ACTIONS(1875), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1877), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1879), 1, + aux_sym_attribute_designator_token4, + ACTIONS(1881), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1883), 1, + aux_sym_with_clause_token1, + ACTIONS(1885), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1887), 1, + aux_sym_allocator_token1, + ACTIONS(1889), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(1893), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1895), 1, + aux_sym_private_type_declaration_token2, + STATE(1254), 1, + sym_null_exclusion, + STATE(1316), 1, + sym_array_type_definition, + STATE(1324), 1, + sym_interface_type_definition, + ACTIONS(1821), 2, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_interface_type_definition_token1, + STATE(1309), 3, + sym__access_type_definition, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + STATE(1095), 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, + [28891] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(924), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(917), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 16, + 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, + 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, + [28946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + ACTIONS(1849), 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, + [28988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1897), 1, + sym_identifier, + ACTIONS(1901), 1, + anon_sym_LT_LT, + STATE(521), 2, + sym_label, + aux_sym__sequence_of_statements_repeat2, + ACTIONS(1899), 29, sym_string_literal, sym_character_literal, sym_target_name, @@ -39759,7 +40007,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_declare_expression_token1, aux_sym_case_expression_token1, aux_sym_exception_declaration_token1, - anon_sym_LT_LT, aux_sym_pragma_g_token1, aux_sym_if_expression_token1, aux_sym_elsif_expression_item_token1, @@ -39773,28 +40020,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [28777] = 11, + [29033] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(229), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(231), 1, + ACTIONS(225), 1, anon_sym_LBRACK, - ACTIONS(245), 1, + ACTIONS(239), 1, aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, ACTIONS(523), 1, sym_identifier, - ACTIONS(1902), 1, + ACTIONS(1904), 1, sym_numeric_literal, - STATE(1651), 1, + ACTIONS(1906), 1, + aux_sym_primary_null_token1, + STATE(1932), 1, sym_value_sequence, ACTIONS(521), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(277), 7, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(502), 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, + [29088] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1908), 1, + sym_numeric_literal, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(506), 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, + [29143] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1904), 1, + sym_numeric_literal, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(502), 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, + [29198] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1910), 1, + sym_numeric_literal, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, sym__name, sym_selected_component, sym_slice, @@ -39817,110 +40196,100 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28832] = 11, + [29253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_LBRACK, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(523), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(1894), 1, - sym_numeric_literal, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, + ACTIONS(1914), 30, sym_string_literal, sym_character_literal, sym_target_name, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(497), 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, - [28887] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, anon_sym_LBRACK, - ACTIONS(245), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, + aux_sym_iterated_element_association_token1, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_subprogram_body_token1, + aux_sym_expression_token2, + aux_sym_expression_token3, + aux_sym_expression_token4, + aux_sym_raise_expression_token1, aux_sym_primary_null_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(1904), 1, - sym_numeric_literal, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(277), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(500), 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, - [28942] = 9, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_exception_declaration_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_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + [29292] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, - anon_sym_EQ_GT, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(1906), 1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(917), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 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(931), 9, anon_sym_COMMA, - ACTIONS(1909), 1, + 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, + [29343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + anon_sym_EQ_GT, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(1916), 1, + anon_sym_COMMA, + ACTIONS(1919), 1, anon_sym_COLON, - STATE(1147), 1, + STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - STATE(1238), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(919), 7, + STATE(1290), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(917), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39928,7 +40297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(921), 17, + ACTIONS(919), 17, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39946,17 +40315,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [28992] = 5, + [29393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1911), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1913), 4, + ACTIONS(1923), 4, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, - ACTIONS(1741), 7, + ACTIONS(1739), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -39964,7 +40333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_mod, anon_sym_rem, - ACTIONS(1743), 18, + ACTIONS(1741), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39977,54 +40346,13 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [29034] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, - aux_sym_attribute_designator_token2, - ACTIONS(931), 1, - aux_sym_attribute_designator_token3, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(919), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(649), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(921), 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(933), 9, - 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, - [29084] = 19, + [29435] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -40033,65 +40361,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accept_statement_token1, ACTIONS(75), 1, aux_sym_delay_until_statement_token1, - ACTIONS(1915), 1, + ACTIONS(1925), 1, sym_identifier, - ACTIONS(1917), 1, + ACTIONS(1927), 1, aux_sym_iterator_filter_token1, - ACTIONS(1919), 1, + ACTIONS(1929), 1, aux_sym_terminate_alternative_token1, - STATE(28), 1, - sym_procedure_call_statement, STATE(29), 1, sym_accept_statement, - STATE(818), 1, + STATE(30), 1, + sym_procedure_call_statement, + STATE(822), 1, sym_guard, - STATE(1060), 1, + STATE(1087), 1, sym_select_alternative, - STATE(1416), 1, + STATE(1417), 1, sym_entry_call_alternative, - STATE(1651), 1, - sym_value_sequence, - STATE(1727), 1, + STATE(1831), 1, sym_triggering_alternative, - STATE(1098), 2, + STATE(1932), 1, + sym_value_sequence, + STATE(1080), 2, sym__name, sym_function_call, ACTIONS(9), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(26), 3, + STATE(27), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - STATE(1229), 3, + STATE(1261), 3, sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - STATE(1028), 5, + STATE(1054), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [29153] = 7, + [29504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 1, + ACTIONS(1937), 1, aux_sym_chunk_specification_token1, - ACTIONS(1929), 1, + ACTIONS(1939), 1, aux_sym_relation_membership_token1, STATE(304), 1, sym_relational_operator, - ACTIONS(1921), 3, + ACTIONS(1931), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1923), 3, + ACTIONS(1933), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1925), 20, + ACTIONS(1935), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -40102,26 +40430,26 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [29198] = 6, + [29549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, + ACTIONS(1781), 1, anon_sym_EQ_GT, - ACTIONS(1835), 1, + ACTIONS(1783), 1, anon_sym_PIPE, - STATE(1238), 1, - aux_sym_component_choice_list_repeat1, - ACTIONS(919), 7, + STATE(1290), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(917), 7, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -40129,7 +40457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - ACTIONS(921), 18, + ACTIONS(919), 18, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40148,466 +40476,345 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29240] = 8, + [29591] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(927), 1, aux_sym_attribute_designator_token2, - ACTIONS(931), 1, - aux_sym_attribute_designator_token3, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(921), 2, - sym_tick, - anon_sym_DOT, - STATE(648), 6, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(1931), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [29285] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(1935), 1, - aux_sym_package_specification_token3, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(533), 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, - [29341] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1941), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(535), 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, - [29397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1943), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1741), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1743), 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_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_PIPE, - anon_sym_STAR_STAR, - [29433] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1945), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(534), 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, - [29489] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1947), 1, - sym_identifier, - ACTIONS(1950), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1953), 1, - aux_sym_package_specification_token3, - ACTIONS(1955), 1, - aux_sym_relation_membership_token1, - ACTIONS(1958), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1961), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1964), 1, - aux_sym_entry_declaration_token1, - ACTIONS(1967), 1, - aux_sym_global_mode_token1, - ACTIONS(1970), 1, - aux_sym_pragma_g_token1, - STATE(951), 1, - sym_overriding_indicator, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(534), 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, - [29545] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(1935), 1, - aux_sym_package_specification_token3, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(534), 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, - [29601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - anon_sym_COLON, - ACTIONS(1973), 1, - anon_sym_COMMA, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(919), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(921), 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, - [29641] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - ACTIONS(1979), 1, - aux_sym_allocator_token1, - STATE(951), 1, - sym_overriding_indicator, - STATE(1846), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [29698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1981), 1, - sym_tick, - ACTIONS(1984), 1, - anon_sym_EQ_GT, - ACTIONS(919), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(921), 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, - 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, - [29735] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - ACTIONS(1986), 1, - aux_sym_allocator_token1, - STATE(951), 1, - sym_overriding_indicator, - STATE(1521), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [29792] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, ACTIONS(929), 1, - aux_sym_attribute_designator_token2, - ACTIONS(931), 1, aux_sym_attribute_designator_token3, ACTIONS(933), 1, - anon_sym_RPAREN, - ACTIONS(935), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1909), 1, - anon_sym_COLON, - ACTIONS(1973), 1, - anon_sym_COMMA, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(919), 3, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(919), 2, + sym_tick, anon_sym_DOT, - STATE(649), 6, + STATE(654), 7, + sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(921), 8, + ACTIONS(1941), 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, + [29637] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(1793), 1, + anon_sym_EQ_GT, + STATE(1213), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(917), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(919), 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, + [29678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_COLON, + ACTIONS(1943), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(917), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(919), 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, + [29718] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + aux_sym_package_specification_token3, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(539), 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, + [29774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1953), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1739), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1741), 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, + [29810] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + aux_sym_package_specification_token3, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(540), 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, + [29866] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1955), 1, + sym_identifier, + ACTIONS(1958), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1961), 1, + aux_sym_package_specification_token3, + ACTIONS(1963), 1, + aux_sym_relation_membership_token1, + ACTIONS(1966), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1969), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1972), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1975), 1, + aux_sym_global_mode_token1, + ACTIONS(1978), 1, + aux_sym_pragma_g_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(539), 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, + [29922] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1981), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(539), 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, + [29978] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1919), 1, + anon_sym_COLON, + ACTIONS(1943), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(917), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(671), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 8, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -40616,7 +40823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_tick, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [29843] = 15, + [30030] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40629,36 +40836,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, + ACTIONS(1983), 1, aux_sym_package_specification_token3, - ACTIONS(1988), 1, - aux_sym_allocator_token1, - STATE(951), 1, + STATE(955), 1, sym_overriding_indicator, - STATE(1845), 1, - sym_protected_definition, - STATE(1086), 3, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(554), 10, + STATE(536), 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_repeat1, - [29900] = 15, + aux_sym_protected_definition_repeat2, + [30086] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40671,25 +40878,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, + ACTIONS(1985), 1, aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, + ACTIONS(1987), 1, aux_sym_package_specification_token3, - ACTIONS(1990), 1, + ACTIONS(1989), 1, aux_sym_allocator_token1, - STATE(951), 1, + STATE(955), 1, sym_overriding_indicator, - STATE(1878), 1, + STATE(1709), 1, sym_protected_definition, - STATE(1086), 3, + STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(554), 10, + STATE(567), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40700,7 +40907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [29957] = 15, + [30143] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40713,25 +40920,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, + ACTIONS(1985), 1, aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, + ACTIONS(1987), 1, aux_sym_package_specification_token3, - ACTIONS(1992), 1, + ACTIONS(1991), 1, aux_sym_allocator_token1, - STATE(951), 1, + STATE(955), 1, sym_overriding_indicator, - STATE(1594), 1, + STATE(1874), 1, sym_protected_definition, - STATE(1086), 3, + STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(554), 10, + STATE(567), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40742,51 +40949,405 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30014] = 7, + [30200] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + ACTIONS(1993), 1, + aux_sym_allocator_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1513), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30257] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + ACTIONS(1995), 1, + aux_sym_allocator_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1870), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2000), 1, + anon_sym_EQ_GT, + ACTIONS(917), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(919), 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, anon_sym_DOT, - ACTIONS(1998), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(1996), 19, + 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, + [30351] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + ACTIONS(2002), 1, + aux_sym_allocator_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1637), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30408] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2004), 1, + aux_sym_package_specification_token3, + ACTIONS(2006), 1, + aux_sym_subunit_token1, + ACTIONS(2008), 1, + aux_sym_entry_declaration_token1, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(562), 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, + [30462] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1868), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30516] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1796), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30570] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1670), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30624] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1543), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(567), 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, + [30678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2012), 1, + anon_sym_LPAREN, + ACTIONS(2010), 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_PIPE, + anon_sym_COLON_EQ, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [30054] = 4, + [30710] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2000), 1, + ACTIONS(2014), 1, anon_sym_COLON, - ACTIONS(919), 5, + ACTIONS(917), 5, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(921), 18, + ACTIONS(919), 18, anon_sym_EQ, anon_sym_SLASH_EQ, anon_sym_LT_EQ, @@ -40805,404 +41366,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30088] = 14, + [30744] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1618), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [30142] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1655), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [30196] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1654), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [30250] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2002), 1, - aux_sym_package_specification_token3, - ACTIONS(2004), 1, - aux_sym_subunit_token1, - ACTIONS(2006), 1, - aux_sym_entry_declaration_token1, - STATE(1006), 1, - sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(561), 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, - [30304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2010), 1, + ACTIONS(921), 1, anon_sym_LPAREN, - ACTIONS(2008), 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, - 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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30336] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1780), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [30390] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1975), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1977), 1, - aux_sym_package_specification_token3, - STATE(951), 1, - sym_overriding_indicator, - STATE(1852), 1, - sym_protected_definition, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(554), 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, - [30444] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2006), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2012), 1, - aux_sym_package_specification_token3, - STATE(1006), 1, - sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(564), 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, - [30495] = 13, - 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1941), 1, - aux_sym_package_specification_token3, - ACTIONS(2014), 1, - aux_sym_compilation_unit_token1, - STATE(951), 1, - sym_overriding_indicator, - STATE(1086), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(560), 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, - [30546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2016), 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, - 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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30575] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(927), 1, aux_sym_attribute_designator_token2, - ACTIONS(931), 1, + ACTIONS(929), 1, aux_sym_attribute_designator_token3, - ACTIONS(2018), 1, + ACTIONS(2016), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(933), 2, + ACTIONS(931), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(919), 3, + ACTIONS(917), 3, anon_sym_DASH, anon_sym_STAR, anon_sym_DOT, - STATE(649), 6, + STATE(671), 7, + sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, sym_range_constraint, sym_index_constraint, sym_digits_constraint, sym_delta_constraint, - ACTIONS(921), 8, + ACTIONS(919), 8, anon_sym_PLUS, anon_sym_AMP, anon_sym_SLASH, @@ -41211,125 +41401,69 @@ static const uint16_t ts_small_parse_table[] = { sym_tick, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [30618] = 13, + [30788] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2023), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2021), 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, + [30828] = 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(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2002), 1, - aux_sym_package_specification_token3, - ACTIONS(2006), 1, - aux_sym_entry_declaration_token1, - STATE(1006), 1, - sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(561), 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, - [30669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 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, - 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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2023), 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, - 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_PIPE, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30727] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2025), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2030), 1, - aux_sym_relation_membership_token1, - ACTIONS(2033), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2036), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2039), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2042), 1, - aux_sym_global_mode_token1, - ACTIONS(2045), 1, - aux_sym_pragma_g_token1, - STATE(951), 1, - sym_overriding_indicator, - ACTIONS(2028), 2, + ACTIONS(1985), 1, aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, aux_sym_package_specification_token3, - STATE(1086), 3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1669), 1, + sym_protected_definition, + STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(560), 10, + STATE(567), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41340,68 +41474,30 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30776] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2006), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2012), 1, - aux_sym_package_specification_token3, - STATE(1006), 1, - sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, - sym_function_specification, - STATE(1127), 1, - sym_procedure_specification, - STATE(565), 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, - [30827] = 12, + [30882] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2025), 1, sym_identifier, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2056), 1, + ACTIONS(2033), 1, aux_sym_exception_declaration_token1, - STATE(714), 1, + STATE(742), 1, sym_null_exclusion, - STATE(1530), 1, + STATE(1761), 1, sym_access_definition, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2050), 3, + ACTIONS(2027), 3, sym_string_literal, sym_character_literal, sym_target_name, - ACTIONS(2052), 5, + ACTIONS(2029), 5, aux_sym_iterated_element_association_token1, aux_sym_subprogram_body_token1, aux_sym_declare_expression_token1, @@ -41415,48 +41511,82 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [30876] = 16, + [30931] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, + ACTIONS(2035), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2038), 1, + aux_sym_package_specification_token3, + ACTIONS(2040), 1, aux_sym_relation_membership_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2058), 1, - aux_sym_general_access_modifier_token1, + ACTIONS(2043), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2046), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2049), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2052), 1, + aux_sym_global_mode_token1, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(560), 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, + [30982] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2055), 1, + aux_sym_iterated_element_association_token1, ACTIONS(2060), 1, - aux_sym_component_definition_token1, - ACTIONS(2062), 1, - aux_sym_exception_declaration_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(988), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1008), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [30933] = 13, + aux_sym_relation_membership_token1, + ACTIONS(2063), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2066), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2069), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2072), 1, + aux_sym_global_mode_token1, + ACTIONS(2075), 1, + aux_sym_pragma_g_token1, + STATE(955), 1, + sym_overriding_indicator, + ACTIONS(2058), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 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, + [31031] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41465,23 +41595,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(1937), 1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2006), 1, + ACTIONS(2008), 1, aux_sym_entry_declaration_token1, - ACTIONS(2064), 1, + ACTIONS(2078), 1, aux_sym_package_specification_token3, - STATE(1006), 1, + STATE(1035), 1, sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(565), 12, + STATE(1142), 1, + sym__subprogram_specification, + STATE(560), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41494,32 +41624,32 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [30984] = 13, + [31082] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2069), 1, - aux_sym_package_specification_token3, - ACTIONS(2071), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(2074), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2077), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2080), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2083), 1, + ACTIONS(53), 1, aux_sym_global_mode_token1, - STATE(1006), 1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2008), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2078), 1, + aux_sym_package_specification_token3, + STATE(1035), 1, sym_overriding_indicator, - STATE(1082), 1, - sym__subprogram_specification, - STATE(1109), 1, + STATE(1103), 1, sym_function_specification, - STATE(1127), 1, + STATE(1105), 1, sym_procedure_specification, - STATE(565), 12, + STATE(1142), 1, + sym__subprogram_specification, + STATE(568), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41532,22 +41662,90 @@ static const uint16_t ts_small_parse_table[] = { sym_subprogram_declaration, sym_expression_function_declaration, aux_sym_protected_body_repeat1, - [31035] = 8, + [31133] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2080), 1, + aux_sym_general_access_modifier_token1, + ACTIONS(2082), 1, + aux_sym_component_definition_token1, + ACTIONS(2084), 1, + aux_sym_exception_declaration_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(972), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1014), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2086), 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, - ACTIONS(2090), 1, + aux_sym_expression_token2, aux_sym_expression_token3, - ACTIONS(2092), 1, + aux_sym_expression_token4, aux_sym_expression_token5, - STATE(593), 1, + anon_sym_COLON_EQ, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [31219] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, + aux_sym_expression_token1, + ACTIONS(2092), 1, + aux_sym_expression_token3, + ACTIONS(2094), 1, + aux_sym_expression_token5, + STATE(602), 1, aux_sym_expression_repeat2, - STATE(598), 1, - aux_sym_expression_repeat3, - STATE(601), 1, + STATE(605), 1, aux_sym_expression_repeat1, - ACTIONS(2086), 17, + STATE(608), 1, + aux_sym_expression_repeat3, + ACTIONS(2088), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41558,200 +41756,306 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31076] = 15, + [31260] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(2096), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2098), 1, + 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2100), 1, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(640), 1, - sym_general_access_modifier, - STATE(802), 1, - sym_null_exclusion, - STATE(1322), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2094), 2, - aux_sym_use_clause_token1, - aux_sym_general_access_modifier_token1, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31130] = 15, + ACTIONS(1983), 1, + aux_sym_package_specification_token3, + ACTIONS(2096), 1, + aux_sym_compilation_unit_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(561), 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, + [31311] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2008), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2098), 1, + aux_sym_package_specification_token3, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(560), 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, + [31362] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2004), 1, + aux_sym_package_specification_token3, + ACTIONS(2008), 1, + aux_sym_entry_declaration_token1, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(562), 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, + [31413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2100), 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, + [31442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2102), 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, + [31471] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(1809), 1, + ACTIONS(1831), 1, aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2060), 1, - aux_sym_component_definition_token1, - ACTIONS(2102), 1, - aux_sym_general_access_modifier_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(988), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1008), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31184] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, ACTIONS(2104), 1, anon_sym_COLON_EQ, - STATE(679), 1, + STATE(695), 1, sym_null_exclusion, - STATE(986), 1, + STATE(969), 1, sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1924), 1, + STATE(1712), 1, sym__assign_value, - STATE(982), 2, + STATE(1932), 1, + sym_value_sequence, + STATE(996), 2, sym_access_definition, sym_array_type_definition, - STATE(1102), 2, + STATE(1083), 2, sym__name, sym_function_call, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31238] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2108), 1, - anon_sym_PIPE, - STATE(570), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2106), 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, - [31269] = 14, + [31525] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(1809), 1, + ACTIONS(1831), 1, aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2111), 1, + ACTIONS(2082), 1, + aux_sym_component_definition_token1, + ACTIONS(2106), 1, aux_sym_general_access_modifier_token1, - STATE(679), 1, + STATE(695), 1, sym_null_exclusion, - STATE(978), 1, + STATE(972), 1, sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(982), 2, + STATE(1014), 2, sym_access_definition, sym_array_type_definition, - STATE(1102), 2, + STATE(1083), 2, sym__name, sym_function_call, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31320] = 3, + [31579] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 1, - anon_sym_DOT_DOT, - ACTIONS(2113), 20, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2110), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2112), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2114), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(633), 1, + sym_general_access_modifier, + STATE(780), 1, + sym_null_exclusion, + STATE(1256), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2108), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + anon_sym_PIPE, + STATE(575), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2116), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41768,220 +42072,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token3, aux_sym_expression_token4, aux_sym_expression_token5, - anon_sym_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31349] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(233), 1, - aux_sym_chunk_specification_token1, - ACTIONS(255), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2117), 1, - sym_identifier, - ACTIONS(2121), 1, - aux_sym_component_definition_token1, - STATE(650), 1, - sym_non_empty_mode, - STATE(723), 1, - sym_null_exclusion, - STATE(944), 1, - sym_access_definition, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2119), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(823), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [31400] = 10, + [31664] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2126), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2131), 1, - aux_sym_with_clause_token2, - ACTIONS(2134), 1, - aux_sym_use_clause_token2, - ACTIONS(2137), 1, - aux_sym_pragma_g_token1, - STATE(1613), 1, - sym__defining_identifier_list, - STATE(856), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2129), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(574), 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, - [31443] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2140), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2142), 1, - aux_sym_component_definition_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1175), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1061), 2, - sym_access_definition, - sym__return_subtype_indication, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31494] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(2146), 1, - aux_sym_with_clause_token2, - ACTIONS(2148), 1, - aux_sym_use_clause_token2, - STATE(1613), 1, - sym__defining_identifier_list, - STATE(856), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2144), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(574), 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, - [31537] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(2146), 1, - aux_sym_with_clause_token2, - ACTIONS(2148), 1, - aux_sym_use_clause_token2, - ACTIONS(2150), 1, - aux_sym_package_specification_token1, - ACTIONS(2153), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2156), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1613), 1, - sym__defining_identifier_list, - STATE(856), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - STATE(576), 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, - [31584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2161), 1, - anon_sym_PIPE, - STATE(570), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2159), 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, - [31615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2161), 1, anon_sym_PIPE, STATE(578), 1, aux_sym_membership_choice_list_repeat1, - ACTIONS(2163), 19, + ACTIONS(2121), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42001,69 +42102,166 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31646] = 13, + [31695] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2127), 1, + aux_sym_with_clause_token2, + ACTIONS(2129), 1, + aux_sym_use_clause_token2, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(888), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2125), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(579), 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, + [31738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 1, + anon_sym_PIPE, + STATE(575), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2131), 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, + [31769] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2133), 1, + sym_identifier, + ACTIONS(2136), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2141), 1, + aux_sym_with_clause_token2, + ACTIONS(2144), 1, + aux_sym_use_clause_token2, + ACTIONS(2147), 1, + aux_sym_pragma_g_token1, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(888), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2139), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(579), 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, + [31812] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(511), 1, sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2165), 1, + ACTIONS(2150), 1, aux_sym_general_access_modifier_token1, - STATE(679), 1, + ACTIONS(2152), 1, + aux_sym_component_definition_token1, + STATE(695), 1, sym_null_exclusion, - STATE(1175), 1, + STATE(1195), 1, sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1094), 2, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1113), 2, sym_access_definition, sym__return_subtype_indication, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(221), 3, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(264), 5, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31694] = 13, + [31863] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(233), 1, + ACTIONS(227), 1, aux_sym_chunk_specification_token1, - ACTIONS(255), 1, + ACTIONS(249), 1, aux_sym_non_empty_mode_token1, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2167), 1, + ACTIONS(2154), 1, sym_identifier, - STATE(627), 1, + ACTIONS(2158), 1, + aux_sym_component_definition_token1, + STATE(658), 1, sym_non_empty_mode, - STATE(686), 1, + STATE(728), 1, sym_null_exclusion, - STATE(996), 1, + STATE(954), 1, sym_access_definition, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2169), 3, + ACTIONS(2156), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(839), 7, + STATE(830), 7, sym__name, sym_selected_component, sym_slice, @@ -42071,301 +42269,161 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [31742] = 14, + [31914] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2171), 1, - aux_sym_component_definition_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1053), 1, - sym_component_definition, - STATE(1115), 1, - sym_access_definition, - STATE(1119), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31792] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2171), 1, - aux_sym_component_definition_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(980), 1, - sym_component_definition, - STATE(1115), 1, - sym_access_definition, - STATE(1119), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31842] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2171), 1, - aux_sym_component_definition_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1100), 1, - sym_component_definition, - STATE(1115), 1, - sym_access_definition, - STATE(1119), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 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, - 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_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31918] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(1809), 1, + ACTIONS(1831), 1, aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - STATE(679), 1, + ACTIONS(2160), 1, + aux_sym_general_access_modifier_token1, + STATE(695), 1, sym_null_exclusion, - STATE(1029), 1, + STATE(997), 1, sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1030), 2, + STATE(996), 2, sym_access_definition, sym_array_type_definition, - STATE(1102), 2, + STATE(1083), 2, sym__name, sym_function_call, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31966] = 13, + [31965] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2127), 1, + aux_sym_with_clause_token2, + ACTIONS(2129), 1, + aux_sym_use_clause_token2, + ACTIONS(2162), 1, + aux_sym_package_specification_token1, + ACTIONS(2165), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2168), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(888), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + STATE(577), 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, + [32012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_DOT_DOT, + ACTIONS(2171), 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, + [32041] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(835), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(1809), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - STATE(679), 1, + ACTIONS(2175), 1, + aux_sym_component_definition_token1, + STATE(695), 1, sym_null_exclusion, - STATE(986), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(982), 2, + STATE(1075), 1, sym_access_definition, - sym_array_type_definition, - STATE(1102), 2, + STATE(1076), 1, + sym__subtype_indication, + STATE(1131), 1, + sym_component_definition, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, sym__name, sym_function_call, - ACTIONS(535), 3, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(525), 5, + STATE(527), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 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, - 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_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2175), 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, - 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_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 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, - 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_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32092] = 9, + [32091] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(2177), 1, + sym_identifier, ACTIONS(2179), 1, - sym_identifier, - ACTIONS(2181), 1, anon_sym_LPAREN, - ACTIONS(2183), 1, + ACTIONS(2181), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2185), 1, aux_sym_range_attribute_designator_token1, - STATE(246), 1, + STATE(251), 1, sym_attribute_designator, - STATE(559), 1, + STATE(565), 1, sym_range_attribute_designator, - ACTIONS(2185), 4, + ACTIONS(2183), 4, aux_sym_attribute_designator_token1, aux_sym_attribute_designator_token2, aux_sym_attribute_designator_token3, aux_sym_attribute_designator_token4, - STATE(245), 10, + STATE(250), 10, sym__aggregate, sym__delta_aggregate, sym_extension_aggregate, @@ -42376,80 +42434,69 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [32132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2189), 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, - 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_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 1, - aux_sym_expression_token3, - STATE(596), 1, - aux_sym_expression_repeat2, - ACTIONS(2191), 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, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32187] = 11, + [32131] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2193), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(2197), 1, - anon_sym_SEMI, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(1263), 1, - sym_subprogram_default, - STATE(1651), 1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1033), 1, + sym__subtype_indication, + STATE(1932), 1, sym_value_sequence, - STATE(1726), 1, - sym_aspect_specification, - ACTIONS(2201), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2195), 3, + STATE(1034), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(947), 7, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32179] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2187), 1, + sym_identifier, + STATE(630), 1, + sym_non_empty_mode, + STATE(708), 1, + sym_null_exclusion, + STATE(985), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2189), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(851), 7, sym__name, sym_selected_component, sym_slice, @@ -42457,14 +42504,10 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [32230] = 4, + [32227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - aux_sym_expression_token5, - STATE(595), 1, - aux_sym_expression_repeat3, - ACTIONS(2203), 17, + ACTIONS(2191), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42475,20 +42518,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, 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, - [32259] = 4, + [32253] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2175), 1, + aux_sym_component_definition_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1022), 1, + sym_component_definition, + STATE(1075), 1, + sym_access_definition, + STATE(1076), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32303] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2193), 1, + aux_sym_general_access_modifier_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1195), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1127), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 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, + [32377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2195), 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, + [32403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2197), 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, + [32429] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(1831), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(969), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(996), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32477] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2175), 1, + aux_sym_component_definition_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1058), 1, + sym_component_definition, + STATE(1075), 1, + sym_access_definition, + STATE(1076), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 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, + [32553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2203), 1, + aux_sym_expression_token3, + STATE(598), 1, + aux_sym_expression_repeat2, + ACTIONS(2201), 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, + [32582] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1195), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1126), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32627] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1492), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1493), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32672] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, + sym_null_exclusion, + STATE(1195), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1107), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2092), 1, + aux_sym_expression_token3, + STATE(598), 1, + aux_sym_expression_repeat2, + ACTIONS(2206), 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, + [32746] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2210), 1, - aux_sym_expression_token3, - STATE(596), 1, - aux_sym_expression_repeat2, + aux_sym_expression_token5, + STATE(603), 1, + aux_sym_expression_repeat3, ACTIONS(2208), 17, anon_sym_COMMA, anon_sym_RPAREN, @@ -42500,220 +42933,107 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32288] = 4, + [32775] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - aux_sym_expression_token1, - STATE(597), 1, - aux_sym_expression_repeat1, - ACTIONS(2213), 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, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - aux_sym_expression_token5, - STATE(595), 1, - aux_sym_expression_repeat3, - ACTIONS(2191), 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, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32346] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1471), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - STATE(1475), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32391] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1175), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1096), 2, - sym_access_definition, - sym__return_subtype_indication, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(221), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(264), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 1, - aux_sym_expression_token1, - STATE(597), 1, - aux_sym_expression_repeat1, - ACTIONS(2191), 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, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32465] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 1, + ACTIONS(1937), 1, aux_sym_chunk_specification_token1, - ACTIONS(1929), 1, + ACTIONS(1939), 1, aux_sym_relation_membership_token1, - ACTIONS(2115), 1, + ACTIONS(2173), 1, anon_sym_DOT_DOT, STATE(304), 1, sym_relational_operator, - ACTIONS(1921), 3, + ACTIONS(1931), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1923), 3, + ACTIONS(1933), 3, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1925), 9, + ACTIONS(1935), 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, + [32812] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, + aux_sym_expression_token1, + STATE(607), 1, + aux_sym_expression_repeat1, + ACTIONS(2206), 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, - [32502] = 12, + 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, + [32841] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(511), 1, + ACTIONS(2213), 1, sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - STATE(679), 1, - sym_null_exclusion, - STATE(1175), 1, - sym__subtype_indication, - STATE(1651), 1, + ACTIONS(2217), 1, + anon_sym_SEMI, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1272), 1, + sym_subprogram_default, + STATE(1687), 1, + sym_aspect_specification, + STATE(1932), 1, sym_value_sequence, - STATE(1075), 2, - sym_access_definition, - sym__return_subtype_indication, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(221), 3, + ACTIONS(2221), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(264), 5, + STATE(951), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32547] = 2, + sym_function_call, + [32884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 18, + ACTIONS(2225), 1, + aux_sym_expression_token1, + STATE(607), 1, + aux_sym_expression_repeat1, + ACTIONS(2223), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42724,75 +43044,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32571] = 7, + [32913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, - sym_identifier, - ACTIONS(2181), 1, - anon_sym_LPAREN, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(246), 1, - sym_attribute_designator, - ACTIONS(2185), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(245), 10, - 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, - [32605] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(943), 1, - anon_sym_DOT, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - sym_tick, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1337), 1, - sym_iterator_filter, - ACTIONS(981), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2220), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(983), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 18, + ACTIONS(2094), 1, + aux_sym_expression_token5, + STATE(603), 1, + aux_sym_expression_repeat3, + ACTIONS(2206), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42803,94 +43069,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + [32942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2201), 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, - anon_sym_PIPE, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32669] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(943), 1, - anon_sym_DOT, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - sym_tick, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1149), 1, - sym_iterator_filter, - ACTIONS(981), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2226), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(983), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [32709] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2179), 1, - sym_identifier, - ACTIONS(2181), 1, - anon_sym_LPAREN, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(1073), 1, - sym_attribute_designator, - ACTIONS(2185), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(245), 10, - 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, - [32743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 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, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_PIPE, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32767] = 2, + [32966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2208), 18, @@ -42904,38 +43112,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PIPE, + aux_sym_expression_token5, aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32791] = 11, + [32990] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, ACTIONS(2228), 1, sym_identifier, ACTIONS(2232), 1, - anon_sym_LPAREN, - STATE(496), 1, - sym__subtype_indication_paren_constraint, - STATE(642), 1, - sym_subpool_specification, - STATE(778), 1, - sym_null_exclusion, - STATE(1651), 1, + aux_sym_package_specification_token3, + ACTIONS(2234), 1, + aux_sym_at_clause_token1, + STATE(635), 1, + sym_mod_clause, + STATE(1932), 1, sym_value_sequence, + STATE(636), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, ACTIONS(2230), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(266), 7, + STATE(1019), 7, sym__name, sym_selected_component, sym_slice, @@ -42943,134 +43150,71 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [32833] = 11, + [33030] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2048), 1, - sym_identifier, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2056), 1, - aux_sym_exception_declaration_token1, - STATE(714), 1, - sym_null_exclusion, - STATE(1530), 1, - sym_access_definition, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2050), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1016), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32875] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(233), 1, - aux_sym_chunk_specification_token1, - ACTIONS(255), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2234), 1, - sym_identifier, - STATE(660), 1, - sym_non_empty_mode, - STATE(758), 1, - sym_null_exclusion, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(825), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32917] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, + ACTIONS(951), 1, + anon_sym_DOT, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(1711), 1, + sym_tick, ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2242), 1, - aux_sym_package_specification_token3, - ACTIONS(2244), 1, - aux_sym_at_clause_token1, - STATE(645), 1, - sym_mod_clause, - STATE(1651), 1, - sym_value_sequence, - STATE(646), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2240), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1009), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32957] = 12, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1276), 1, + sym_iterator_filter, + ACTIONS(975), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2236), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(977), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [33070] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - STATE(679), 1, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2244), 1, + anon_sym_LPAREN, + STATE(500), 1, + sym__subtype_indication_paren_constraint, + STATE(641), 1, + sym_subpool_specification, + STATE(752), 1, sym_null_exclusion, - STATE(1064), 1, - sym_access_definition, - STATE(1065), 1, - sym__subtype_indication, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, + ACTIONS(2242), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(525), 5, + STATE(270), 7, + sym__name, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [33001] = 2, + sym_function_call, + [33112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 18, + ACTIONS(2246), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -43081,90 +43225,64 @@ static const uint16_t ts_small_parse_table[] = { 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_token4, 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, - [33025] = 10, + [33136] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2246), 1, - sym_identifier, - ACTIONS(2250), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2252), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2254), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2256), 1, - aux_sym_general_access_modifier_token1, - STATE(1651), 1, - sym_value_sequence, + ACTIONS(951), 1, + anon_sym_DOT, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(1711), 1, + sym_tick, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1197), 1, + sym_iterator_filter, + ACTIONS(975), 2, + anon_sym_DASH, + anon_sym_STAR, ACTIONS(2248), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(699), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33064] = 10, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(977), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [33176] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2258), 1, - sym_identifier, - ACTIONS(2262), 1, - aux_sym_component_choice_list_token1, - STATE(1291), 1, - sym_exception_choice, - STATE(1651), 1, - sym_value_sequence, - STATE(1871), 1, - sym_exception_choice_list, - STATE(1872), 1, - sym_choice_parameter_specification, - ACTIONS(2260), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33103] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2048), 1, + ACTIONS(2025), 1, sym_identifier, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - STATE(714), 1, + ACTIONS(2033), 1, + aux_sym_exception_declaration_token1, + STATE(742), 1, sym_null_exclusion, - STATE(1530), 1, + STATE(1761), 1, sym_access_definition, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2050), 3, + ACTIONS(2027), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -43176,102 +43294,111 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33142] = 4, + [33218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 1, - aux_sym_range_attribute_designator_token1, - STATE(654), 1, - sym_range_constraint, - ACTIONS(2264), 15, + ACTIONS(2250), 18, 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, + aux_sym_attribute_designator_token3, anon_sym_SEMI, + aux_sym_package_specification_token2, aux_sym_with_clause_token2, - aux_sym_expression_token1, - aux_sym_expression_token3, anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 1, aux_sym_range_attribute_designator_token1, - STATE(661), 1, - sym_range_constraint, - ACTIONS(2266), 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, aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33196] = 9, + [33242] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2193), 1, + ACTIONS(2177), 1, sym_identifier, - ACTIONS(2268), 1, - aux_sym_private_type_declaration_token1, - STATE(1226), 1, - sym_subprogram_default, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2201), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2195), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33233] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2181), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, + STATE(1062), 1, + sym_attribute_designator, + ACTIONS(2183), 4, aux_sym_attribute_designator_token1, - ACTIONS(2270), 1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(250), 10, + 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, + [33276] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, sym_identifier, - STATE(732), 1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(695), 1, sym_null_exclusion, - STATE(828), 1, + STATE(1111), 1, + sym__subtype_indication, + STATE(1112), 1, sym_access_definition, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2272), 3, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(737), 7, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33320] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2252), 1, + sym_identifier, + STATE(666), 1, + sym_non_empty_mode, + STATE(793), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2254), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(828), 7, sym__name, sym_selected_component, sym_slice, @@ -43279,24 +43406,154 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33272] = 10, + [33362] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + sym_identifier, + ACTIONS(2179), 1, + anon_sym_LPAREN, + ACTIONS(2181), 1, + anon_sym_LBRACK, + STATE(251), 1, + sym_attribute_designator, + ACTIONS(2183), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(250), 10, + 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, + [33396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 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, + [33420] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2274), 1, + ACTIONS(2256), 1, sym_identifier, - ACTIONS(2278), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2280), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2282), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2284), 1, - aux_sym_general_access_modifier_token1, - STATE(1651), 1, + ACTIONS(2260), 1, + aux_sym_component_choice_list_token1, + STATE(1162), 1, + sym_exception_choice, + STATE(1843), 1, + sym_choice_parameter_specification, + STATE(1846), 1, + sym_exception_choice_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2276), 3, + ACTIONS(2258), 3, + 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, + [33459] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2262), 1, + sym_identifier, + ACTIONS(2266), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2268), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2270), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2272), 1, + aux_sym_general_access_modifier_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2264), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(705), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33498] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + STATE(670), 1, + sym_range_constraint, + ACTIONS(2274), 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, + [33525] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2276), 1, + sym_identifier, + ACTIONS(2280), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2282), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2284), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2286), 1, + aux_sym_general_access_modifier_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2278), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -43308,28 +43565,27 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33311] = 10, + [33564] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2054), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2286), 1, + ACTIONS(2213), 1, sym_identifier, - STATE(696), 1, - sym_null_exclusion, - STATE(1111), 1, - sym_access_definition, - STATE(1651), 1, + ACTIONS(2288), 1, + aux_sym_private_type_declaration_token1, + STATE(1222), 1, + sym_subprogram_default, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2288), 3, + ACTIONS(2221), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(951), 7, sym__name, sym_selected_component, sym_slice, @@ -43337,2552 +43593,76 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33350] = 10, + [33601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + STATE(669), 1, + sym_range_constraint, + ACTIONS(2290), 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, + [33628] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1793), 1, + ACTIONS(1815), 1, aux_sym_relation_membership_token1, - ACTIONS(2054), 1, + ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2290), 1, + ACTIONS(2292), 1, + sym_identifier, + STATE(736), 1, + sym_null_exclusion, + STATE(831), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2294), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(734), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33667] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2296), 1, sym_identifier, STATE(689), 1, sym_null_exclusion, - STATE(984), 1, + STATE(988), 1, sym_access_definition, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2292), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33389] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 1, - sym_identifier, - ACTIONS(2300), 1, - anon_sym_LBRACK, - ACTIONS(2303), 1, - aux_sym_package_specification_token3, - STATE(1651), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2297), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1009), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33423] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1099), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33461] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1479), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33499] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1339), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33537] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2305), 1, - aux_sym_package_specification_token3, - STATE(1651), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2240), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1009), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33571] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2262), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2307), 1, - sym_identifier, - STATE(1291), 1, - sym_exception_choice, - STATE(1637), 1, - sym_exception_choice_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2260), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33607] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1429), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33645] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1121), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33683] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1136), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33721] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1083), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33759] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(429), 1, - aux_sym_component_choice_list_token1, - ACTIONS(433), 1, - sym_string_literal, - ACTIONS(453), 1, - sym_identifier, - STATE(528), 1, - sym_selected_component, - STATE(1389), 1, - sym__named_record_component_association, - STATE(1651), 1, - sym_value_sequence, - STATE(1876), 1, - sym_component_choice_list, - ACTIONS(2309), 2, - sym_character_literal, - sym_target_name, - STATE(1102), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33799] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2311), 1, - aux_sym_package_specification_token1, - ACTIONS(2313), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2315), 1, - aux_sym_interface_type_definition_token1, - STATE(1038), 1, - sym_overriding_indicator, - STATE(1293), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(478), 5, - sym__proper_body, - sym_subprogram_body, - sym_package_body, - sym_task_body, - sym_protected_body, - [33839] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1169), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33877] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2317), 1, - sym_identifier, - ACTIONS(2321), 1, - aux_sym_use_clause_token1, - ACTIONS(2323), 1, - aux_sym_use_clause_token2, - STATE(1501), 1, - sym__name_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2319), 3, - 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, - [33913] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2228), 1, - sym_identifier, - STATE(492), 1, - sym__subtype_indication_paren_constraint, - STATE(778), 1, - sym_null_exclusion, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2230), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(266), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33949] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1139), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33987] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1063), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34025] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2325), 1, - aux_sym_package_specification_token3, - STATE(1651), 1, - sym_value_sequence, - STATE(632), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2240), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1009), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34059] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2325), 1, - aux_sym_package_specification_token3, - STATE(1651), 1, - sym_value_sequence, - STATE(628), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2240), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1009), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34093] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(835), 1, - sym_identifier, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - STATE(802), 1, - sym_null_exclusion, - STATE(1227), 1, - sym__subtype_indication, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(535), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(525), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34131] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34152] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2329), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34173] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2234), 1, - sym_identifier, - STATE(758), 1, - sym_null_exclusion, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(825), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34206] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2331), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - STATE(1508), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2333), 3, - 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, - [34237] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2335), 1, - aux_sym_allocator_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1762), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34272] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2337), 1, - aux_sym_allocator_token1, - STATE(1545), 1, - sym_task_definition, - STATE(1550), 1, - sym_overriding_indicator, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2339), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34328] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2262), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2307), 1, - sym_identifier, - STATE(1445), 1, - sym_exception_choice, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2260), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(935), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34361] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2341), 1, - aux_sym_allocator_token1, - STATE(1516), 1, - sym_task_definition, - STATE(1550), 1, - sym_overriding_indicator, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34396] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2343), 1, - aux_sym_allocator_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1737), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34431] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2345), 1, - aux_sym_allocator_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1764), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34466] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2347), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2352), 1, - aux_sym_relation_membership_token1, - ACTIONS(2355), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2358), 1, - aux_sym_global_mode_token1, - STATE(1550), 1, - sym_overriding_indicator, - ACTIONS(2350), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(659), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34499] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1793), 1, - aux_sym_relation_membership_token1, - ACTIONS(2361), 1, - sym_identifier, - STATE(751), 1, - sym_null_exclusion, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2363), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34553] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_primary_null_token1, - ACTIONS(2369), 1, - aux_sym_case_expression_token1, - STATE(1359), 1, - sym_variant_part, - STATE(1907), 1, - sym_component_list, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(667), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34588] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2371), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2373), 1, - aux_sym_package_specification_token3, - STATE(1550), 1, - sym_overriding_indicator, - STATE(659), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34623] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(2379), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2381), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2377), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(955), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 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, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_PIPE, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34677] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(2367), 1, - aux_sym_primary_null_token1, - ACTIONS(2369), 1, - aux_sym_case_expression_token1, - STATE(1359), 1, - sym_variant_part, - STATE(1365), 1, - sym_component_list, - STATE(1909), 1, - sym__defining_identifier_list, - STATE(667), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34712] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(2369), 1, - aux_sym_case_expression_token1, - STATE(1469), 1, - sym_variant_part, - STATE(1909), 1, - sym__defining_identifier_list, - ACTIONS(2385), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(704), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34745] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1438), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34773] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2391), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2389), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1044), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1768), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34829] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2393), 4, - sym_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, - [34857] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2397), 4, - sym_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, - [34885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2403), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2401), 4, - sym_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, - [34913] = 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(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1799), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34945] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1667), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34973] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1647), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35001] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(943), 1, - anon_sym_DOT, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1691), 1, - sym_tick, - ACTIONS(2405), 1, - aux_sym_range_attribute_designator_token1, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(981), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(983), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [35033] = 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(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1864), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35065] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2407), 1, - sym_identifier, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - STATE(1651), 1, - sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(2409), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(529), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [35097] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1806), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35125] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1848), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35153] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1399), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35181] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1374), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35209] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2413), 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, - [35237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1870), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35265] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - sym_identifier, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2292), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35295] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2417), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2415), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(946), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1401), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35351] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2419), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2421), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(845), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1454), 1, - sym__name_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2423), 4, - sym_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, - [35409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2425), 4, - sym_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, - [35437] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2429), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1026), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35465] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1648), 1, - sym_reduction_specification, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2433), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1036), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35493] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2437), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2435), 4, - sym_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, - [35521] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2441), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2439), 4, - sym_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, - [35549] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2443), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2445), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(862), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35579] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1917), 1, - sym__name_list, - ACTIONS(2319), 4, - sym_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, - [35607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2447), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(966), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35635] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2451), 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, - [35663] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1265), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2455), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2453), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1011), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35719] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2457), 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, - [35747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1418), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35775] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2459), 1, - sym_identifier, - ACTIONS(2462), 1, - aux_sym_iterated_element_association_token1, - STATE(1909), 1, - sym__defining_identifier_list, - ACTIONS(2465), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_case_expression_token1, - STATE(704), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [35803] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1703), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35831] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1767), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35859] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1525), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1526), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35915] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1689), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35943] = 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(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1687), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [35975] = 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(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1550), 1, - sym_overriding_indicator, - STATE(1686), 1, - sym_task_definition, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36007] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1564), 1, - sym__name_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_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, - [36035] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1796), 1, - sym__name_list, - ACTIONS(2319), 4, - sym_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, - [36063] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2467), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2469), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(967), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36093] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2475), 1, - aux_sym_package_body_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2473), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(864), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36123] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1859), 1, - sym__name_list, - ACTIONS(2319), 4, - sym_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, - [36151] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1657), 1, - sym__interface_list, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36179] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1605), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2479), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2477), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1015), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36235] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1153), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36263] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2483), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2481), 4, - sym_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, - [36291] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2485), 1, - sym_identifier, - ACTIONS(2489), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2487), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(843), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36321] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2236), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(825), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36351] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1643), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36379] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1576), 1, - sym__name_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2319), 4, - sym_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, - [36407] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1447), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36435] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2493), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2491), 4, - sym_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, - [36463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2497), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2495), 4, - sym_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, - [36491] = 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(203), 1, - aux_sym_iterated_element_association_token1, - STATE(1512), 1, - sym_task_definition, - STATE(1550), 1, - sym_overriding_indicator, - STATE(663), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36523] = 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(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2499), 1, - aux_sym_package_specification_token3, - STATE(1550), 1, - sym_overriding_indicator, - STATE(659), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [36555] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2501), 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, - [36583] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2411), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2503), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2505), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(702), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36613] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - sym_identifier, - ACTIONS(2511), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2509), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(842), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36643] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2513), 1, - sym_identifier, - ACTIONS(2517), 1, - aux_sym_loop_parameter_specification_token1, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2515), 3, + ACTIONS(2298), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -45894,21 +43674,629 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36673] = 6, + [33706] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2300), 1, + sym_identifier, + STATE(718), 1, + sym_null_exclusion, + STATE(1123), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2302), 3, + 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, + [33745] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2025), 1, + sym_identifier, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(742), 1, + sym_null_exclusion, + STATE(1761), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2027), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1016), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33784] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1217), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33822] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1073), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33860] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2228), 1, + sym_identifier, + ACTIONS(2304), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(644), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2230), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33894] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2228), 1, + sym_identifier, + ACTIONS(2304), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(648), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2230), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33928] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1140), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33966] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2260), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2306), 1, + sym_identifier, + STATE(1162), 1, + sym_exception_choice, + STATE(1531), 1, + sym_exception_choice_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2258), 3, + 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, + [34002] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1262), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34040] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1497), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34078] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2240), 1, + sym_identifier, + STATE(499), 1, + sym__subtype_indication_paren_constraint, + STATE(752), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2242), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(270), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34114] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2308), 1, + sym_identifier, + ACTIONS(2312), 1, + aux_sym_use_clause_token1, + ACTIONS(2314), 1, + aux_sym_use_clause_token2, + STATE(1898), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 3, + 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, + [34150] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1141), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34188] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2228), 1, + sym_identifier, + ACTIONS(2316), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(648), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2230), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34222] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2318), 1, + aux_sym_package_specification_token1, + ACTIONS(2320), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2322), 1, + aux_sym_interface_type_definition_token1, + STATE(1045), 1, + sym_overriding_indicator, + STATE(1237), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(483), 5, + sym__proper_body, + sym_subprogram_body, + sym_package_body, + sym_task_body, + sym_protected_body, + [34262] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1114), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34300] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1384), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34338] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + sym_identifier, + ACTIONS(2330), 1, + anon_sym_LBRACK, + ACTIONS(2333), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(648), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2327), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34372] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1074), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34410] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1438), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34448] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + STATE(780), 1, + sym_null_exclusion, + STATE(1119), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(527), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34486] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2340), 1, + aux_sym_relation_membership_token1, + ACTIONS(2343), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2346), 1, + aux_sym_global_mode_token1, + STATE(1612), 1, + sym_overriding_indicator, + ACTIONS(2338), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(652), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34519] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2349), 1, + sym_identifier, + ACTIONS(2353), 1, + aux_sym_iterator_filter_token1, + ACTIONS(2355), 1, anon_sym_SEMI, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2519), 4, - sym_identifier, + ACTIONS(2351), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(985), 7, + STATE(947), 7, sym__name, sym_selected_component, sym_slice, @@ -45916,65 +44304,121 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36701] = 6, + [34552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1514), 1, - sym__interface_list, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2387), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(833), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2523), 10, + ACTIONS(2357), 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_package_specification_token2, aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_expression_token1, aux_sym_expression_token3, anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36757] = 6, + aux_sym_loop_statement_token1, + [34573] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2359), 1, + aux_sym_primary_null_token1, + ACTIONS(2361), 1, + aux_sym_case_expression_token1, + STATE(1351), 1, + sym_variant_part, + STATE(1448), 1, + sym_component_list, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(664), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [34608] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2363), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2365), 1, + aux_sym_package_specification_token3, + STATE(1612), 1, + sym_overriding_indicator, + STATE(652), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34643] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2367), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1961), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34678] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - STATE(1861), 1, - sym__interface_list, - ACTIONS(2387), 4, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2252), 1, sym_identifier, + STATE(793), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2254), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(833), 7, + STATE(828), 7, sym__name, sym_selected_component, sym_slice, @@ -45982,43 +44426,120 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36785] = 6, + [34711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1461), 1, - sym_index_subtype_definition, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2525), 4, - sym_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, - [36813] = 6, + 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2369), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1706), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2529), 1, + ACTIONS(2371), 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, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2527), 4, + 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, + [34767] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2373), 1, + aux_sym_allocator_token1, + STATE(1611), 1, + sym_task_definition, + STATE(1612), 1, + sym_overriding_indicator, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34802] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, sym_identifier, + ACTIONS(2359), 1, + aux_sym_primary_null_token1, + ACTIONS(2361), 1, + aux_sym_case_expression_token1, + STATE(1351), 1, + sym_variant_part, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1819), 1, + sym_component_list, + STATE(664), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [34837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2375), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + STATE(1903), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(2377), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(981), 7, + STATE(1002), 7, sym__name, sym_selected_component, sym_slice, @@ -46026,360 +44547,71 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36841] = 6, + [34868] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2361), 1, + aux_sym_case_expression_token1, + STATE(1504), 1, + sym_variant_part, + STATE(1810), 1, + sym__defining_identifier_list, + ACTIONS(2379), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + STATE(723), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [34901] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2381), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1962), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34936] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2533), 1, - anon_sym_SEMI, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2531), 4, + ACTIONS(1815), 1, + aux_sym_relation_membership_token1, + ACTIONS(2383), 1, sym_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, - [36869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1506), 1, - sym__name_list, - STATE(1651), 1, + STATE(786), 1, + sym_null_exclusion, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2319), 4, - sym_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, - [36897] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2535), 4, - sym_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, - [36922] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2537), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(832), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36947] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2539), 4, - sym_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, - [36972] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2541), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(916), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2543), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(835), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2545), 4, - sym_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, - [37047] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2547), 1, - sym_identifier, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2541), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(916), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2549), 4, - sym_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, - [37099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2551), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(827), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2553), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(684), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37149] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2555), 4, - sym_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, - [37174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2557), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(852), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2559), 4, - sym_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, - [37224] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2561), 4, - sym_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, - [37249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2563), 4, - sym_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, - [37274] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2363), 4, - sym_identifier, + ACTIONS(2385), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -46391,19 +44623,43 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37299] = 5, + [34969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 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, + [34990] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2565), 4, + ACTIONS(2260), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2306), 1, sym_identifier, + STATE(1452), 1, + sym_exception_choice, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2258), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(920), 7, + STATE(968), 7, sym__name, sym_selected_component, sym_slice, @@ -46411,19 +44667,123 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37324] = 5, + [35023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2389), 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, + [35044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2391), 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, + [35065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 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, + [35086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2395), 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, + [35107] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2397), 1, + aux_sym_allocator_token1, + STATE(1522), 1, + sym_task_definition, + STATE(1612), 1, + sym_overriding_indicator, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35142] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1705), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2567), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(897), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46431,19 +44791,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37349] = 5, + [35170] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(2403), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2569), 4, + ACTIONS(2401), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(868), 7, + STATE(1009), 7, sym__name, sym_selected_component, sym_slice, @@ -46451,20 +44813,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37374] = 6, + [35198] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2571), 1, - sym_identifier, - STATE(1651), 1, + STATE(1502), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2333), 3, + ACTIONS(2399), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(965), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46472,19 +44835,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37401] = 5, + [35226] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1519), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2573), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(544), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46492,57 +44857,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37426] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(1170), 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, - [37449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(229), 1, - anon_sym_LPAREN, - ACTIONS(2183), 1, - anon_sym_LBRACK, - STATE(1277), 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, - [37472] = 5, + [35254] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1784), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2575), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(915), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46550,19 +44879,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37497] = 5, + [35282] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1714), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2577), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1051), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46570,19 +44901,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37522] = 5, + [35310] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1490), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2579), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(908), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46590,34 +44923,40 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37547] = 5, + [35338] = 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(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2405), 1, + aux_sym_package_specification_token3, + STATE(1612), 1, + sym_overriding_indicator, + STATE(652), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35370] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1737), 1, + sym__name_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2581), 4, - sym_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, - [37572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2583), 4, + ACTIONS(2310), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46630,19 +44969,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37597] = 5, + [35398] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(2409), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2585), 4, + ACTIONS(2407), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(921), 7, + STATE(1018), 7, sym__name, sym_selected_component, sym_slice, @@ -46650,7 +44991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37622] = 7, + [35426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -46661,9 +45002,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - STATE(1550), 1, + STATE(1515), 1, + sym_task_definition, + STATE(1612), 1, sym_overriding_indicator, - STATE(730), 8, + STATE(656), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -46672,41 +45015,21 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [37651] = 7, + [35458] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(992), 1, - sym_selected_component, - STATE(1651), 1, + ACTIONS(2413), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2309), 2, - sym_character_literal, - sym_target_name, - ACTIONS(2587), 2, - sym_identifier, - sym_string_literal, - STATE(1102), 6, - sym__name, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2589), 4, + ACTIONS(2411), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(923), 7, + STATE(1017), 7, sym__name, sym_selected_component, sym_slice, @@ -46714,14 +45037,1290 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37705] = 5, + [35486] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(2417), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2591), 4, + ACTIONS(2415), 4, + sym_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, + [35514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1745), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 4, + sym_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, + [35542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2421), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2419), 4, + sym_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, + [35570] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + sym_identifier, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2425), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(839), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35600] = 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1815), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35632] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2429), 1, + sym_identifier, + ACTIONS(2433), 1, + aux_sym_package_body_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2431), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(872), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35662] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1822), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1878), 1, + sym_reduction_specification, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2435), 4, + sym_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, + [35718] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1748), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 4, + sym_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, + [35746] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2437), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(2439), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(533), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [35778] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2441), 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, + [35806] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, + anon_sym_DOT, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(1711), 1, + sym_tick, + ACTIONS(2443), 1, + aux_sym_range_attribute_designator_token1, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(975), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(977), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [35838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1765), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1643), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1768), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35922] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1719), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1892), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 4, + sym_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, + [35978] = 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1880), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36010] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2447), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2445), 4, + sym_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, + [36038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2449), 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, + [36066] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2451), 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, + [36094] = 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1703), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36126] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2296), 1, + sym_identifier, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2298), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(840), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1886), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1163), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36212] = 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1702), 1, + sym_task_definition, + STATE(656), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [36244] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1545), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 4, + sym_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, + [36272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2455), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2453), 4, + sym_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, + [36300] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2459), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2457), 4, + sym_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, + [36328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2463), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2461), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(944), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36356] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2465), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1023), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1509), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2310), 4, + sym_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, + [36412] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2469), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2471), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(869), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36442] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2473), 1, + sym_identifier, + ACTIONS(2477), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2475), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(842), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36472] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1253), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1672), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36528] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1349), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2479), 1, + sym_identifier, + ACTIONS(2482), 1, + aux_sym_iterated_element_association_token1, + STATE(1810), 1, + sym__defining_identifier_list, + ACTIONS(2485), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_case_expression_token1, + STATE(723), 8, + sym__component_item, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_record_representation_clause, + aux_sym_component_list_repeat1, + [36584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1386), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36612] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1658), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36640] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1380), 1, + sym_index_subtype_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2487), 4, + sym_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, + [36668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1362), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36696] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2252), 1, + sym_identifier, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2254), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(828), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36726] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1862), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36754] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2491), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2489), 4, + sym_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, + [36782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2493), 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, + [36810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2497), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2495), 4, + sym_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, + [36838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2501), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2499), 4, + sym_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, + [36866] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2503), 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, + [36894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1460), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36922] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2505), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2507), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(696), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36952] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2511), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2509), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1030), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1848), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2515), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2513), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1044), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37036] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1864), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2399), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37064] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2519), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2517), 4, + sym_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, + [37092] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2427), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2521), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2523), 3, + 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, + [37122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1428), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2525), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46734,19 +46333,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37730] = 5, + [37150] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1534), 1, + sym__interface_list, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2593), 4, + ACTIONS(2399), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(926), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46754,19 +46355,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37755] = 5, + [37178] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2473), 4, + ACTIONS(2527), 1, sym_identifier, + ACTIONS(2531), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2529), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(864), 7, + STATE(846), 7, sym__name, sym_selected_component, sym_slice, @@ -46774,19 +46378,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37780] = 5, + [37208] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(2535), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2595), 4, + ACTIONS(2533), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(267), 7, + STATE(979), 7, sym__name, sym_selected_component, sym_slice, @@ -46794,19 +46400,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37805] = 5, + [37236] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(2539), 1, + anon_sym_SEMI, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2597), 4, + ACTIONS(2537), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(902), 7, + STATE(1055), 7, sym__name, sym_selected_component, sym_slice, @@ -46814,38 +46422,101 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37830] = 4, + [37264] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, - aux_sym_chunk_specification_token1, - ACTIONS(919), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(921), 10, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2541), 1, + sym_identifier, + ACTIONS(2545), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2543), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2547), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(924), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37319] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2549), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(847), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR_STAR, - [37853] = 5, + ACTIONS(2181), 1, + anon_sym_LBRACK, + STATE(1229), 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, + [37367] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2601), 4, + ACTIONS(2551), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1021), 7, + STATE(268), 7, sym__name, sym_selected_component, sym_slice, @@ -46853,19 +46524,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37878] = 5, + [37392] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2603), 4, + ACTIONS(2553), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(899), 7, + STATE(907), 7, sym__name, sym_selected_component, sym_slice, @@ -46873,19 +46544,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37903] = 5, + [37417] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2276), 4, + ACTIONS(2555), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(731), 7, + STATE(946), 7, sym__name, sym_selected_component, sym_slice, @@ -46893,19 +46564,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37928] = 5, + [37442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2605), 4, + ACTIONS(2557), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(887), 7, + STATE(915), 7, sym__name, sym_selected_component, sym_slice, @@ -46913,14 +46584,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37953] = 5, + [37467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2607), 4, + ACTIONS(2559), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46933,19 +46604,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37978] = 5, + [37492] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2609), 4, + ACTIONS(2431), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1033), 7, + STATE(872), 7, sym__name, sym_selected_component, sym_slice, @@ -46953,14 +46624,292 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38003] = 5, + [37517] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2611), 4, + ACTIONS(2561), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(928), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37542] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2563), 4, + sym_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, + [37567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2565), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2567), 11, + 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, + [37588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2569), 4, + sym_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, + [37613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2571), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(881), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37638] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2573), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(883), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2575), 4, + sym_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, + [37688] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2278), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(731), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2577), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(986), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37738] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2579), 4, + sym_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, + [37763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2581), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(706), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2583), 4, + sym_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, + [37813] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2585), 4, + sym_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, + [37838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2587), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(867), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2589), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46973,19 +46922,259 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38028] = 5, + [37888] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2591), 4, + sym_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, + [37913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2593), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(866), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2595), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(854), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2597), 4, + sym_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, + [37988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2599), 4, + sym_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, + [38013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2601), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(843), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2603), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(920), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(2439), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(533), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [38090] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2605), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(922), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2607), 4, + sym_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, + [38140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2609), 1, + aux_sym_chunk_specification_token1, + ACTIONS(917), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(919), 10, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR_STAR, + [38163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2611), 4, + sym_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, + [38188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, sym_value_sequence, ACTIONS(2613), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(850), 7, + STATE(984), 7, sym__name, sym_selected_component, sym_slice, @@ -46993,19 +47182,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38053] = 5, + [38213] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2615), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(919), 7, + STATE(834), 7, sym__name, sym_selected_component, sym_slice, @@ -47013,38 +47202,79 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2617), 1, - sym_identifier, - ACTIONS(2621), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(2619), 11, - 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, - [38101] = 5, + [38238] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2617), 4, + sym_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, + [38263] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2619), 4, + sym_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, + [38288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2621), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(557), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, sym_value_sequence, ACTIONS(2623), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(870), 7, + STATE(912), 7, sym__name, sym_selected_component, sym_slice, @@ -47052,44 +47282,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38126] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1917), 1, - aux_sym_iterator_filter_token1, - ACTIONS(1919), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(814), 1, - sym_guard, - STATE(1187), 1, - sym_select_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1229), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38161] = 5, + [38338] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2625), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1046), 7, + STATE(992), 7, sym__name, sym_selected_component, sym_slice, @@ -47097,19 +47302,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38186] = 5, + [38363] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2627), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(836), 7, + STATE(845), 7, sym__name, sym_selected_component, sym_slice, @@ -47117,14 +47322,55 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38211] = 5, + [38388] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - ACTIONS(2629), 4, + ACTIONS(2385), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(829), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38413] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2629), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2599), 3, + 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, + [38440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2631), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47137,39 +47383,44 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38236] = 5, + [38465] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1927), 1, + aux_sym_iterator_filter_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(29), 1, + sym_accept_statement, + STATE(819), 1, + sym_guard, + STATE(1285), 1, + sym_select_alternative, + STATE(28), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1261), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [38500] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2631), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(838), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38261] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2633), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(896), 7, + STATE(850), 7, sym__name, sym_selected_component, sym_slice, @@ -47177,19 +47428,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38286] = 5, + [38525] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2635), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(846), 7, + STATE(848), 7, sym__name, sym_selected_component, sym_slice, @@ -47197,19 +47448,60 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38311] = 5, + [38550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(2181), 1, + anon_sym_LBRACK, + STATE(1265), 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, + [38573] = 7, + 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(203), 1, + aux_sym_iterated_element_association_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(681), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [38602] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2637), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1040), 7, + STATE(1025), 7, sym__name, sym_selected_component, sym_slice, @@ -47217,19 +47509,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38336] = 5, + [38627] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, ACTIONS(2639), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1039), 7, + STATE(903), 7, sym__name, sym_selected_component, sym_slice, @@ -47237,58 +47529,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2641), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2643), 11, - 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, - [38382] = 6, + [38652] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1932), 1, sym_value_sequence, - STATE(1102), 2, - sym__name, - sym_function_call, - ACTIONS(2409), 4, + ACTIONS(2641), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(529), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [38409] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2645), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(837), 7, + STATE(1036), 7, sym__name, sym_selected_component, sym_slice, @@ -47296,50 +47549,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38434] = 5, + [38677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1651), 1, - sym_value_sequence, - ACTIONS(2647), 4, + ACTIONS(2643), 1, sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(861), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(826), 1, - sym_formal_part, - ACTIONS(2651), 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, - [38481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2617), 1, - sym_identifier, - ACTIONS(2619), 11, + ACTIONS(2647), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(2645), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -47351,14 +47568,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38501] = 4, + [38700] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, ACTIONS(2649), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2377), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1002), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2651), 4, + sym_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, + [38752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2653), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(927), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2655), 4, + sym_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, + [38802] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2657), 4, + sym_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, + [38827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, anon_sym_LPAREN, - STATE(824), 1, + STATE(832), 1, sym_formal_part, - ACTIONS(2653), 10, + ACTIONS(2661), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47369,10 +47687,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [38523] = 2, + [38849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2655), 12, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(833), 1, + sym_formal_part, + ACTIONS(2663), 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, + [38871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2665), 1, + sym_identifier, + ACTIONS(2667), 11, + 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, + [38891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 1, + sym_identifier, + ACTIONS(2645), 11, + 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, + [38911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -47385,63 +47755,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [38541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(831), 1, - sym_formal_part, - ACTIONS(2657), 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, - [38563] = 3, + [38929] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2659), 1, - sym_identifier, - ACTIONS(2661), 11, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, + anon_sym_LPAREN, + STATE(827), 1, + sym_formal_part, + ACTIONS(2671), 10, anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [38583] = 3, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [38951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2663), 1, + ACTIONS(2673), 1, sym_identifier, - ACTIONS(2665), 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, - [38602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2667), 1, - sym_identifier, - ACTIONS(2669), 10, + ACTIONS(2675), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -47452,133 +47789,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38621] = 8, + [38970] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(2677), 1, sym_identifier, - ACTIONS(2674), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2676), 1, - aux_sym_access_to_subprogram_definition_token1, ACTIONS(2679), 1, - aux_sym_interface_type_definition_token1, - STATE(1497), 1, - sym__defining_identifier_list, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(813), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [38650] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1919), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1206), 1, - sym_select_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1229), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38679] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, aux_sym_subprogram_body_token1, - ACTIONS(2686), 1, + ACTIONS(2681), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2688), 1, + ACTIONS(2683), 1, aux_sym_interface_type_definition_token1, - STATE(1497), 1, + STATE(1602), 1, sym__defining_identifier_list, - STATE(426), 2, + STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(813), 4, + STATE(825), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [38708] = 8, + [38999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(2685), 1, sym_identifier, - ACTIONS(2686), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2688), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2690), 1, - aux_sym_subprogram_body_token1, - STATE(1497), 1, - sym__defining_identifier_list, - STATE(426), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(815), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [38737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2692), 1, - sym_identifier, - ACTIONS(2694), 10, - 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, - [38756] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(69), 1, - aux_sym_accept_statement_token1, - ACTIONS(75), 1, - aux_sym_delay_until_statement_token1, - ACTIONS(1919), 1, - aux_sym_terminate_alternative_token1, - STATE(29), 1, - sym_accept_statement, - STATE(1080), 1, - sym_select_alternative, - STATE(31), 3, - sym__delay_statement, - sym_delay_until_statement, - sym_delay_relative_statement, - STATE(1229), 3, - sym_delay_alternative, - sym_accept_alternative, - sym_terminate_alternative, - [38785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - sym_identifier, - ACTIONS(2698), 10, + ACTIONS(2687), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47589,12 +47826,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38804] = 3, + [39018] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(29), 1, + sym_accept_statement, + STATE(1224), 1, + sym_select_alternative, + STATE(28), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1261), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [39047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 1, sym_identifier, - ACTIONS(2702), 10, + ACTIONS(2691), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47605,12 +47863,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [38823] = 3, + [39066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(2693), 1, sym_identifier, - ACTIONS(2706), 10, + ACTIONS(2695), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -47621,115 +47879,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38842] = 2, + [39085] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2708), 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, - [38858] = 10, + ACTIONS(69), 1, + aux_sym_accept_statement_token1, + ACTIONS(75), 1, + aux_sym_delay_until_statement_token1, + ACTIONS(1929), 1, + aux_sym_terminate_alternative_token1, + STATE(29), 1, + sym_accept_statement, + STATE(1102), 1, + sym_select_alternative, + STATE(28), 3, + sym__delay_statement, + sym_delay_until_statement, + sym_delay_relative_statement, + STATE(1261), 3, + sym_delay_alternative, + sym_accept_alternative, + sym_terminate_alternative, + [39114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, + ACTIONS(2697), 1, + sym_identifier, + ACTIONS(2699), 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, + [39133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + sym_identifier, + ACTIONS(2703), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1118), 1, - sym__assign_value, - STATE(1472), 1, - sym_aspect_specification, - ACTIONS(2710), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [38890] = 2, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [39152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2651), 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, - [38906] = 10, + ACTIONS(2677), 1, + sym_identifier, + ACTIONS(2681), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2683), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2705), 1, + aux_sym_subprogram_body_token1, + STATE(1602), 1, + sym__defining_identifier_list, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(826), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [39181] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1069), 1, - sym__assign_value, - STATE(1435), 1, - sym_aspect_specification, - ACTIONS(2712), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [38938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2714), 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, - [38954] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1071), 1, - sym__assign_value, - STATE(1369), 1, - sym_aspect_specification, - ACTIONS(2716), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [38986] = 2, + ACTIONS(2707), 1, + sym_identifier, + ACTIONS(2710), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2712), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2715), 1, + aux_sym_interface_type_definition_token1, + STATE(1602), 1, + sym__defining_identifier_list, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(826), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [39210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2718), 10, @@ -47743,47 +47988,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39002] = 10, + [39226] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(2104), 1, anon_sym_COLON_EQ, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1116), 1, + STATE(1125), 1, sym__assign_value, - STATE(1395), 1, + STATE(1399), 1, sym_aspect_specification, ACTIONS(2720), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39034] = 3, + [39258] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, - sym_identifier, - ACTIONS(2724), 9, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1110), 1, + sym__assign_value, + STATE(1371), 1, + sym_aspect_specification, + ACTIONS(2722), 2, anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_package_specification_token2, - [39052] = 2, + [39290] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 10, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1066), 1, + sym__assign_value, + STATE(1469), 1, + sym_aspect_specification, + ACTIONS(2724), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [39322] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2726), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47794,526 +48068,526 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39068] = 9, + [39338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - ACTIONS(2728), 1, - aux_sym_package_specification_token2, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1398), 1, - sym_formal_part, - STATE(1112), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39097] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2734), 1, - aux_sym_expression_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1045), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2732), 3, + ACTIONS(2663), 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, - [39124] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2736), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1296), 1, - sym__assign_value, - STATE(1793), 1, - sym_aspect_specification, - [39155] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1149), 1, - sym_iterator_filter, - ACTIONS(2226), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39182] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - ACTIONS(2740), 1, - aux_sym_package_specification_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1106), 1, - sym_formal_part, - ACTIONS(2738), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [39209] = 9, + aux_sym_accept_statement_token2, + [39354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - ACTIONS(2743), 1, - aux_sym_package_specification_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1398), 1, - sym_formal_part, - STATE(1112), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39238] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - ACTIONS(2745), 1, - aux_sym_package_specification_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1106), 1, - sym_formal_part, - ACTIONS(2738), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [39265] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2748), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1214), 1, - sym__assign_value, - STATE(1732), 1, - sym_aspect_specification, - [39296] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1302), 1, - sym_iterator_filter, - ACTIONS(2750), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39323] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_COLON, - ACTIONS(2755), 1, - anon_sym_SEMI, - ACTIONS(2757), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(921), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [39348] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1305), 1, - sym_iterator_filter, - ACTIONS(2750), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39375] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1337), 1, - sym_iterator_filter, - ACTIONS(2220), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39402] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1171), 1, - sym_iterator_filter, - ACTIONS(2759), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39429] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2761), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1152), 1, - sym__assign_value, - STATE(1549), 1, - sym_aspect_specification, - [39460] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1165), 1, - sym_iterator_filter, - ACTIONS(2759), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2763), 1, - sym_identifier, - ACTIONS(2765), 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, - [39503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - sym_identifier, - ACTIONS(2769), 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, - [39519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - sym_identifier, - ACTIONS(2773), 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, - [39535] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1398), 1, - sym_formal_part, - STATE(1112), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [39561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 1, - sym_identifier, - ACTIONS(2777), 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, - [39577] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2726), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1106), 1, - sym_formal_part, - ACTIONS(2738), 3, + ACTIONS(2671), 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, - [39601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2779), 1, - sym_identifier, - ACTIONS(2781), 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, - [39617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2783), 1, - sym_identifier, - ACTIONS(2785), 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, - [39633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 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, - [39649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, - sym_identifier, - ACTIONS(2793), 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, - [39665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2795), 1, - sym_identifier, - ACTIONS(2797), 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, - [39681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2799), 1, - sym_identifier, - ACTIONS(2801), 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, - [39697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2803), 1, - sym_identifier, - ACTIONS(2805), 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, - [39713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 1, - sym_identifier, - ACTIONS(2809), 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, - [39729] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2813), 1, - aux_sym_with_clause_token2, - ACTIONS(2816), 1, - aux_sym_expression_token1, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2811), 2, - anon_sym_SEMI, aux_sym_expression_token3, - [39755] = 8, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [39370] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(2104), 1, anon_sym_COLON_EQ, - STATE(261), 1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(264), 1, sym_actual_parameter_part, - STATE(1450), 1, + STATE(1086), 1, sym__assign_value, - ACTIONS(2818), 2, + STATE(1409), 1, + sym_aspect_specification, + ACTIONS(2728), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39781] = 3, + [39402] = 2, + ACTIONS(3), 1, + sym_comment, + 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, + [39418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + sym_identifier, + ACTIONS(2734), 9, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [39436] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1293), 1, + sym_iterator_filter, + ACTIONS(2736), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1943), 1, + anon_sym_COMMA, + ACTIONS(2738), 1, + anon_sym_COLON, + ACTIONS(2741), 1, + anon_sym_SEMI, + ACTIONS(2743), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(919), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [39488] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2745), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1255), 1, + sym__assign_value, + STATE(1560), 1, + sym_aspect_specification, + [39519] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2747), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1305), 1, + sym__assign_value, + STATE(1652), 1, + sym_aspect_specification, + [39550] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2751), 1, + aux_sym_expression_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1020), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2749), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [39577] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1197), 1, + sym_iterator_filter, + ACTIONS(2248), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39604] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2755), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [39631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1347), 1, + sym_iterator_filter, + ACTIONS(2760), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39658] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1348), 1, + sym_iterator_filter, + ACTIONS(2760), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1288), 1, + sym_iterator_filter, + ACTIONS(2736), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39712] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2762), 1, + aux_sym_package_specification_token2, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1425), 1, + sym_formal_part, + STATE(1128), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39741] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1276), 1, + sym_iterator_filter, + ACTIONS(2236), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39768] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + ACTIONS(2766), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1425), 1, + sym_formal_part, + STATE(1128), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [39797] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2768), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2755), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [39824] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2771), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1337), 1, + sym__assign_value, + STATE(1929), 1, + sym_aspect_specification, + [39855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2773), 1, + sym_identifier, + ACTIONS(2775), 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, + [39871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + sym_identifier, + ACTIONS(2779), 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, + [39887] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2783), 1, + aux_sym_with_clause_token2, + ACTIONS(2786), 1, + aux_sym_expression_token1, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2781), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [39913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2788), 1, + sym_identifier, + ACTIONS(2790), 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, + [39929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2792), 1, + sym_identifier, + ACTIONS(2794), 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, + [39945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 1, + sym_identifier, + ACTIONS(2798), 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, + [39961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2800), 1, + sym_identifier, + ACTIONS(2802), 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, + [39977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2804), 1, + sym_identifier, + ACTIONS(2806), 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, + [39993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + sym_identifier, + ACTIONS(2810), 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, + [40009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + sym_identifier, + ACTIONS(2814), 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, + [40025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 1, + sym_identifier, + ACTIONS(2818), 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, + [40041] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2820), 1, @@ -48326,26 +48600,20 @@ 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, - [39797] = 9, + [40057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, ACTIONS(2824), 1, - aux_sym_package_specification_token2, - ACTIONS(2826), 1, - aux_sym_object_renaming_declaration_token1, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1612), 1, - sym_aspect_specification, - [39825] = 3, + sym_identifier, + ACTIONS(2826), 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, + [40073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2828), 1, @@ -48358,7 +48626,42 @@ 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, - [39841] = 3, + [40089] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1425), 1, + sym_formal_part, + STATE(1128), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [40115] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2753), 1, + anon_sym_LPAREN, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2755), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + [40139] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2832), 1, @@ -48371,12 +48674,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, - [39857] = 3, + [40155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1359), 1, + sym__assign_value, + ACTIONS(2836), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [40181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2838), 7, + ACTIONS(2840), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48384,30 +48705,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, - [39873] = 8, + [40197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, ACTIONS(2842), 1, - aux_sym_with_clause_token2, - ACTIONS(2845), 1, - aux_sym_expression_token1, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2840), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [39899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2847), 1, sym_identifier, - ACTIONS(2849), 7, + ACTIONS(2844), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48415,25 +48718,52 @@ 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, - [39915] = 8, + [40213] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2853), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(2856), 1, - aux_sym_expression_token1, - STATE(261), 1, + ACTIONS(2846), 1, + aux_sym_package_specification_token2, + ACTIONS(2848), 1, + aux_sym_object_renaming_declaration_token1, + STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2851), 2, - anon_sym_SEMI, - aux_sym_expression_token3, - [39941] = 3, + STATE(1741), 1, + sym_aspect_specification, + [40241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + sym_identifier, + ACTIONS(2852), 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, + [40257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2854), 1, + sym_identifier, + ACTIONS(2856), 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, + [40273] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2858), 1, @@ -48446,7 +48776,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, - [39957] = 3, + [40289] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2862), 1, @@ -48459,7 +48789,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, - [39973] = 3, + [40305] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2866), 1, @@ -48472,7 +48802,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, - [39989] = 3, + [40321] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2870), 1, @@ -48485,7 +48815,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, - [40005] = 3, + [40337] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2874), 1, @@ -48498,7 +48828,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, - [40021] = 3, + [40353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2878), 1, @@ -48511,161 +48841,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, - [40037] = 6, + [40369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, - anon_sym_LPAREN, - ACTIONS(2884), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - aux_sym_record_component_association_list_token1, - STATE(1492), 1, - sym_enumeration_aggregate, - STATE(1496), 4, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [40059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 1, - sym_identifier, - ACTIONS(2890), 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, - [40075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2892), 1, - sym_identifier, - ACTIONS(2894), 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, - [40091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, - sym_identifier, - ACTIONS(2898), 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, - [40107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2900), 1, - sym_identifier, - ACTIONS(2902), 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, - [40123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2904), 1, - sym_identifier, - ACTIONS(2906), 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, - [40139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2908), 1, - sym_identifier, - ACTIONS(2910), 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, - [40155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2912), 1, - sym_identifier, - ACTIONS(2914), 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, - [40171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2916), 1, - sym_identifier, - ACTIONS(2918), 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, - [40187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2920), 1, - sym_identifier, - ACTIONS(2922), 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, - [40203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2924), 4, + ACTIONS(2882), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token1, aux_sym_expression_token3, - [40225] = 3, + [40391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 1, + ACTIONS(2884), 1, sym_identifier, - ACTIONS(2928), 7, + ACTIONS(2886), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48673,82 +48870,212 @@ 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, - [40241] = 3, + [40407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 1, - sym_identifier, - ACTIONS(2932), 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, - [40257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2934), 1, - sym_identifier, - ACTIONS(2936), 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, - [40273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2938), 1, - sym_identifier, - ACTIONS(2940), 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, - [40289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 1, - sym_identifier, - ACTIONS(2944), 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, - [40305] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2890), 1, + aux_sym_with_clause_token2, + ACTIONS(2893), 1, + aux_sym_expression_token1, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2888), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [40433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2895), 1, + sym_identifier, + ACTIONS(2897), 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, + [40449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 1, + sym_identifier, + ACTIONS(2901), 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, + [40465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2903), 1, + sym_identifier, + ACTIONS(2905), 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, + [40481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2907), 1, + sym_identifier, + ACTIONS(2909), 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, + [40497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2911), 1, + sym_identifier, + ACTIONS(2913), 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, + [40513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2915), 1, + sym_identifier, + ACTIONS(2917), 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, + [40529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 1, + sym_identifier, + ACTIONS(2921), 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, + [40545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2923), 1, + sym_identifier, + ACTIONS(2925), 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, + [40561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2927), 1, + sym_identifier, + ACTIONS(2929), 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, + [40577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + sym_identifier, + ACTIONS(2933), 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, + [40593] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_LPAREN, + ACTIONS(2937), 1, + anon_sym_LBRACK, + ACTIONS(2939), 1, + aux_sym_record_component_association_list_token1, + STATE(1510), 1, + sym_enumeration_aggregate, + STATE(1512), 4, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [40615] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2943), 1, + aux_sym_with_clause_token2, + ACTIONS(2946), 1, + aux_sym_expression_token1, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2941), 2, + anon_sym_SEMI, + aux_sym_expression_token3, + [40641] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(2104), 1, anon_sym_COLON_EQ, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1402), 1, + STATE(1411), 1, sym__assign_value, - ACTIONS(2946), 2, + ACTIONS(2948), 2, anon_sym_RPAREN, anon_sym_SEMI, - [40331] = 3, + [40667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 1, + ACTIONS(2950), 1, sym_identifier, - ACTIONS(2950), 7, + ACTIONS(2952), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48756,465 +49083,352 @@ 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, - [40347] = 8, + [40683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2952), 1, - anon_sym_COMMA, ACTIONS(2954), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1159), 1, - aux_sym__name_list_repeat1, - [40372] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, + sym_identifier, + ACTIONS(2956), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2956), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1697), 1, - sym_aspect_specification, - [40397] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2958), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1588), 1, - sym_aspect_specification, - [40422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2960), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + aux_sym_use_clause_token2, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40435] = 8, + aux_sym_pragma_g_token1, + [40699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2958), 1, + sym_identifier, + ACTIONS(2960), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, aux_sym_with_clause_token2, - ACTIONS(2962), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1591), 1, - sym_aspect_specification, - [40460] = 8, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2964), 1, - anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1921), 1, - sym_aspect_specification, - [40485] = 6, + STATE(1160), 1, + aux_sym__name_list_repeat1, + ACTIONS(2962), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40738] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2964), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [40759] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, ACTIONS(2966), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1535), 1, + sym_aspect_specification, + [40784] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, ACTIONS(2968), 1, anon_sym_SEMI, - ACTIONS(2970), 1, - aux_sym_package_specification_token2, - ACTIONS(2972), 1, - aux_sym_expression_token3, - STATE(1151), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [40506] = 8, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1660), 1, + sym_aspect_specification, + [40809] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, + ACTIONS(2970), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1663), 1, + sym_aspect_specification, + [40834] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2972), 1, + anon_sym_COMMA, ACTIONS(2974), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1611), 1, - sym_aspect_specification, - [40531] = 2, + STATE(1310), 1, + aux_sym__name_list_repeat1, + [40859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, + ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [40544] = 8, + ACTIONS(2976), 1, + aux_sym_package_specification_token1, + STATE(1800), 1, + sym_package_specification, + STATE(1292), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [40880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, ACTIONS(2978), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1874), 1, + STATE(1837), 1, sym_aspect_specification, - [40569] = 2, + [40905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2980), 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, - [40582] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1334), 1, - aux_sym__name_list_repeat1, - ACTIONS(2954), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40605] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2982), 1, - aux_sym_package_specification_token1, - STATE(1849), 1, - sym_package_specification, - STATE(1284), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [40626] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(2984), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2980), 1, anon_sym_SEMI, - [40647] = 8, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1774), 1, + sym_aspect_specification, + [40930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2962), 1, + anon_sym_SEMI, + ACTIONS(2972), 1, + anon_sym_COMMA, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1215), 1, + aux_sym__name_list_repeat1, + [40955] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2982), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1828), 1, + sym_aspect_specification, + [40980] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2984), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1589), 1, + sym_aspect_specification, + [41005] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, aux_sym_with_clause_token2, ACTIONS(2986), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1606), 1, + STATE(1691), 1, sym_aspect_specification, - [40672] = 8, + [41030] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2952), 1, - anon_sym_COMMA, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, ACTIONS(2988), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1259), 1, - aux_sym__name_list_repeat1, - [40697] = 8, + STATE(1713), 1, + sym_aspect_specification, + [41055] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, ACTIONS(2990), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1723), 1, + STATE(1890), 1, sym_aspect_specification, - [40722] = 2, + [41080] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2992), 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, - [40735] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, + ACTIONS(2992), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1754), 1, + sym_aspect_specification, + [41105] = 6, + ACTIONS(3), 1, + sym_comment, ACTIONS(2994), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1850), 1, - sym_aspect_specification, - [40760] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(2996), 1, - sym_tick, - ACTIONS(1984), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, anon_sym_SEMI, - aux_sym_package_specification_token2, - [40775] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, ACTIONS(2998), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1568), 1, - sym_aspect_specification, - [40800] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3000), 1, aux_sym_package_specification_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1617), 1, - sym_aspect_specification, - [40825] = 8, + ACTIONS(3000), 1, + aux_sym_expression_token3, + STATE(1338), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [41126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, ACTIONS(3002), 1, - anon_sym_SEMI, - STATE(261), 1, + aux_sym_package_specification_token2, + STATE(264), 1, sym_actual_parameter_part, - STATE(1812), 1, + STATE(1741), 1, sym_aspect_specification, - [40850] = 8, + [41151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, ACTIONS(3004), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - STATE(1766), 1, + STATE(1842), 1, sym_aspect_specification, - [40875] = 8, + [41176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3006), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1778), 1, - sym_aspect_specification, - [40900] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3008), 1, - aux_sym_package_specification_token2, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1612), 1, - sym_aspect_specification, - [40925] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3010), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1616), 1, - sym_aspect_specification, - [40950] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3014), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3019), 1, - aux_sym_iterator_specification_token1, - ACTIONS(921), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [40971] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3021), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1932), 1, - sym_aspect_specification, - [40996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3023), 7, + ACTIONS(3006), 7, aux_sym_iterated_element_association_token1, aux_sym_package_specification_token3, aux_sym_relation_membership_token1, @@ -49222,2240 +49436,2306 @@ 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, - [41009] = 8, + [41189] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3025), 1, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(3027), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3008), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1838), 1, + sym_aspect_specification, + [41214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 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, + [41227] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3012), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1834), 1, + sym_aspect_specification, + [41252] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 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, + [41265] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1806), 1, + sym_aspect_specification, + [41290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 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, + [41303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 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, + [41316] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3022), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1530), 1, + sym_aspect_specification, + [41341] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3024), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1603), 1, + sym_aspect_specification, + [41366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3026), 1, + anon_sym_LPAREN, + ACTIONS(3028), 1, aux_sym_iterator_filter_token1, - STATE(1126), 1, + STATE(1069), 1, sym_non_empty_entry_body_formal_part, - STATE(1462), 1, + STATE(1463), 1, sym_aspect_specification, STATE(1464), 1, sym_formal_part, - STATE(1575), 1, + STATE(1537), 1, sym_entry_barrier, - [41034] = 8, + [41391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3029), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - STATE(1608), 1, - sym_aspect_specification, - [41059] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1933), 1, - sym_identifier, - ACTIONS(3031), 1, - aux_sym_iterated_element_association_token1, - STATE(1255), 1, - sym_parameter_specification, - STATE(1660), 1, - sym_entry_index_specification, - STATE(1672), 1, - sym__parameter_specification_list, - STATE(1718), 1, - sym__defining_identifier_list, - [41081] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(233), 1, + ACTIONS(3030), 1, aux_sym_chunk_specification_token1, - ACTIONS(253), 1, - aux_sym_global_mode_token1, - ACTIONS(255), 1, - aux_sym_non_empty_mode_token1, - STATE(690), 1, - sym_global_mode, - STATE(830), 1, - sym_non_empty_mode, - STATE(1410), 1, - sym_global_aspect_element, - [41103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RBRACK, - ACTIONS(3039), 1, - aux_sym_with_clause_token2, - STATE(1183), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3044), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3046), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41151] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3048), 1, - anon_sym_COMMA, - STATE(930), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3050), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [41167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - anon_sym_COLON, - ACTIONS(921), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3054), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3032), 1, aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_loop_statement_token1, - [41193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(3035), 1, + anon_sym_COLON, + ACTIONS(3037), 1, + aux_sym_iterator_specification_token1, + ACTIONS(919), 3, sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(3056), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41213] = 5, + anon_sym_LPAREN, + [41412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3061), 1, - aux_sym_package_specification_token3, - ACTIONS(3063), 1, - aux_sym_pragma_g_token1, - STATE(936), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41231] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3066), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3068), 1, - aux_sym_allocator_token1, - ACTIONS(3070), 1, - aux_sym_interface_type_definition_token2, - STATE(1352), 1, - sym_record_definition, - [41253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3072), 1, - anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3076), 1, - aux_sym_with_clause_token2, - STATE(1476), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41273] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(3039), 1, sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(974), 1, - sym_actual_parameter_part, - STATE(1938), 1, - sym__assign_value, - [41295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3048), 1, + ACTIONS(2000), 6, anon_sym_COMMA, - STATE(932), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3078), 4, anon_sym_RPAREN, + anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41311] = 3, + [41427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(3082), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41325] = 6, + ACTIONS(3041), 1, + aux_sym_iterated_element_association_token1, + STATE(1270), 1, + sym_parameter_specification, + STATE(1570), 1, + sym__defining_identifier_list, + STATE(1577), 1, + sym__parameter_specification_list, + STATE(1675), 1, + sym_entry_index_specification, + [41449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, - anon_sym_COMMA, - ACTIONS(3076), 1, - aux_sym_with_clause_token2, - ACTIONS(3084), 1, - anon_sym_RPAREN, - STATE(1476), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [41345] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3086), 1, - anon_sym_LPAREN, - ACTIONS(3088), 1, - anon_sym_SEMI, - ACTIONS(3090), 1, - aux_sym_package_specification_token2, - STATE(1132), 1, - sym_known_discriminant_part, - STATE(1488), 1, - sym_aspect_specification, - [41367] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(1105), 1, - sym__assign_value, - STATE(1474), 1, - sym_aspect_specification, - ACTIONS(3092), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [41387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_EQ_GT, - ACTIONS(3094), 5, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(247), 1, + aux_sym_global_mode_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + STATE(743), 1, + sym_global_mode, + STATE(836), 1, + sym_non_empty_mode, + STATE(1454), 1, + sym_global_aspect_element, + [41471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3043), 1, anon_sym_COMMA, + STATE(957), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3045), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41401] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3098), 1, - anon_sym_SEMI, - ACTIONS(3100), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, - [41423] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - ACTIONS(3102), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [41443] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3106), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - STATE(1035), 1, - sym__subprogram_specification, - STATE(1068), 1, - sym_function_specification, - STATE(1143), 1, - sym_procedure_specification, - [41465] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3110), 1, - anon_sym_SEMI, - ACTIONS(3112), 1, - aux_sym_with_clause_token2, - STATE(261), 1, - sym_actual_parameter_part, [41487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 1, - sym_identifier, - ACTIONS(3116), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_package_specification_token3, - [41501] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - STATE(1074), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41519] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - aux_sym_iteration_scheme_token1, - ACTIONS(319), 1, - aux_sym_subprogram_body_token1, - ACTIONS(333), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3118), 1, - aux_sym_declare_expression_token1, - ACTIONS(3120), 1, - aux_sym_loop_statement_token1, - STATE(1828), 1, - sym_iteration_scheme, - [41541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3122), 1, - aux_sym_package_specification_token1, - STATE(1056), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [41559] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(3124), 1, + ACTIONS(3049), 1, + anon_sym_EQ_GT, + ACTIONS(3047), 5, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_iterator_filter_token1, - ACTIONS(3126), 1, - aux_sym_package_specification_token3, - STATE(936), 3, - sym_exception_handler, - aux_sym__exception_handler_list, - sym_pragma_g, - [41577] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3128), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3130), 1, anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [41599] = 7, + aux_sym_package_specification_token2, + [41501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3132), 1, - aux_sym_with_clause_token1, - ACTIONS(3134), 1, - aux_sym_allocator_token1, - ACTIONS(3136), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3138), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3140), 1, - aux_sym_private_extension_declaration_token1, - [41621] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3066), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3142), 1, - anon_sym_SEMI, - ACTIONS(3144), 1, - aux_sym_with_clause_token1, - STATE(1352), 1, - sym_record_definition, - [41643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1911), 1, + ACTIONS(1921), 1, sym_identifier, - ACTIONS(1913), 5, + ACTIONS(1923), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [41657] = 3, + [41515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 1, - sym_identifier, - ACTIONS(3148), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3150), 1, - sym_identifier, - STATE(1222), 1, - sym_quantifier, - ACTIONS(3152), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - STATE(1481), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [41689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3154), 1, - sym_identifier, - ACTIONS(3156), 5, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - [41703] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_SEMI, - ACTIONS(3158), 1, - anon_sym_COLON, - ACTIONS(921), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [41719] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2966), 1, - anon_sym_LPAREN, - ACTIONS(3160), 1, - anon_sym_SEMI, - ACTIONS(3162), 1, - aux_sym_package_specification_token2, - STATE(1452), 1, - sym_known_discriminant_part, - STATE(1456), 2, - sym__discriminant_part, - sym_unknown_discriminant_part, - [41739] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3164), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [41758] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3166), 1, - sym_tick, - ACTIONS(3168), 1, - aux_sym_iterated_element_association_token2, - STATE(261), 1, - sym_actual_parameter_part, - [41777] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3170), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [41796] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3172), 1, - aux_sym_object_renaming_declaration_token1, - STATE(261), 1, - sym_actual_parameter_part, - [41815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3174), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - STATE(968), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [41830] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3179), 1, + ACTIONS(3051), 6, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3181), 1, - aux_sym_expression_token4, - ACTIONS(3183), 1, - aux_sym_elsif_expression_item_token1, - STATE(1002), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [41847] = 6, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_loop_statement_token1, + [41527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(2405), 1, - aux_sym_range_attribute_designator_token1, - STATE(261), 1, - sym_actual_parameter_part, - [41866] = 6, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3053), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3055), 1, + aux_sym_allocator_token1, + ACTIONS(3057), 1, + aux_sym_interface_type_definition_token2, + STATE(1389), 1, + sym_record_definition, + [41549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3185), 1, + ACTIONS(3059), 1, + sym_identifier, + ACTIONS(3061), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41563] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3053), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3063), 1, + anon_sym_SEMI, + ACTIONS(3065), 1, + aux_sym_with_clause_token1, + STATE(1389), 1, + sym_record_definition, + [41585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3067), 1, + aux_sym_package_specification_token1, + STATE(1104), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41603] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, anon_sym_SEMI, - ACTIONS(3187), 1, aux_sym_package_specification_token2, - ACTIONS(3189), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1587), 1, - sym_aspect_specification, - [41885] = 5, + [41615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(1398), 1, - sym_formal_part, - STATE(1278), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [41902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(1278), 1, - sym_formal_part, - ACTIONS(3191), 3, + ACTIONS(3071), 1, + anon_sym_COMMA, + STATE(943), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3074), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, anon_sym_SEMI, + aux_sym_package_specification_token2, + [41631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3076), 1, + anon_sym_SEMI, + ACTIONS(3078), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [41917] = 3, + STATE(264), 1, + sym_actual_parameter_part, + [41653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_SEMI, - ACTIONS(913), 4, + ACTIONS(3080), 1, + anon_sym_COLON, + ACTIONS(919), 5, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COLON_EQ, - [41930] = 4, + anon_sym_EQ_GT, + anon_sym_PIPE, + [41667] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3082), 1, + anon_sym_SEMI, + ACTIONS(3084), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + [41689] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3086), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3088), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [41711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + sym_identifier, + ACTIONS(3092), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + [41725] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3094), 1, + aux_sym_with_clause_token1, + ACTIONS(3096), 1, + aux_sym_allocator_token1, + ACTIONS(3098), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3100), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3102), 1, + aux_sym_private_extension_declaration_token1, + [41747] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3124), 1, + ACTIONS(3104), 1, aux_sym_iterator_filter_token1, - STATE(954), 3, + ACTIONS(3106), 1, + aux_sym_package_specification_token3, + STATE(963), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [41945] = 6, + [41765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, - anon_sym_SEMI, - STATE(1154), 1, - sym_formal_part, - STATE(1590), 1, - sym_aspect_specification, - [41964] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3197), 1, - anon_sym_LPAREN, - ACTIONS(3199), 1, - anon_sym_SEMI, - STATE(1307), 1, - sym_formal_part, - STATE(1896), 1, - sym_aspect_specification, - [41983] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3201), 1, - anon_sym_SEMI, - STATE(1191), 1, - sym__assign_value, - STATE(1652), 1, - sym_aspect_specification, - [42002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(1398), 1, - sym_formal_part, - STATE(831), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42019] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3203), 1, - anon_sym_SEMI, - STATE(1182), 1, - sym__assign_value, - STATE(1632), 1, - sym_aspect_specification, - [42038] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3205), 1, - anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [42057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3207), 1, + ACTIONS(3108), 2, anon_sym_SEMI, - STATE(1194), 1, - sym__assign_value, - STATE(1675), 1, - sym_aspect_specification, - [42076] = 6, + aux_sym_with_clause_token2, + [41785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(2741), 1, + anon_sym_SEMI, + ACTIONS(3110), 1, + anon_sym_COLON, + ACTIONS(919), 4, sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, anon_sym_DOT, - ACTIONS(3209), 1, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [41801] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_LPAREN, + ACTIONS(3112), 1, anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42095] = 6, + ACTIONS(3114), 1, + aux_sym_package_specification_token2, + STATE(1436), 1, + sym_known_discriminant_part, + STATE(1439), 2, + sym__discriminant_part, + sym_unknown_discriminant_part, + [41821] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2104), 1, anon_sym_COLON_EQ, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3211), 1, - anon_sym_SEMI, - STATE(1297), 1, + STATE(1065), 1, sym__assign_value, - STATE(1789), 1, + STATE(1471), 1, sym_aspect_specification, - [42114] = 6, + ACTIONS(3116), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [41841] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(3118), 1, + aux_sym_entry_declaration_token1, + STATE(1070), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [41859] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3213), 1, - anon_sym_SEMI, - STATE(261), 1, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(1031), 1, sym_actual_parameter_part, - [42133] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3215), 1, - anon_sym_SEMI, - STATE(1197), 1, + STATE(1804), 1, sym__assign_value, - STATE(1680), 1, - sym_aspect_specification, - [42152] = 4, + [41881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(1166), 1, - sym_formal_part, - ACTIONS(3217), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42167] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3219), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym__assign_value, - STATE(1792), 1, - sym_aspect_specification, - [42186] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(1398), 1, - sym_formal_part, - STATE(1166), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3221), 1, - aux_sym_package_specification_token3, - ACTIONS(3223), 1, - aux_sym_expression_token4, - ACTIONS(3225), 1, - aux_sym_elsif_expression_item_token1, - STATE(968), 2, - sym_elsif_statement_item, - aux_sym_if_statement_repeat1, - [42220] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 5, + ACTIONS(3043), 1, anon_sym_COMMA, + STATE(943), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3120), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42231] = 3, + [41897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 2, + ACTIONS(3118), 1, + aux_sym_entry_declaration_token1, + ACTIONS(3122), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3124), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1139), 1, + sym_function_specification, + STATE(1149), 1, + sym_procedure_specification, + [41919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3126), 1, + sym_identifier, + ACTIONS(3128), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41933] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3132), 1, + anon_sym_SEMI, + ACTIONS(3134), 1, + aux_sym_package_specification_token2, + STATE(1100), 1, + sym_known_discriminant_part, + STATE(1355), 1, + sym_aspect_specification, + [41955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3136), 1, + sym_identifier, + STATE(1300), 1, + sym_quantifier, + ACTIONS(3138), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + STATE(1443), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [41973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3140), 1, + sym_identifier, + ACTIONS(3142), 5, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_package_specification_token3, + [41987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3144), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3147), 1, + aux_sym_package_specification_token3, + ACTIONS(3149), 1, + aux_sym_pragma_g_token1, + STATE(963), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [42005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_RBRACK, + ACTIONS(3158), 1, + aux_sym_with_clause_token2, + STATE(1323), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3156), 2, anon_sym_EQ_GT, anon_sym_PIPE, - ACTIONS(921), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [42244] = 4, + [42025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 1, - aux_sym_expression_token1, - STATE(993), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2924), 3, - anon_sym_SEMI, + ACTIONS(3160), 1, + anon_sym_COMMA, + ACTIONS(3162), 1, + anon_sym_RPAREN, + ACTIONS(3164), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, + STATE(1373), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42045] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + aux_sym_iteration_scheme_token1, + ACTIONS(321), 1, + aux_sym_subprogram_body_token1, + ACTIONS(333), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3166), 1, + aux_sym_declare_expression_token1, + ACTIONS(3168), 1, + aux_sym_loop_statement_token1, + STATE(1795), 1, + sym_iteration_scheme, + [42067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3160), 1, + anon_sym_COMMA, + ACTIONS(3164), 1, + aux_sym_with_clause_token2, + ACTIONS(3170), 1, + anon_sym_RPAREN, + STATE(1373), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42087] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(3172), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42107] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3174), 1, + anon_sym_SEMI, + STATE(1183), 1, + sym__assign_value, + STATE(1891), 1, + sym_aspect_specification, + [42126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3176), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3178), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42164] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3180), 1, + anon_sym_SEMI, + STATE(1247), 1, + sym__assign_value, + STATE(1718), 1, + sym_aspect_specification, + [42183] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3182), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2443), 1, + aux_sym_range_attribute_designator_token1, + STATE(264), 1, + sym_actual_parameter_part, + [42221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3184), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(429), 1, + aux_sym_component_choice_list_token1, + ACTIONS(3186), 1, + sym_identifier, + ACTIONS(3188), 1, + sym_string_literal, + STATE(1352), 1, + sym__named_record_component_association, + STATE(1689), 1, + sym_component_choice_list, [42259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2659), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3234), 1, + ACTIONS(3190), 1, anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, + STATE(1315), 1, + sym_formal_part, + STATE(1605), 1, + sym_aspect_specification, [42278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3238), 1, - aux_sym_package_specification_token2, - ACTIONS(3240), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1933), 1, - sym_aspect_specification, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3192), 1, + anon_sym_RPAREN, + STATE(264), 1, + sym_actual_parameter_part, [42297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3242), 1, - anon_sym_SEMI, - STATE(1212), 1, - sym__assign_value, - STATE(1730), 1, - sym_aspect_specification, - [42316] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3106), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1035), 1, - sym__subprogram_specification, - STATE(1068), 1, - sym_function_specification, - STATE(1143), 1, - sym_procedure_specification, - [42335] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3244), 1, + ACTIONS(3194), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [42354] = 2, + [42316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 5, + ACTIONS(3196), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42365] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3248), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42384] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3250), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42403] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3183), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3252), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - aux_sym_expression_token4, - STATE(1018), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42420] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3256), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42439] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3240), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3258), 1, - aux_sym_package_specification_token2, - STATE(1441), 1, - sym_aspect_specification, - [42458] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3260), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42477] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1068), 1, - sym_function_specification, - STATE(1072), 1, - sym__subprogram_specification, - STATE(1143), 1, - sym_procedure_specification, - [42496] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(1398), 1, - sym_formal_part, - STATE(826), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3262), 1, - anon_sym_SEMI, - STATE(1258), 1, - sym__assign_value, - STATE(1804), 1, - sym_aspect_specification, - [42532] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3264), 1, - aux_sym_at_clause_token1, - STATE(261), 1, - sym_actual_parameter_part, - [42551] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3266), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42570] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3268), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3106), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(971), 1, - sym__subprogram_specification, - STATE(1068), 1, - sym_function_specification, - STATE(1143), 1, - sym_procedure_specification, - [42608] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(3270), 1, - anon_sym_SEMI, - STATE(1257), 1, - sym_formal_part, - STATE(1708), 1, - sym_aspect_specification, - [42627] = 4, + [42327] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, aux_sym_delay_until_statement_token1, - STATE(1624), 1, + STATE(1656), 1, sym_delay_alternative, - STATE(31), 3, + STATE(28), 3, sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - [42642] = 6, + [42342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3272), 1, + ACTIONS(3198), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [42661] = 6, + [42361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3274), 1, + ACTIONS(3200), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3202), 1, aux_sym_object_renaming_declaration_token1, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [42680] = 5, + [42399] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(1398), 1, - sym_formal_part, - STATE(824), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3278), 1, - aux_sym_elsif_expression_item_token1, - ACTIONS(3276), 2, - anon_sym_RPAREN, - aux_sym_expression_token4, - STATE(1018), 2, - sym_elsif_expression_item, - aux_sym_if_expression_repeat1, - [42712] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3281), 1, - sym_identifier, - ACTIONS(3283), 1, - anon_sym_LT_GT, - STATE(1295), 1, - sym_discriminant_specification, - STATE(1801), 1, - sym__defining_identifier_list, - STATE(1803), 1, - sym_discriminant_specification_list, - [42731] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3285), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3287), 1, - aux_sym_with_clause_token1, - STATE(1483), 1, - sym_record_definition, - [42750] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3289), 1, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3204), 1, anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [42769] = 5, + STATE(1334), 1, + sym__assign_value, + STATE(1927), 1, + sym_aspect_specification, + [42418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3206), 1, + aux_sym_object_renaming_declaration_token1, + STATE(264), 1, + sym_actual_parameter_part, + [42437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3208), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(1306), 1, + sym__assign_value, + STATE(1653), 1, + sym_aspect_specification, + [42475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3212), 1, + aux_sym_object_renaming_declaration_token1, + STATE(264), 1, + sym_actual_parameter_part, + [42494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3216), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3291), 1, + ACTIONS(3214), 2, aux_sym_package_specification_token3, - ACTIONS(3293), 1, aux_sym_expression_token4, STATE(990), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [42786] = 3, + [42509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, - aux_sym_package_specification_token2, - ACTIONS(921), 4, + ACTIONS(3219), 1, + aux_sym_package_specification_token3, + ACTIONS(3221), 1, + aux_sym_expression_token4, + ACTIONS(3223), 1, + aux_sym_elsif_expression_item_token1, + STATE(995), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, sym_tick, - anon_sym_DOT, + ACTIONS(979), 1, anon_sym_LPAREN, - aux_sym_with_clause_token2, - [42799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3298), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - [42810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RBRACK, - STATE(1183), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [42827] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3300), 1, + ACTIONS(3225), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [42846] = 2, + [42545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3302), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3227), 1, anon_sym_SEMI, + ACTIONS(3229), 1, aux_sym_package_specification_token2, - [42857] = 3, + ACTIONS(3231), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1487), 1, + sym_aspect_specification, + [42564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3235), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3233), 2, + anon_sym_RPAREN, + aux_sym_expression_token4, + STATE(994), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3223), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3238), 1, + aux_sym_package_specification_token3, + ACTIONS(3240), 1, + aux_sym_expression_token4, + STATE(990), 2, + sym_elsif_statement_item, + aux_sym_if_statement_repeat1, + [42596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3242), 1, anon_sym_SEMI, - ACTIONS(921), 4, + STATE(1157), 1, + sym__assign_value, + STATE(1889), 1, + sym_aspect_specification, + [42615] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3244), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym__assign_value, + STATE(1884), 1, + sym_aspect_specification, + [42634] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, sym_tick, - anon_sym_DOT, + ACTIONS(979), 1, anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3304), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3246), 1, anon_sym_SEMI, - STATE(1319), 1, - sym__assign_value, - STATE(1946), 1, - sym_aspect_specification, - [42889] = 6, + STATE(264), 1, + sym_actual_parameter_part, + [42653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3306), 1, - anon_sym_SEMI, - STATE(1320), 1, - sym__assign_value, - STATE(1873), 1, + ACTIONS(3130), 1, + anon_sym_LPAREN, + ACTIONS(3248), 1, + aux_sym_package_specification_token2, + STATE(1263), 1, + sym_known_discriminant_part, + STATE(1565), 1, sym_aspect_specification, - [42908] = 2, + [42672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 5, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(3104), 1, + aux_sym_iterator_filter_token1, + STATE(950), 3, + sym_exception_handler, + aux_sym__exception_handler_list, + sym_pragma_g, + [42687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 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, + [42698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3250), 1, + sym_tick, + ACTIONS(3252), 1, + aux_sym_iterated_element_association_token2, + STATE(264), 1, + sym_actual_parameter_part, + [42717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3254), 1, + anon_sym_RPAREN, + STATE(264), 1, + sym_actual_parameter_part, + [42736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3256), 1, + anon_sym_RPAREN, + ACTIONS(3258), 1, + aux_sym_expression_token4, + ACTIONS(3260), 1, + aux_sym_elsif_expression_item_token1, + STATE(1051), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [42753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym_identifier, + ACTIONS(3264), 1, + anon_sym_LT_GT, + STATE(1187), 1, + sym_discriminant_specification, + STATE(1518), 1, + sym_discriminant_specification_list, + STATE(1521), 1, + sym__defining_identifier_list, + [42772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3266), 1, + aux_sym_package_specification_token2, + ACTIONS(919), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + aux_sym_with_clause_token2, + [42785] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(1425), 1, + sym_formal_part, + STATE(832), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42802] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(1425), 1, + sym_formal_part, + STATE(833), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3269), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42838] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3271), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(1284), 1, + sym_iterator_filter, + ACTIONS(3273), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3275), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [42883] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3152), 1, + anon_sym_COMMA, + ACTIONS(3154), 1, + anon_sym_RBRACK, + STATE(1323), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [42900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3277), 1, + anon_sym_SEMI, + STATE(1242), 1, + sym__assign_value, + STATE(1722), 1, + sym_aspect_specification, [42919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3086), 1, - anon_sym_LPAREN, - ACTIONS(3308), 1, - aux_sym_package_specification_token2, - STATE(1240), 1, - sym_known_discriminant_part, - STATE(1775), 1, - sym_aspect_specification, + ACTIONS(3122), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3124), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1024), 1, + sym__subprogram_specification, + STATE(1139), 1, + sym_function_specification, + STATE(1149), 1, + sym_procedure_specification, [42938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3310), 1, - anon_sym_RPAREN, - STATE(261), 1, - sym_actual_parameter_part, - [42957] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2222), 1, - aux_sym_iterator_filter_token1, - STATE(1336), 1, - sym_iterator_filter, - ACTIONS(3312), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3185), 1, - anon_sym_SEMI, - ACTIONS(3189), 1, + ACTIONS(3279), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3314), 1, - aux_sym_package_specification_token2, - STATE(1448), 1, - sym_aspect_specification, - [42991] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3316), 1, - anon_sym_COMMA, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [43010] = 6, + [42957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3318), 1, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(3320), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3281), 1, anon_sym_SEMI, - STATE(1276), 1, + STATE(264), 1, + sym_actual_parameter_part, + [42976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3283), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [42995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3285), 1, + aux_sym_at_clause_token1, + STATE(264), 1, + sym_actual_parameter_part, + [43014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2751), 1, + aux_sym_expression_token1, + STATE(1037), 1, + aux_sym__interface_list_repeat1, + ACTIONS(3287), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43029] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3289), 1, + anon_sym_LPAREN, + ACTIONS(3291), 1, + anon_sym_SEMI, + STATE(1230), 1, sym_formal_part, - STATE(1833), 1, + STATE(1736), 1, sym_aspect_specification, - [43029] = 4, + [43048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1937), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1939), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1168), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - [43044] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3322), 1, - aux_sym_object_renaming_declaration_token1, - STATE(261), 1, - sym_actual_parameter_part, - [43063] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3324), 1, - aux_sym_object_renaming_declaration_token1, - STATE(261), 1, - sym_actual_parameter_part, - [43082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3326), 1, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3293), 1, anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [43101] = 6, + STATE(1313), 1, + sym__assign_value, + STATE(1647), 1, + sym_aspect_specification, + [43067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3328), 1, - anon_sym_RPAREN, - STATE(261), 1, + ACTIONS(3295), 1, + anon_sym_SEMI, + STATE(264), 1, sym_actual_parameter_part, - [43120] = 6, + [43086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3297), 1, + anon_sym_SEMI, + ACTIONS(3299), 1, + aux_sym_package_specification_token2, + ACTIONS(3301), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1435), 1, + sym_aspect_specification, + [43105] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3303), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(1221), 1, + sym_formal_part, + ACTIONS(3305), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(1425), 1, + sym_formal_part, + STATE(1221), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(1425), 1, + sym_formal_part, + STATE(1151), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(1151), 1, + sym_formal_part, + ACTIONS(3307), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43188] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3309), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3311), 1, + anon_sym_SEMI, + ACTIONS(937), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [43220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3313), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3315), 1, + anon_sym_SEMI, + STATE(1342), 1, + sym__assign_value, + STATE(1615), 1, + sym_aspect_specification, + [43258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3317), 1, + anon_sym_SEMI, + STATE(1339), 1, + sym__assign_value, + STATE(1624), 1, + sym_aspect_specification, + [43277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1137), 1, + sym__subprogram_specification, + STATE(1139), 1, + sym_function_specification, + STATE(1149), 1, + sym_procedure_specification, + [43296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3319), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3321), 1, + aux_sym_expression_token1, + STATE(1037), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2882), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, aux_sym_primary_null_token1, - ACTIONS(1801), 1, + ACTIONS(1823), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3070), 1, + ACTIONS(3324), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3326), 1, + aux_sym_with_clause_token1, + STATE(1498), 1, + sym_record_definition, + [43349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(3328), 1, + anon_sym_SEMI, + STATE(1266), 1, + sym_formal_part, + STATE(1696), 1, + sym_aspect_specification, + [43368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3057), 1, aux_sym_interface_type_definition_token2, ACTIONS(3330), 1, aux_sym_allocator_token1, - STATE(1352), 1, + STATE(1389), 1, sym_record_definition, - [43139] = 6, + [43387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(3332), 1, anon_sym_SEMI, - STATE(261), 1, + STATE(264), 1, sym_actual_parameter_part, - [43158] = 4, + [43406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2734), 1, - aux_sym_expression_token1, - STATE(993), 1, - aux_sym__interface_list_repeat1, - ACTIONS(3334), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43173] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, + ACTIONS(949), 1, sym_tick, - ACTIONS(985), 1, + ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1994), 1, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3334), 1, + anon_sym_COMMA, + STATE(264), 1, + sym_actual_parameter_part, + [43425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(1425), 1, + sym_formal_part, + STATE(827), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [43442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(3336), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1173), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + [43476] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3227), 1, + anon_sym_SEMI, + ACTIONS(3231), 1, aux_sym_object_renaming_declaration_token1, - STATE(261), 1, - sym_actual_parameter_part, - [43192] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, ACTIONS(3338), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [43211] = 6, + aux_sym_package_specification_token2, + STATE(1772), 1, + sym_aspect_specification, + [43495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3340), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [43230] = 4, + ACTIONS(3122), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(3124), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(1050), 1, + sym__subprogram_specification, + STATE(1139), 1, + sym_function_specification, + STATE(1149), 1, + sym_procedure_specification, + [43514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(3340), 5, + anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_iterator_filter_token1, - STATE(1157), 1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3342), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43536] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3297), 1, + anon_sym_SEMI, + ACTIONS(3301), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3344), 1, + aux_sym_package_specification_token2, + STATE(1801), 1, + sym_aspect_specification, + [43555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3260), 1, + aux_sym_elsif_expression_item_token1, + ACTIONS(3346), 1, + anon_sym_RPAREN, + ACTIONS(3348), 1, + aux_sym_expression_token4, + STATE(994), 2, + sym_elsif_expression_item, + aux_sym_if_expression_repeat1, + [43572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + [43583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + aux_sym_iterator_filter_token1, + STATE(1177), 1, sym_iterator_filter, - ACTIONS(3342), 3, + ACTIONS(3350), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [43245] = 2, + [43598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 5, - anon_sym_COMMA, + ACTIONS(2741), 1, + anon_sym_SEMI, + ACTIONS(919), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [43611] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3352), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + [43630] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(3354), 1, + aux_sym_object_renaming_declaration_token1, + STATE(264), 1, + sym_actual_parameter_part, + [43649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3356), 1, + anon_sym_LPAREN, + ACTIONS(3358), 1, + anon_sym_SEMI, + STATE(1322), 1, + sym_formal_part, + STATE(1646), 1, + sym_aspect_specification, + [43668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3360), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3362), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3364), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43256] = 6, + [43698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3344), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [43275] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - ACTIONS(3346), 1, - anon_sym_SEMI, - STATE(261), 1, - sym_actual_parameter_part, - [43294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3348), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3350), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [43320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3352), 1, - aux_sym_with_clause_token1, - STATE(1352), 1, - sym_record_definition, - [43336] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3354), 1, - anon_sym_SEMI, - ACTIONS(3356), 1, - aux_sym_package_specification_token2, - STATE(1584), 1, - sym_aspect_specification, - [43352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_package_specification_token3, - ACTIONS(3360), 1, - aux_sym_expression_token3, - ACTIONS(3362), 1, - aux_sym_expression_token4, - STATE(1070), 1, - aux_sym_selective_accept_repeat1, - [43368] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3285), 1, - aux_sym_compilation_unit_token1, - STATE(1483), 1, - sym_record_definition, - [43384] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3364), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [43400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - aux_sym_expression_token3, ACTIONS(3366), 1, - aux_sym_package_specification_token3, - ACTIONS(3368), 1, - aux_sym_expression_token4, - STATE(1097), 1, - aux_sym_selective_accept_repeat1, - [43416] = 4, + anon_sym_COMMA, + STATE(1061), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3369), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [43712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(1420), 1, - sym__assign_value, - ACTIONS(3370), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43430] = 4, + ACTIONS(3371), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(879), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [43724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3372), 1, - aux_sym_iterator_filter_token1, ACTIONS(3374), 1, - aux_sym_package_specification_token3, - STATE(1110), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [43444] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, + anon_sym_COMMA, + STATE(1063), 1, + aux_sym__name_list_repeat1, + ACTIONS(2964), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3378), 1, - aux_sym_with_clause_token2, - ACTIONS(3381), 1, - aux_sym_expression_token1, - STATE(1442), 1, - sym_record_extension_part, - [43460] = 2, + [43738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 4, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3377), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, + [43754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1401), 1, + sym_aspect_specification, + ACTIONS(3379), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43470] = 2, + [43768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3385), 4, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1429), 1, + sym_aspect_specification, + ACTIONS(3381), 2, + anon_sym_RPAREN, anon_sym_SEMI, + [43782] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [43480] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym_allocator_token1, - ACTIONS(3391), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3387), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [43494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3393), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3395), 1, - aux_sym_package_specification_token3, - STATE(1140), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [43508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3399), 1, + ACTIONS(3383), 1, + anon_sym_SEMI, + ACTIONS(3385), 1, aux_sym_package_specification_token2, - ACTIONS(3397), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [43520] = 4, + STATE(1383), 1, + sym_aspect_specification, + [43798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + STATE(1158), 1, + sym__enumeration_literal_specification, + STATE(1789), 1, + sym__enumeration_literal_list, + ACTIONS(3387), 2, + sym_identifier, + sym_character_literal, + [43812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, aux_sym_with_clause_token2, + ACTIONS(3028), 1, + aux_sym_iterator_filter_token1, STATE(1396), 1, sym_aspect_specification, - ACTIONS(3402), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3406), 1, - aux_sym_expression_token3, - STATE(1070), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3404), 2, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - [43548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(1360), 1, - sym_aspect_specification, - ACTIONS(3409), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [43562] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3185), 1, - anon_sym_SEMI, - ACTIONS(3411), 1, - aux_sym_package_specification_token2, - STATE(1448), 1, - sym_aspect_specification, - [43578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(867), 3, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [43590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3185), 1, - anon_sym_SEMI, - ACTIONS(3187), 1, - aux_sym_package_specification_token2, - STATE(1587), 1, - sym_aspect_specification, - [43606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(1485), 1, - sym__assign_value, - ACTIONS(3416), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3418), 1, - anon_sym_SEMI, - ACTIONS(3420), 1, - aux_sym_expression_token3, - STATE(1540), 1, - sym_aspect_specification, - [43636] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3422), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3424), 1, - anon_sym_SEMI, - ACTIONS(3426), 1, - aux_sym_with_clause_token1, - ACTIONS(3428), 1, - aux_sym_expression_token3, - [43652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_COMMA, - STATE(1101), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3432), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43666] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3434), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [43682] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - aux_sym_expression_token3, - ACTIONS(3436), 1, - aux_sym_package_specification_token3, - ACTIONS(3438), 1, - aux_sym_expression_token4, - STATE(1057), 1, - aux_sym_selective_accept_repeat1, - [43698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - ACTIONS(3440), 1, - anon_sym_SEMI, - ACTIONS(3442), 1, - aux_sym_accept_statement_token2, - STATE(1349), 1, - sym_formal_part, - [43714] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3444), 1, - aux_sym_package_specification_token2, - STATE(1441), 1, - sym_aspect_specification, - [43730] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3446), 1, - anon_sym_SEMI, - ACTIONS(3448), 1, - aux_sym_with_clause_token2, - ACTIONS(3451), 1, - aux_sym_expression_token1, - STATE(1467), 1, - sym_record_extension_part, - [43746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - aux_sym_expression_token1, - ACTIONS(3453), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3281), 1, - sym_identifier, - STATE(1295), 1, - sym_discriminant_specification, - STATE(1801), 1, - sym__defining_identifier_list, - STATE(1803), 1, - sym_discriminant_specification_list, - [43774] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3236), 1, - anon_sym_SEMI, - ACTIONS(3238), 1, - aux_sym_package_specification_token2, - STATE(1933), 1, - sym_aspect_specification, - [43790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - aux_sym_range_attribute_designator_token1, - STATE(1449), 1, - sym_real_range_specification, - ACTIONS(3457), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [43804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym__array_component_association_list_repeat1, - ACTIONS(3461), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [43818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3463), 4, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, + STATE(1677), 1, + sym_entry_barrier, [43828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3465), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [43844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, - aux_sym_attribute_designator_token3, - ACTIONS(3469), 3, - anon_sym_SEMI, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [43856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - aux_sym_range_attribute_designator_token1, - STATE(1463), 1, - sym_real_range_specification, - ACTIONS(3471), 2, + ACTIONS(3297), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [43870] = 3, + ACTIONS(3344), 1, + aux_sym_package_specification_token2, + STATE(1801), 1, + sym_aspect_specification, + [43844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - aux_sym_expression_token2, - ACTIONS(3473), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [43882] = 4, + ACTIONS(3055), 1, + aux_sym_allocator_token1, + ACTIONS(3102), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3389), 1, + aux_sym_with_clause_token1, + ACTIONS(3391), 1, + aux_sym_private_type_declaration_token2, + [43860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(1358), 1, - sym__assign_value, - ACTIONS(3477), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43896] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 1, - sym_identifier, - STATE(940), 1, - sym_aspect_association, - STATE(945), 1, - sym__aspect_mark, - STATE(1089), 1, - sym_aspect_mark_list, - [43912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(1371), 1, - sym__assign_value, - ACTIONS(3477), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [43926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3360), 1, - aux_sym_expression_token3, - ACTIONS(3436), 1, - aux_sym_package_specification_token3, - ACTIONS(3438), 1, - aux_sym_expression_token4, - STATE(1070), 1, - aux_sym_selective_accept_repeat1, - [43942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(974), 1, - sym_actual_parameter_part, - [43958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_SEMI, - ACTIONS(3481), 1, - aux_sym_with_clause_token2, - ACTIONS(3484), 1, + ACTIONS(3395), 1, aux_sym_expression_token1, - STATE(1442), 1, - sym_record_extension_part, - [43974] = 2, + ACTIONS(3393), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [43872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 4, + ACTIONS(3397), 1, + anon_sym_SEMI, + ACTIONS(3399), 1, + aux_sym_with_clause_token2, + ACTIONS(3402), 1, + aux_sym_expression_token1, + STATE(1422), 1, + sym_record_extension_part, + [43888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3404), 1, + anon_sym_SEMI, + ACTIONS(3406), 1, + aux_sym_with_clause_token2, + ACTIONS(3409), 1, + aux_sym_expression_token1, + STATE(1382), 1, + sym_record_extension_part, + [43904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [43984] = 4, + [43914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3488), 1, + ACTIONS(3413), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [43924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + aux_sym_iterator_filter_token1, + STATE(1642), 1, + sym_variant_list, + STATE(1109), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [43938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3417), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, + [43954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3421), 1, + aux_sym_range_attribute_designator_token1, + STATE(1361), 1, + sym_real_range_specification, + ACTIONS(3419), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [43968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(1031), 1, + sym_actual_parameter_part, + [43984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3227), 1, + anon_sym_SEMI, + ACTIONS(3338), 1, + aux_sym_package_specification_token2, + STATE(1772), 1, + sym_aspect_specification, + [44000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym_identifier, + STATE(1187), 1, + sym_discriminant_specification, + STATE(1518), 1, + sym_discriminant_specification_list, + STATE(1521), 1, + sym__defining_identifier_list, + [44016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + [44032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3423), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_accept_statement_token2, + [44042] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3425), 1, + aux_sym_with_clause_token1, + STATE(1389), 1, + sym_record_definition, + [44058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1408), 1, + sym_aspect_specification, + ACTIONS(3427), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + aux_sym_package_specification_token3, + ACTIONS(3431), 1, + aux_sym_expression_token3, + ACTIONS(3433), 1, + aux_sym_expression_token4, + STATE(1098), 1, + aux_sym_selective_accept_repeat1, + [44088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 1, + aux_sym_allocator_token1, + ACTIONS(3439), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3435), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [44102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3443), 1, + anon_sym_SEMI, + ACTIONS(3445), 1, + aux_sym_with_clause_token1, + ACTIONS(3447), 1, + aux_sym_expression_token3, + [44118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3449), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3452), 1, + aux_sym_package_specification_token3, + STATE(1090), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1943), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3454), 1, + anon_sym_COLON, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + [44148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 1, anon_sym_COMMA, STATE(1101), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3491), 2, + ACTIONS(3459), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [43998] = 5, + [44162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, - sym_tick, - ACTIONS(985), 1, - anon_sym_LPAREN, - ACTIONS(1994), 1, - anon_sym_DOT, - STATE(261), 1, - sym_actual_parameter_part, - [44014] = 4, + ACTIONS(3463), 1, + aux_sym_expression_token2, + ACTIONS(3461), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [44174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3393), 1, - aux_sym_iterator_filter_token1, - STATE(1627), 1, - sym_variant_list, - STATE(1067), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44028] = 5, + ACTIONS(3467), 1, + aux_sym_allocator_token1, + ACTIONS(3469), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3465), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [44188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1973), 1, - anon_sym_COMMA, - ACTIONS(2757), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3493), 1, - anon_sym_COLON, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - [44044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - STATE(1433), 1, + ACTIONS(3471), 1, + anon_sym_SEMI, + ACTIONS(3473), 1, + aux_sym_expression_token3, + STATE(1664), 1, sym_aspect_specification, + [44204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3475), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3477), 1, + aux_sym_package_specification_token3, + STATE(1090), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [44218] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_SEMI, + ACTIONS(3483), 1, + aux_sym_accept_statement_token2, + STATE(1378), 1, + sym_formal_part, + [44234] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + aux_sym_expression_token3, + ACTIONS(3485), 1, + aux_sym_package_specification_token3, + ACTIONS(3487), 1, + aux_sym_expression_token4, + STATE(1122), 1, + aux_sym_selective_accept_repeat1, + [44250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3324), 1, + aux_sym_compilation_unit_token1, + STATE(1498), 1, + sym_record_definition, + [44266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3489), 1, + anon_sym_SEMI, + ACTIONS(3491), 1, + aux_sym_package_specification_token2, + STATE(1495), 1, + sym_aspect_specification, + [44282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 1, + anon_sym_COMMA, + STATE(1101), 1, + aux_sym__array_component_association_list_repeat1, ACTIONS(3496), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [44058] = 2, + anon_sym_RBRACK, + [44296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44068] = 5, + ACTIONS(3431), 1, + aux_sym_expression_token3, + ACTIONS(3485), 1, + aux_sym_package_specification_token3, + ACTIONS(3487), 1, + aux_sym_expression_token4, + STATE(1116), 1, + aux_sym_selective_accept_repeat1, + [44312] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3500), 1, - anon_sym_COMMA, - ACTIONS(3502), 1, - anon_sym_RPAREN, - STATE(1223), 1, - aux_sym_record_component_association_list_repeat1, - STATE(1224), 1, - aux_sym_positional_array_aggregate_repeat1, - [44084] = 2, + aux_sym_package_specification_token2, + ACTIONS(3498), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44094] = 3, + ACTIONS(3503), 1, + anon_sym_SEMI, + ACTIONS(3505), 1, + aux_sym_package_specification_token2, + STATE(1626), 1, + sym_aspect_specification, + [44340] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3507), 1, aux_sym_package_specification_token2, - ACTIONS(3397), 3, + ACTIONS(3498), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44106] = 4, + [44352] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3510), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3513), 1, - aux_sym_package_specification_token3, - STATE(1110), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [44120] = 4, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, + [44368] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2104), 1, anon_sym_COLON_EQ, STATE(1403), 1, sym__assign_value, - ACTIONS(3515), 2, + ACTIONS(3512), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3514), 1, + anon_sym_COMMA, + ACTIONS(3516), 1, + anon_sym_RPAREN, + STATE(1232), 1, + aux_sym_record_component_association_list_repeat1, + STATE(1233), 1, + aux_sym_positional_array_aggregate_repeat1, + [44398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3519), 1, + aux_sym_package_specification_token3, + STATE(1147), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [44412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1430), 1, + sym_aspect_specification, + ACTIONS(3521), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3517), 4, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3521), 1, - aux_sym_expression_token1, - ACTIONS(3519), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44156] = 2, + [44426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3523), 4, - anon_sym_RPAREN, anon_sym_SEMI, aux_sym_with_clause_token2, - aux_sym_accept_statement_token2, - [44166] = 2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [44436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3525), 4, @@ -51463,5198 +51743,5355 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44176] = 4, + [44446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - STATE(1370), 1, - sym_aspect_specification, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(1416), 1, + sym__assign_value, ACTIONS(3527), 2, - anon_sym_RPAREN, anon_sym_SEMI, - [44190] = 5, + aux_sym_accept_statement_token2, + [44460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, ACTIONS(3529), 1, anon_sym_SEMI, ACTIONS(3531), 1, - aux_sym_expression_token3, - STATE(1758), 1, - sym_aspect_specification, - [44206] = 4, + aux_sym_with_clause_token2, + ACTIONS(3534), 1, + aux_sym_expression_token1, + STATE(1505), 1, + sym_record_extension_part, + [44476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3536), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, + [44492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + aux_sym_expression_token3, + ACTIONS(3538), 1, + aux_sym_package_specification_token3, + ACTIONS(3540), 1, + aux_sym_expression_token4, + STATE(1122), 1, + aux_sym_selective_accept_repeat1, + [44508] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - STATE(1434), 1, + ACTIONS(3542), 1, + anon_sym_SEMI, + ACTIONS(3544), 1, + aux_sym_expression_token3, + STATE(1550), 1, sym_aspect_specification, - ACTIONS(3533), 2, + [44524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3445), 1, + aux_sym_with_clause_token1, + ACTIONS(3546), 1, + anon_sym_SEMI, + ACTIONS(3548), 1, + aux_sym_expression_token3, + [44540] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3404), 1, + anon_sym_SEMI, + ACTIONS(3550), 1, + aux_sym_with_clause_token2, + ACTIONS(3553), 1, + aux_sym_expression_token1, + STATE(1382), 1, + sym_record_extension_part, + [44556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3457), 1, + anon_sym_COMMA, + STATE(1092), 1, + aux_sym__array_component_association_list_repeat1, + ACTIONS(3555), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3559), 1, + aux_sym_expression_token1, + ACTIONS(3557), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3563), 1, + aux_sym_expression_token3, + STATE(1122), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3561), 2, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + [44596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(1350), 1, + sym__assign_value, + ACTIONS(3566), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44220] = 2, + [44610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 4, + ACTIONS(3568), 1, + aux_sym_attribute_designator_token3, + ACTIONS(3570), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [44622] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + STATE(1379), 1, + sym_aspect_specification, + ACTIONS(3572), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [44636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(1370), 1, + sym__assign_value, + ACTIONS(3574), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_COLON_EQ, + STATE(1368), 1, + sym__assign_value, + ACTIONS(3574), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [44664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3576), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 4, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_COMMA, + ACTIONS(3582), 1, + anon_sym_RPAREN, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44230] = 5, + [44708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3426), 1, - aux_sym_with_clause_token1, - ACTIONS(3537), 1, - anon_sym_SEMI, - ACTIONS(3539), 1, - aux_sym_expression_token3, - [44246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 1, - anon_sym_SEMI, - ACTIONS(3543), 1, - aux_sym_with_clause_token2, - ACTIONS(3546), 1, - aux_sym_expression_token1, - STATE(1413), 1, - sym_record_extension_part, - [44262] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - aux_sym_allocator_token1, - ACTIONS(3552), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3548), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [44276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3554), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [44292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3556), 1, - anon_sym_COMMA, - STATE(1124), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3559), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [44306] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_COMMA, - ACTIONS(2757), 1, - aux_sym_object_renaming_declaration_token1, - ACTIONS(3561), 1, - anon_sym_COLON, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - [44322] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3027), 1, - aux_sym_iterator_filter_token1, - STATE(1437), 1, - sym_aspect_specification, - STATE(1662), 1, - sym_entry_barrier, - [44338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3564), 1, - aux_sym_package_specification_token2, - ACTIONS(3397), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [44350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3068), 1, - aux_sym_allocator_token1, - ACTIONS(3140), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3567), 1, - aux_sym_with_clause_token1, - ACTIONS(3569), 1, - aux_sym_private_type_declaration_token2, - [44366] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3571), 1, - anon_sym_LPAREN, - ACTIONS(3573), 1, - anon_sym_SEMI, - ACTIONS(3575), 1, - aux_sym_accept_statement_token2, - STATE(1392), 1, - sym_formal_part, - [44382] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - anon_sym_COMMA, - ACTIONS(3579), 1, - anon_sym_RPAREN, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3581), 1, - aux_sym_compilation_unit_token1, - STATE(1428), 1, - sym_record_definition, - [44412] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3583), 1, - anon_sym_SEMI, - ACTIONS(3585), 1, - aux_sym_package_specification_token2, - STATE(1404), 1, - sym_aspect_specification, - [44428] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3587), 1, - anon_sym_SEMI, - ACTIONS(3589), 1, - aux_sym_package_specification_token2, - STATE(1355), 1, - sym_aspect_specification, - [44444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3591), 1, - anon_sym_COMMA, - STATE(1476), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [44458] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3593), 1, - aux_sym_compilation_unit_token1, - STATE(1417), 1, - sym_record_definition, - [44474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 1, - anon_sym_SEMI, - ACTIONS(3595), 1, - aux_sym_with_clause_token2, - ACTIONS(3598), 1, - aux_sym_expression_token1, - STATE(1413), 1, - sym_record_extension_part, - [44490] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3600), 1, - anon_sym_COMMA, - STATE(1137), 1, - aux_sym__name_list_repeat1, - ACTIONS(2984), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [44504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3014), 1, + ACTIONS(3032), 1, aux_sym_iterated_element_association_token2, - ACTIONS(921), 3, + ACTIONS(919), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [44516] = 5, + [44720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(2659), 1, + anon_sym_LPAREN, + ACTIONS(3586), 1, anon_sym_SEMI, - ACTIONS(3603), 1, - aux_sym_with_clause_token2, - ACTIONS(3606), 1, - aux_sym_expression_token1, - STATE(1467), 1, - sym_record_extension_part, - [44532] = 4, + ACTIONS(3588), 1, + aux_sym_accept_statement_token2, + STATE(1358), 1, + sym_formal_part, + [44736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - aux_sym_iterator_filter_token1, - ACTIONS(3611), 1, - aux_sym_package_specification_token3, - STATE(1140), 2, - sym_variant, - aux_sym_variant_list_repeat1, - [44546] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, - aux_sym_primary_null_token1, - ACTIONS(1801), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3613), 1, - aux_sym_with_clause_token1, - STATE(1483), 1, - sym_record_definition, - [44562] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1323), 1, - sym__enumeration_literal_specification, - STATE(1929), 1, - sym__enumeration_literal_list, - ACTIONS(3615), 2, + ACTIONS(3262), 1, sym_identifier, - sym_character_literal, - [44576] = 3, + STATE(1270), 1, + sym_parameter_specification, + STATE(1570), 1, + sym__defining_identifier_list, + STATE(1577), 1, + sym__parameter_specification_list, + [44752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3421), 1, + aux_sym_range_attribute_designator_token1, + STATE(1453), 1, + sym_real_range_specification, + ACTIONS(3590), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [44766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1943), 1, + anon_sym_COMMA, + ACTIONS(2743), 1, + aux_sym_object_renaming_declaration_token1, + ACTIONS(3592), 1, + anon_sym_COLON, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + [44782] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3297), 1, + anon_sym_SEMI, + ACTIONS(3595), 1, aux_sym_package_specification_token2, - ACTIONS(3397), 3, + STATE(1435), 1, + sym_aspect_specification, + [44798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, + anon_sym_COMMA, + STATE(1373), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [44812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3599), 1, + aux_sym_package_specification_token2, + ACTIONS(3498), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44588] = 5, + [44824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, - sym_identifier, - STATE(1255), 1, - sym_parameter_specification, - STATE(1672), 1, - sym__parameter_specification_list, - STATE(1718), 1, - sym__defining_identifier_list, - [44604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [44613] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 1, - anon_sym_COMMA, - ACTIONS(3623), 1, - anon_sym_RPAREN, - STATE(1146), 1, - aux_sym__index_subtype_definition_list_repeat1, - [44626] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1973), 1, - anon_sym_COMMA, - ACTIONS(3625), 1, - anon_sym_COLON, - STATE(1181), 1, - aux_sym__defining_identifier_list_repeat1, - [44639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, + ACTIONS(3397), 1, + anon_sym_SEMI, + ACTIONS(3602), 1, aux_sym_with_clause_token2, - ACTIONS(3627), 1, + ACTIONS(3605), 1, + aux_sym_expression_token1, + STATE(1422), 1, + sym_record_extension_part, + [44840] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3529), 1, anon_sym_SEMI, - STATE(1566), 1, - sym_aspect_specification, - [44652] = 2, + ACTIONS(3607), 1, + aux_sym_with_clause_token2, + ACTIONS(3610), 1, + aux_sym_expression_token1, + STATE(1505), 1, + sym_record_extension_part, + [44856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44661] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(3631), 1, - anon_sym_LPAREN, - STATE(1522), 1, - sym_iterated_element_association, - [44674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3633), 1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3227), 1, anon_sym_SEMI, - ACTIONS(3635), 1, + ACTIONS(3612), 1, aux_sym_package_specification_token2, - ACTIONS(3637), 1, - aux_sym_expression_token3, - [44687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3639), 1, - anon_sym_SEMI, - STATE(1715), 1, + STATE(1487), 1, sym_aspect_specification, - [44700] = 2, + [44872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44709] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3643), 1, - anon_sym_SEMI, - STATE(1735), 1, - sym_aspect_specification, - [44722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, - anon_sym_COMMA, - ACTIONS(3647), 1, - anon_sym_RPAREN, - STATE(1225), 1, - aux_sym_global_aspect_definition_repeat1, - [44735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_COMMA, - ACTIONS(3652), 1, - anon_sym_RPAREN, - STATE(1156), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [44748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3654), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44757] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3656), 1, - anon_sym_RPAREN, - ACTIONS(3658), 1, - anon_sym_SEMI, - STATE(1158), 1, - aux_sym_discriminant_specification_list_repeat1, - [44770] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_COMMA, - ACTIONS(3661), 1, - anon_sym_SEMI, - STATE(1137), 1, - aux_sym__name_list_repeat1, - [44783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3663), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44792] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1405), 1, - sym__enumeration_literal_specification, - ACTIONS(3665), 2, - sym_identifier, - sym_character_literal, - [44803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_COMMA, - ACTIONS(3669), 1, - anon_sym_RPAREN, - STATE(1280), 1, - aux_sym__enumeration_literal_list_repeat1, - [44816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, + ACTIONS(1817), 1, aux_sym_primary_null_token1, - ACTIONS(1801), 1, + ACTIONS(1823), 1, aux_sym_record_component_association_list_token1, - STATE(1483), 1, + ACTIONS(3614), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, sym_record_definition, - [44829] = 4, + [44888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_COLON, - ACTIONS(1973), 1, - anon_sym_COMMA, - STATE(1147), 1, - aux_sym__defining_identifier_list_repeat1, - [44842] = 2, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3616), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, + [44904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44851] = 2, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3618), 1, + aux_sym_compilation_unit_token1, + STATE(1437), 1, + sym_record_definition, + [44920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44860] = 2, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3620), 1, + aux_sym_with_clause_token1, + STATE(1498), 1, + sym_record_definition, + [44936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [44869] = 4, + ACTIONS(3622), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3625), 1, + aux_sym_package_specification_token3, + STATE(1147), 2, + sym_variant, + aux_sym_variant_list_repeat1, + [44950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3675), 1, + ACTIONS(3627), 1, + sym_identifier, + STATE(934), 1, + sym_aspect_association, + STATE(935), 1, + sym__aspect_mark, + STATE(1060), 1, + sym_aspect_mark_list, + [44966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3629), 1, aux_sym_package_specification_token2, - STATE(1641), 1, - sym_aspect_specification, - [44882] = 2, + ACTIONS(3498), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [44978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3677), 3, + ACTIONS(3632), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44891] = 4, + [44987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3679), 1, - anon_sym_SEMI, - STATE(1814), 1, - sym_aspect_specification, - [44904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3671), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [44913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3681), 1, - anon_sym_SEMI, - STATE(1893), 1, - sym_aspect_specification, - [44926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_COMMA, - ACTIONS(3685), 1, - anon_sym_RPAREN, - STATE(1199), 1, - aux_sym_pragma_g_repeat1, - [44939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3687), 1, - anon_sym_EQ_GT, - ACTIONS(3689), 1, - anon_sym_PIPE, - STATE(1234), 1, - aux_sym_exception_choice_list_repeat1, - [44952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3691), 3, - anon_sym_SEMI, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - [44961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 3, + ACTIONS(3634), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44970] = 4, + [44996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3695), 1, + ACTIONS(3262), 1, + sym_identifier, + STATE(1444), 1, + sym_parameter_specification, + STATE(1570), 1, + sym__defining_identifier_list, + [45009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(513), 1, + aux_sym_value_sequence_token1, + STATE(1907), 1, + sym_iterated_element_association, + [45022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3636), 3, anon_sym_SEMI, - STATE(1881), 1, - sym_aspect_specification, - [44983] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, aux_sym_with_clause_token2, - ACTIONS(3697), 1, - anon_sym_SEMI, - STATE(1863), 1, - sym_aspect_specification, - [44996] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3699), 3, - aux_sym_terminate_alternative_token1, - aux_sym_accept_statement_token1, - aux_sym_delay_until_statement_token1, - [45005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3701), 1, - anon_sym_SEMI, - STATE(1754), 1, - sym_aspect_specification, - [45018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3703), 1, - anon_sym_COMMA, - ACTIONS(3706), 1, - anon_sym_COLON, - STATE(1181), 1, - aux_sym__defining_identifier_list_repeat1, + aux_sym_expression_token3, [45031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3708), 1, + ACTIONS(3638), 1, anon_sym_SEMI, - STATE(1763), 1, + STATE(1899), 1, sym_aspect_specification, - [45044] = 4, + [45044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(3640), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3317), 1, + anon_sym_SEMI, + STATE(1624), 1, + sym_aspect_specification, + [45066] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3642), 1, anon_sym_COMMA, - ACTIONS(3712), 1, - anon_sym_RBRACK, - STATE(1124), 1, - aux_sym_positional_array_aggregate_repeat1, - [45057] = 4, + ACTIONS(3644), 1, + anon_sym_RPAREN, + STATE(1252), 1, + aux_sym__enumeration_literal_list_repeat1, + [45079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3714), 1, + ACTIONS(3646), 1, anon_sym_SEMI, - STATE(1770), 1, + STATE(1554), 1, sym_aspect_specification, - [45070] = 4, + [45092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3716), 1, - anon_sym_SEMI, - STATE(1774), 1, - sym_aspect_specification, - [45083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3718), 3, + STATE(1063), 1, + aux_sym__name_list_repeat1, + ACTIONS(3648), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, - [45092] = 2, + [45103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3012), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3017), 1, - anon_sym_COLON, - ACTIONS(3019), 1, - aux_sym_iterator_specification_token1, - [45114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 1, + ACTIONS(3650), 1, sym_identifier, - STATE(1481), 2, + STATE(1903), 2, sym_loop_parameter_specification, sym_iterator_specification, - [45125] = 4, + [45114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3722), 1, + ACTIONS(3652), 1, anon_sym_EQ_GT, - ACTIONS(3724), 1, + ACTIONS(3654), 1, anon_sym_PIPE, - STATE(1249), 1, - aux_sym_discrete_choice_list_repeat1, - [45138] = 4, + STATE(1178), 1, + aux_sym_exception_choice_list_repeat1, + [45127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3726), 1, + ACTIONS(3656), 3, anon_sym_SEMI, - STATE(1926), 1, - sym_aspect_specification, - [45151] = 4, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(3730), 1, + ACTIONS(3658), 1, anon_sym_RPAREN, - STATE(1318), 1, - aux_sym__index_subtype_definition_list_repeat1, - [45164] = 4, + ACTIONS(3660), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_discriminant_specification_list_repeat1, + [45149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3662), 1, + anon_sym_SEMI, + STATE(1859), 1, + sym_aspect_specification, + [45162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3664), 1, + anon_sym_SEMI, + STATE(1704), 1, + sym_aspect_specification, + [45175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3262), 1, + sym_identifier, + STATE(1397), 1, + sym_discriminant_specification, + STATE(1521), 1, + sym__defining_identifier_list, + [45188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3666), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3668), 1, + anon_sym_SEMI, + STATE(1855), 1, + sym_aspect_specification, + [45210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1817), 1, + aux_sym_primary_null_token1, + ACTIONS(1823), 1, + aux_sym_record_component_association_list_token1, + STATE(1498), 1, + sym_record_definition, + [45223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_expression_token3, + [45232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3672), 1, + anon_sym_SEMI, + STATE(1850), 1, + sym_aspect_specification, + [45245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3674), 1, + aux_sym_package_specification_token2, + STATE(1532), 1, + sym_aspect_specification, + [45258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3676), 1, + anon_sym_COMMA, + ACTIONS(3679), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym_record_component_association_list_repeat1, + [45271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3683), 1, + aux_sym_use_clause_token2, + ACTIONS(3685), 1, + aux_sym_package_body_token1, + [45284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3687), 1, + anon_sym_COMMA, + ACTIONS(3689), 1, + anon_sym_RPAREN, + STATE(1267), 1, + aux_sym_case_expression_repeat1, + [45297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3691), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_PIPE, + ACTIONS(3693), 1, + anon_sym_EQ_GT, + STATE(1199), 1, + aux_sym_exception_choice_list_repeat1, + [45319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3695), 1, + anon_sym_COMMA, + ACTIONS(3698), 1, + anon_sym_RPAREN, + STATE(1179), 1, + aux_sym_index_constraint_repeat1, + [45332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3700), 1, + anon_sym_COMMA, + ACTIONS(3703), 1, + anon_sym_RPAREN, + STATE(1180), 1, + aux_sym_discriminant_constraint_repeat1, + [45345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 1, + anon_sym_RPAREN, + ACTIONS(3707), 1, + anon_sym_SEMI, + STATE(1209), 1, + aux_sym__parameter_specification_list_repeat1, + [45358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3709), 1, + sym_identifier, + ACTIONS(3711), 1, + aux_sym_use_clause_token2, + ACTIONS(3713), 1, + aux_sym_package_body_token1, + [45371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3715), 1, + anon_sym_SEMI, + STATE(1627), 1, + sym_aspect_specification, + [45384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3717), 1, + anon_sym_SEMI, + STATE(1817), 1, + sym_aspect_specification, + [45397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3719), 1, + anon_sym_SEMI, + STATE(1908), 1, + sym_aspect_specification, + [45410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(3724), 1, + anon_sym_RPAREN, + STATE(1186), 1, + aux_sym_actual_parameter_part_repeat1, + [45423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, + anon_sym_SEMI, + ACTIONS(3726), 1, + anon_sym_RPAREN, + STATE(1164), 1, + aux_sym_discriminant_specification_list_repeat1, + [45436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3728), 1, + anon_sym_SEMI, + STATE(1910), 1, + sym_aspect_specification, + [45449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3730), 1, + anon_sym_SEMI, + STATE(1797), 1, + sym_aspect_specification, + [45462] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3732), 1, anon_sym_COMMA, ACTIONS(3734), 1, anon_sym_RPAREN, - STATE(1317), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [45177] = 4, + STATE(1216), 1, + aux_sym_discriminant_constraint_repeat1, + [45475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3306), 1, - anon_sym_SEMI, - STATE(1873), 1, - sym_aspect_specification, - [45190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, ACTIONS(3736), 1, - aux_sym_package_specification_token2, - STATE(1753), 1, - sym_aspect_specification, - [45203] = 4, + anon_sym_COMMA, + ACTIONS(3739), 1, + anon_sym_COLON, + STATE(1191), 1, + aux_sym__defining_identifier_list_repeat1, + [45488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, + ACTIONS(1943), 1, anon_sym_COMMA, ACTIONS(3741), 1, - anon_sym_RPAREN, - STATE(1196), 1, - aux_sym_case_expression_repeat1, - [45216] = 4, + anon_sym_COLON, + STATE(1191), 1, + aux_sym__defining_identifier_list_repeat1, + [45501] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, ACTIONS(3743), 1, + anon_sym_COMMA, + ACTIONS(3746), 1, + anon_sym_RPAREN, + STATE(1193), 1, + aux_sym_global_aspect_definition_repeat1, + [45514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3369), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3748), 3, anon_sym_SEMI, - STATE(1890), 1, - sym_aspect_specification, - [45229] = 4, + anon_sym_COLON_EQ, + aux_sym_accept_statement_token2, + [45532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 1, - anon_sym_COMMA, - ACTIONS(3748), 1, - anon_sym_RPAREN, - STATE(1198), 1, - aux_sym_actual_parameter_part_repeat1, - [45242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3683), 1, - anon_sym_COMMA, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, ACTIONS(3750), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym_pragma_g_repeat1, - [45255] = 2, + anon_sym_SEMI, + STATE(1717), 1, + sym_aspect_specification, + [45545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3752), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45264] = 2, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [45554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45273] = 4, + ACTIONS(3421), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(3754), 1, + aux_sym_attribute_designator_token3, + STATE(1447), 1, + sym_real_range_specification, + [45567] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3756), 1, - anon_sym_COMMA, + anon_sym_EQ_GT, ACTIONS(3758), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_record_component_association_list_repeat2, - [45286] = 4, + anon_sym_PIPE, + STATE(1199), 1, + aux_sym_exception_choice_list_repeat1, + [45580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, + ACTIONS(3761), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [45589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3763), 3, anon_sym_COMMA, - ACTIONS(3763), 1, anon_sym_RPAREN, - STATE(1203), 1, - aux_sym_record_component_association_list_repeat1, - [45299] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3765), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45308] = 4, + anon_sym_RBRACK, + [45598] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(3765), 1, + anon_sym_COMMA, ACTIONS(3767), 1, anon_sym_RPAREN, + STATE(1219), 1, + aux_sym_index_constraint_repeat1, + [45611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, ACTIONS(3769), 1, - anon_sym_SEMI, - STATE(1205), 1, - aux_sym__parameter_specification_list_repeat1, - [45321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3772), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - [45339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, - anon_sym_RPAREN, - STATE(1196), 1, - aux_sym_case_expression_repeat1, - [45352] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_COMMA, - ACTIONS(3783), 1, - anon_sym_RPAREN, - STATE(1209), 1, - aux_sym_index_constraint_repeat1, - [45365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3787), 1, - anon_sym_RPAREN, - STATE(1209), 1, - aux_sym_index_constraint_repeat1, - [45378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 1, - anon_sym_COMMA, - ACTIONS(3791), 1, - anon_sym_RPAREN, - STATE(1223), 1, - aux_sym_record_component_association_list_repeat1, - [45391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3211), 1, - anon_sym_SEMI, - STATE(1789), 1, - sym_aspect_specification, - [45404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3793), 1, - anon_sym_SEMI, - STATE(1781), 1, - sym_aspect_specification, - [45417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3795), 1, - anon_sym_SEMI, - STATE(1783), 1, - sym_aspect_specification, - [45430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3797), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 1, - anon_sym_COMMA, - ACTIONS(3801), 1, - anon_sym_RPAREN, - STATE(1208), 1, - aux_sym_case_expression_repeat1, - [45461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, - ACTIONS(3807), 1, - anon_sym_RPAREN, - STATE(1232), 1, - aux_sym_actual_parameter_part_repeat1, - [45483] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3422), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3550), 1, - aux_sym_allocator_token1, - [45496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3809), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 1, - sym_identifier, - STATE(1820), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [45516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3789), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_RPAREN, - STATE(1203), 1, - aux_sym_record_component_association_list_repeat1, - [45529] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3815), 1, - anon_sym_RPAREN, - STATE(1124), 1, - aux_sym_positional_array_aggregate_repeat1, - [45542] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3817), 1, - anon_sym_COMMA, - ACTIONS(3820), 1, - anon_sym_RPAREN, - STATE(1225), 1, - aux_sym_global_aspect_definition_repeat1, - [45555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3822), 1, - anon_sym_SEMI, - STATE(1841), 1, - sym_aspect_specification, - [45568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3824), 1, - anon_sym_SEMI, - STATE(1698), 1, - sym_aspect_specification, - [45581] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1222), 1, - sym_quantifier, - ACTIONS(3152), 2, - aux_sym_use_clause_token1, - aux_sym_quantifier_token1, - [45592] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [45601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3828), 1, - anon_sym_SEMI, - STATE(1690), 1, - sym_aspect_specification, - [45614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3830), 1, - anon_sym_SEMI, - STATE(1834), 1, - sym_aspect_specification, - [45627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, - ACTIONS(3832), 1, - anon_sym_RPAREN, - STATE(1198), 1, - aux_sym_actual_parameter_part_repeat1, - [45640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3834), 1, - anon_sym_SEMI, - STATE(1839), 1, - sym_aspect_specification, - [45653] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3836), 1, - anon_sym_EQ_GT, - ACTIONS(3838), 1, - anon_sym_PIPE, - STATE(1234), 1, - aux_sym_exception_choice_list_repeat1, - [45666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3841), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [45675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3843), 1, aux_sym_package_specification_token2, - STATE(1765), 1, + STATE(1614), 1, sym_aspect_specification, - [45688] = 4, + [45624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3845), 1, + ACTIONS(3771), 1, aux_sym_package_specification_token2, - STATE(1562), 1, + STATE(1569), 1, sym_aspect_specification, - [45701] = 4, + [45637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym_PIPE, - ACTIONS(3847), 1, - anon_sym_EQ_GT, - STATE(1266), 1, - aux_sym_component_choice_list_repeat1, - [45714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3849), 1, + ACTIONS(3773), 1, anon_sym_SEMI, - STATE(1843), 1, + STATE(1827), 1, sym_aspect_specification, - [45727] = 4, + [45650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3851), 1, - aux_sym_package_specification_token2, - STATE(1840), 1, - sym_aspect_specification, - [45740] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3853), 1, - aux_sym_package_specification_token2, - STATE(1765), 1, - sym_aspect_specification, - [45753] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3855), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_pragma_g_token1, - [45762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, + ACTIONS(1817), 1, aux_sym_primary_null_token1, - ACTIONS(1801), 1, + ACTIONS(1823), 1, aux_sym_record_component_association_list_token1, - STATE(1428), 1, + STATE(1437), 1, sym_record_definition, - [45775] = 2, + [45663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 3, + ACTIONS(3775), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [45784] = 4, + [45672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3859), 1, - anon_sym_SEMI, - STATE(1649), 1, - sym_aspect_specification, - [45797] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 1, + ACTIONS(1817), 1, aux_sym_primary_null_token1, - ACTIONS(1801), 1, + ACTIONS(1823), 1, aux_sym_record_component_association_list_token1, - STATE(1417), 1, + STATE(1426), 1, sym_record_definition, - [45810] = 2, + [45685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 3, - anon_sym_COMMA, + ACTIONS(3777), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [45819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - sym_identifier, - ACTIONS(3863), 1, - aux_sym_use_clause_token2, - ACTIONS(3865), 1, - aux_sym_package_body_token1, - [45832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 1, - anon_sym_EQ_GT, - ACTIONS(3869), 1, - anon_sym_PIPE, - STATE(1249), 1, - aux_sym_discrete_choice_list_repeat1, - [45845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3872), 1, + ACTIONS(3779), 1, anon_sym_SEMI, - STATE(1639), 1, - sym_aspect_specification, - [45858] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3876), 1, - sym_identifier, - ACTIONS(3878), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [45878] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3491), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [45887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3880), 1, - anon_sym_COMMA, - ACTIONS(3883), 1, - anon_sym_RPAREN, - STATE(1254), 1, - aux_sym_record_component_association_list_repeat2, - [45900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_RPAREN, - ACTIONS(3887), 1, - anon_sym_SEMI, - STATE(1274), 1, + STATE(1209), 1, aux_sym__parameter_specification_list_repeat1, - [45913] = 2, + [45698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 3, + ACTIONS(3030), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3035), 1, + anon_sym_COLON, + ACTIONS(3037), 1, + aux_sym_iterator_specification_token1, + [45711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3782), 1, + aux_sym_package_specification_token2, + STATE(1725), 1, + sym_aspect_specification, + [45724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3784), 1, + anon_sym_SEMI, + STATE(1744), 1, + sym_aspect_specification, + [45737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(3786), 1, + anon_sym_EQ_GT, + STATE(1227), 1, + aux_sym_discriminant_association_repeat1, + [45750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3627), 1, + sym_identifier, + STATE(935), 1, + sym__aspect_mark, + STATE(1052), 1, + sym_aspect_association, + [45763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_COMMA, + ACTIONS(3648), 1, + anon_sym_SEMI, + STATE(1063), 1, + aux_sym__name_list_repeat1, + [45776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 1, + anon_sym_COMMA, + ACTIONS(3788), 1, + anon_sym_RPAREN, + STATE(1180), 1, + aux_sym_discriminant_constraint_repeat1, + [45789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3790), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45922] = 4, + [45798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3891), 1, + ACTIONS(3792), 1, anon_sym_SEMI, - STATE(1520), 1, + STATE(1743), 1, sym_aspect_specification, - [45935] = 4, + [45811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3207), 1, - anon_sym_SEMI, - STATE(1675), 1, - sym_aspect_specification, - [45948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, + ACTIONS(3765), 1, anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_SEMI, - STATE(1137), 1, - aux_sym__name_list_repeat1, - [45961] = 4, + ACTIONS(3794), 1, + anon_sym_RPAREN, + STATE(1179), 1, + aux_sym_index_constraint_repeat1, + [45824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_EQ_GT, - STATE(1190), 1, - aux_sym_discrete_choice_list_repeat1, - [45974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, - sym_identifier, - ACTIONS(3899), 1, - aux_sym_use_clause_token2, - ACTIONS(3901), 1, - aux_sym_package_body_token1, - [45987] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3903), 1, + ACTIONS(3796), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1747), 1, sym_aspect_specification, - [46000] = 4, + [45837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(3307), 3, + anon_sym_SEMI, aux_sym_with_clause_token2, - ACTIONS(3905), 1, - anon_sym_SEMI, - STATE(1524), 1, - sym_aspect_specification, - [46013] = 3, + aux_sym_expression_token3, + [45846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, - aux_sym_expression_token2, - ACTIONS(3907), 2, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3798), 1, + anon_sym_SEMI, + STATE(1684), 1, + sym_aspect_specification, + [45859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3800), 1, + anon_sym_SEMI, + STATE(1849), 1, + sym_aspect_specification, + [45872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3802), 3, + aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [46024] = 2, + [45881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3909), 3, - anon_sym_SEMI, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, + ACTIONS(3804), 1, + anon_sym_SEMI, + STATE(1856), 1, + sym_aspect_specification, + [45894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3687), 1, + anon_sym_COMMA, + ACTIONS(3806), 1, + anon_sym_RPAREN, + STATE(1176), 1, + aux_sym_case_expression_repeat1, + [45907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(3810), 1, + anon_sym_PIPE, + STATE(1227), 1, + aux_sym_discriminant_association_repeat1, + [45920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3813), 1, + anon_sym_SEMI, + STATE(1858), 1, + sym_aspect_specification, + [45933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3815), 1, + anon_sym_SEMI, + STATE(1863), 1, + sym_aspect_specification, + [45946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3817), 1, + anon_sym_SEMI, + STATE(1866), 1, + sym_aspect_specification, + [45959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3819), 1, + anon_sym_EQ_GT, + ACTIONS(3821), 1, + anon_sym_PIPE, + STATE(1231), 1, + aux_sym_discrete_choice_list_repeat1, + [45972] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(3826), 1, + anon_sym_RPAREN, + STATE(1174), 1, + aux_sym_record_component_association_list_repeat1, + [45985] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, + anon_sym_COMMA, + ACTIONS(3830), 1, + anon_sym_RPAREN, + STATE(1061), 1, + aux_sym_positional_array_aggregate_repeat1, + [45998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3832), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + [46007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3834), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_RPAREN, + STATE(1345), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [46020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3838), 1, + anon_sym_SEMI, + STATE(1654), 1, + sym_aspect_specification, [46033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, - anon_sym_EQ_GT, - ACTIONS(3911), 1, - anon_sym_PIPE, - STATE(1266), 1, - aux_sym_component_choice_list_repeat1, - [46046] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 3, - aux_sym_package_specification_token3, - aux_sym_expression_token3, - aux_sym_expression_token4, - [46055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 3, - anon_sym_SEMI, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46073] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3920), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46082] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - anon_sym_COMMA, - ACTIONS(3922), 1, - anon_sym_RPAREN, - STATE(1210), 1, - aux_sym_index_constraint_repeat1, - [46095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3926), 1, - anon_sym_SEMI, - STATE(1883), 1, + ACTIONS(3840), 1, + aux_sym_package_specification_token2, + STATE(1773), 1, sym_aspect_specification, - [46117] = 4, + [46046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3842), 1, anon_sym_SEMI, - ACTIONS(3928), 1, - anon_sym_RPAREN, - STATE(1205), 1, - aux_sym__parameter_specification_list_repeat1, - [46130] = 4, + STATE(1928), 1, + sym_aspect_specification, + [46059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3844), 1, sym_identifier, - STATE(1470), 1, - sym_parameter_specification, - STATE(1718), 1, - sym__defining_identifier_list, - [46143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3930), 1, + ACTIONS(3846), 2, anon_sym_SEMI, - STATE(1635), 1, - sym_aspect_specification, - [46156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, aux_sym_with_clause_token2, - ACTIONS(3932), 1, - anon_sym_SEMI, - STATE(1633), 1, - sym_aspect_specification, - [46169] = 2, + [46070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3934), 3, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3848), 1, + anon_sym_SEMI, + STATE(1930), 1, + sym_aspect_specification, + [46083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3650), 1, + sym_identifier, + STATE(1443), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [46094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3242), 1, + anon_sym_SEMI, + STATE(1889), 1, + sym_aspect_specification, + [46107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3850), 1, + aux_sym_package_specification_token2, + STATE(1569), 1, + sym_aspect_specification, + [46120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(3852), 1, + anon_sym_LPAREN, + STATE(1755), 1, + sym_iterated_element_association, + [46133] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46178] = 4, + [46142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3936), 1, + ACTIONS(3856), 3, anon_sym_SEMI, - STATE(1630), 1, - sym_aspect_specification, - [46191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3938), 1, - anon_sym_COMMA, - ACTIONS(3941), 1, - anon_sym_RPAREN, - STATE(1280), 1, - aux_sym__enumeration_literal_list_repeat1, - [46204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3943), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46213] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, aux_sym_with_clause_token2, - ACTIONS(3945), 1, - anon_sym_SEMI, - STATE(1515), 1, - sym_aspect_specification, - [46226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3947), 1, - anon_sym_SEMI, - STATE(1629), 1, - sym_aspect_specification, - [46239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3949), 1, - anon_sym_SEMI, - STATE(1665), 1, - sym_aspect_specification, - [46252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3951), 1, - anon_sym_SEMI, - STATE(1622), 1, - sym_aspect_specification, - [46265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3953), 1, - anon_sym_SEMI, - STATE(1892), 1, - sym_aspect_specification, - [46278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3955), 1, - anon_sym_SEMI, - STATE(1894), 1, - sym_aspect_specification, - [46291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3957), 3, - aux_sym_package_specification_token3, aux_sym_expression_token3, - aux_sym_expression_token4, - [46300] = 2, + [46151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 3, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3858), 1, + anon_sym_SEMI, + STATE(1879), 1, + sym_aspect_specification, + [46164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 3, anon_sym_RPAREN, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [46309] = 2, + [46173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 3, + ACTIONS(3862), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46318] = 4, + [46182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 1, - anon_sym_PIPE, - ACTIONS(3963), 1, - anon_sym_EQ_GT, - STATE(1174), 1, - aux_sym_exception_choice_list_repeat1, - [46331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3965), 3, + ACTIONS(3864), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46340] = 4, + [46191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(3967), 1, - aux_sym_package_specification_token2, - STATE(1531), 1, - sym_aspect_specification, - [46353] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3969), 1, + ACTIONS(3866), 1, anon_sym_SEMI, - STATE(1536), 1, + STATE(1638), 1, sym_aspect_specification, - [46366] = 4, + [46204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3971), 1, + ACTIONS(3642), 1, + anon_sym_COMMA, + ACTIONS(3868), 1, anon_sym_RPAREN, - ACTIONS(3973), 1, + STATE(1260), 1, + aux_sym__enumeration_literal_list_repeat1, + [46217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 3, anon_sym_SEMI, - STATE(1325), 1, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1801), 1, + aux_sym_attribute_designator_token1, + STATE(1326), 2, + sym_access_to_subprogram_definition, + sym_access_to_object_definition, + [46237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3872), 1, + anon_sym_SEMI, + STATE(1731), 1, + sym_aspect_specification, + [46250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46259] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3878), 1, + anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym_RPAREN, + STATE(1186), 1, + aux_sym_actual_parameter_part_repeat1, + [46281] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1414), 1, + sym__enumeration_literal_specification, + ACTIONS(3882), 2, + sym_identifier, + sym_character_literal, + [46292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3884), 1, + anon_sym_COMMA, + ACTIONS(3887), 1, + anon_sym_RPAREN, + STATE(1260), 1, + aux_sym__enumeration_literal_list_repeat1, + [46305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3889), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3891), 1, + anon_sym_SEMI, + STATE(1897), 1, + sym_aspect_specification, + [46327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3893), 1, + aux_sym_package_specification_token2, + STATE(1877), 1, + sym_aspect_specification, + [46340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3897), 1, + anon_sym_SEMI, + STATE(1726), 1, + sym_aspect_specification, + [46362] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3899), 1, + anon_sym_SEMI, + STATE(1529), 1, + sym_aspect_specification, + [46375] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3901), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_RPAREN, + STATE(1267), 1, + aux_sym_case_expression_repeat1, + [46388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3437), 1, + aux_sym_allocator_token1, + ACTIONS(3441), 1, + aux_sym_compilation_unit_token1, + [46401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3906), 1, + anon_sym_SEMI, + STATE(1943), 1, + sym_aspect_specification, + [46414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3707), 1, + anon_sym_SEMI, + ACTIONS(3908), 1, + anon_sym_RPAREN, + STATE(1181), 1, + aux_sym__parameter_specification_list_repeat1, + [46427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3910), 1, + anon_sym_SEMI, + STATE(1780), 1, + sym_aspect_specification, + [46440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3912), 1, + anon_sym_SEMI, + STATE(1533), 1, + sym_aspect_specification, + [46453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3914), 1, + anon_sym_COMMA, + ACTIONS(3916), 1, + anon_sym_RPAREN, + STATE(1319), 1, + aux_sym_record_component_association_list_repeat2, + [46466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 1, + anon_sym_RPAREN, + ACTIONS(3920), 1, + anon_sym_SEMI, + STATE(1274), 1, aux_sym_discriminant_specification_list_repeat1, - [46379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3975), 1, - anon_sym_SEMI, - STATE(1546), 1, - sym_aspect_specification, - [46392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3977), 1, - anon_sym_SEMI, - STATE(1547), 1, - sym_aspect_specification, - [46405] = 4, + [46479] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3330), 1, aux_sym_allocator_token1, - ACTIONS(3979), 1, + ACTIONS(3923), 1, aux_sym_with_clause_token1, - ACTIONS(3981), 1, + ACTIONS(3925), 1, aux_sym_private_type_declaration_token2, - [46418] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3285), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3983), 1, - anon_sym_SEMI, - ACTIONS(3985), 1, - aux_sym_with_clause_token1, - [46431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3987), 1, - anon_sym_SEMI, - STATE(1912), 1, - sym_aspect_specification, - [46444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3813), 1, - anon_sym_COMMA, - ACTIONS(3989), 1, - anon_sym_RPAREN, - STATE(1224), 1, - aux_sym_positional_array_aggregate_repeat1, - [46457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3991), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46466] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_COMMA, - ACTIONS(3996), 1, - anon_sym_RPAREN, - STATE(1303), 1, - aux_sym_pragma_g_repeat1, - [46479] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(3998), 1, - anon_sym_SEMI, - STATE(1914), 1, - sym_aspect_specification, [46492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 3, + ACTIONS(3927), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, [46501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 3, + ACTIONS(3929), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46510] = 4, + [46510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4002), 1, - anon_sym_SEMI, - STATE(1571), 1, - sym_aspect_specification, - [46523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 1, - sym_identifier, - STATE(945), 1, - sym__aspect_mark, - STATE(1050), 1, - sym_aspect_association, - [46536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 1, - anon_sym_COMMA, - ACTIONS(4004), 1, - anon_sym_RPAREN, - STATE(1202), 1, - aux_sym_record_component_association_list_repeat2, - [46549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4006), 1, - aux_sym_package_specification_token2, - STATE(1562), 1, - sym_aspect_specification, - [46562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 3, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - [46571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3720), 1, - sym_identifier, - STATE(1508), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - [46582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 3, + ACTIONS(3931), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46591] = 4, + [46519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4012), 1, - anon_sym_SEMI, - STATE(1927), 1, - sym_aspect_specification, - [46604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4014), 1, - anon_sym_SEMI, - STATE(1563), 1, - sym_aspect_specification, - [46617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4016), 3, + ACTIONS(3933), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46626] = 4, + [46528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1156), 1, - aux_sym__discrete_subtype_definition_list_repeat1, - [46639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3728), 1, - anon_sym_COMMA, - ACTIONS(4020), 1, - anon_sym_RPAREN, - STATE(1146), 1, - aux_sym__index_subtype_definition_list_repeat1, - [46652] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4022), 1, - anon_sym_SEMI, - STATE(1579), 1, - sym_aspect_specification, - [46665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4024), 1, - anon_sym_SEMI, - STATE(1580), 1, - sym_aspect_specification, - [46678] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(4026), 1, - aux_sym_attribute_designator_token3, - STATE(1460), 1, - sym_real_range_specification, - [46691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [46700] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3667), 1, - anon_sym_COMMA, - ACTIONS(4030), 1, - anon_sym_RPAREN, - STATE(1162), 1, - aux_sym__enumeration_literal_list_repeat1, - [46713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, + ACTIONS(3935), 3, aux_sym_iterator_filter_token1, - STATE(1062), 2, - sym_case_statement_alternative, - aux_sym_case_statement_repeat1, - [46724] = 4, + aux_sym_package_specification_token3, + aux_sym_pragma_g_token1, + [46537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 1, - anon_sym_SEMI, - ACTIONS(4032), 1, - anon_sym_RPAREN, - STATE(1158), 1, - aux_sym_discriminant_specification_list_repeat1, - [46737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3281), 1, - sym_identifier, - STATE(1458), 1, - sym_discriminant_specification, - STATE(1801), 1, - sym__defining_identifier_list, - [46750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4034), 1, - anon_sym_SEMI, - STATE(1891), 1, - sym_aspect_specification, - [46763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1779), 1, - aux_sym_attribute_designator_token1, - STATE(1306), 2, - sym_access_to_subprogram_definition, - sym_access_to_object_definition, - [46774] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4036), 3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_expression_token3, - [46783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4038), 3, - sym_identifier, - sym_string_literal, - sym_character_literal, - [46792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2199), 1, - aux_sym_with_clause_token2, - ACTIONS(4040), 1, - anon_sym_SEMI, - STATE(1598), 1, - sym_aspect_specification, - [46805] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(513), 1, - aux_sym_value_sequence_token1, - STATE(1511), 1, - sym_iterated_element_association, - [46818] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3645), 1, + ACTIONS(1919), 1, + anon_sym_COLON, + ACTIONS(1943), 1, anon_sym_COMMA, - ACTIONS(4042), 1, - anon_sym_RPAREN, - STATE(1155), 1, - aux_sym_global_aspect_definition_repeat1, - [46831] = 3, + STATE(1192), 1, + aux_sym__defining_identifier_list_repeat1, + [46550] = 4, ACTIONS(3), 1, sym_comment, - STATE(1137), 1, - aux_sym__name_list_repeat1, - ACTIONS(3661), 2, + ACTIONS(3878), 1, anon_sym_COMMA, + ACTIONS(3937), 1, anon_sym_RPAREN, - [46842] = 4, + STATE(1258), 1, + aux_sym_actual_parameter_part_repeat1, + [46563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2199), 1, + ACTIONS(2219), 1, aux_sym_with_clause_token2, - ACTIONS(4044), 1, + ACTIONS(3939), 1, anon_sym_SEMI, - STATE(1923), 1, + STATE(1793), 1, sym_aspect_specification, - [46855] = 2, + [46576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 3, + ACTIONS(3941), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46864] = 2, + [46585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [46873] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4050), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4052), 1, - aux_sym_with_clause_token2, - ACTIONS(4054), 1, - aux_sym_expression_token1, - [46892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3763), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [46900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - aux_sym_iterated_element_association_token1, - STATE(1603), 1, - sym_iterated_element_association, - [46910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4056), 1, - sym_identifier, - STATE(237), 1, - sym_reduction_attribute_designator, - [46920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(259), 1, + ACTIONS(3561), 3, aux_sym_package_specification_token3, - ACTIONS(261), 1, - aux_sym_subprogram_body_token1, - [46930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4058), 1, - sym_identifier, - ACTIONS(4060), 1, - anon_sym_SEMI, - [46940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4064), 1, - anon_sym_SEMI, - [46950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4068), 1, - aux_sym_access_to_subprogram_definition_token3, - [46960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4070), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [46968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 1, - aux_sym_package_specification_token3, - ACTIONS(4074), 1, - aux_sym_exception_declaration_token1, - [46978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 1, - anon_sym_SEMI, - ACTIONS(4078), 1, - aux_sym_accept_statement_token2, - [46988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4082), 1, - anon_sym_SEMI, - [46998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 1, - sym_identifier, - ACTIONS(4086), 1, - anon_sym_SEMI, - [47008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4088), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4090), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4092), 1, - sym_identifier, - ACTIONS(4094), 1, - anon_sym_SEMI, - [47034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4096), 1, - anon_sym_SEMI, - ACTIONS(4098), 1, - aux_sym_package_specification_token2, - [47044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 1, - sym_identifier, - ACTIONS(4102), 1, - anon_sym_SEMI, - [47054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4106), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3134), 1, - aux_sym_allocator_token1, - [47096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(4112), 1, - anon_sym_SEMI, - [47106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3285), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3389), 1, - aux_sym_allocator_token1, - [47116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4114), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4116), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [47132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4120), 1, - aux_sym_with_clause_token2, - [47142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4124), 1, - sym_identifier, - ACTIONS(4126), 1, - anon_sym_SEMI, - [47160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4128), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4106), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [47192] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - aux_sym_with_clause_token2, - STATE(1376), 1, - sym_record_extension_part, - [47210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4134), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [47218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 1, - sym_identifier, - ACTIONS(4140), 1, - anon_sym_SEMI, - [47236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4142), 1, - sym_identifier, - ACTIONS(4144), 1, - anon_sym_SEMI, - [47246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4146), 1, - sym_identifier, - ACTIONS(4148), 1, - anon_sym_SEMI, - [47256] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4150), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4152), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4154), 1, - aux_sym_access_to_subprogram_definition_token3, - [47274] = 3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46594] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3943), 1, + anon_sym_EQ_GT, + ACTIONS(3945), 1, + anon_sym_PIPE, + STATE(1321), 1, + aux_sym_discrete_choice_list_repeat1, + [46607] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 1, anon_sym_COMMA, - ACTIONS(4156), 1, + ACTIONS(3947), 1, + anon_sym_RPAREN, + STATE(1233), 1, + aux_sym_positional_array_aggregate_repeat1, + [46620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3475), 1, + aux_sym_iterator_filter_token1, + STATE(1096), 2, + sym_case_statement_alternative, + aux_sym_case_statement_repeat1, + [46640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(3951), 1, + anon_sym_EQ_GT, + STATE(1227), 1, + aux_sym_discriminant_association_repeat1, + [46653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3953), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3955), 1, + anon_sym_SEMI, + STATE(1559), 1, + sym_aspect_specification, + [46675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3461), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46693] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3957), 1, + anon_sym_COMMA, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(1295), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [46706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3962), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_RBRACK, - [47284] = 3, + [46715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3964), 1, + anon_sym_SEMI, + STATE(1790), 1, + sym_aspect_specification, + [46728] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1300), 1, + sym_quantifier, + ACTIONS(3138), 2, + aux_sym_use_clause_token1, + aux_sym_quantifier_token1, + [46739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3966), 1, + anon_sym_SEMI, + STATE(1786), 1, + sym_aspect_specification, + [46752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3650), 1, + sym_identifier, + STATE(1904), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + [46763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_RPAREN, + STATE(1312), 1, + aux_sym_pragma_g_repeat1, + [46776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3972), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [46785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3974), 3, + aux_sym_terminate_alternative_token1, + aux_sym_accept_statement_token1, + aux_sym_delay_until_statement_token1, + [46794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3976), 1, + aux_sym_package_specification_token2, + STATE(1614), 1, + sym_aspect_specification, + [46807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3978), 1, + anon_sym_SEMI, + STATE(1557), 1, + sym_aspect_specification, + [46820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3980), 1, + anon_sym_SEMI, + STATE(1558), 1, + sym_aspect_specification, + [46833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3982), 1, + anon_sym_COMMA, + ACTIONS(3985), 1, + anon_sym_RPAREN, + STATE(1307), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_COMMA, + ACTIONS(3989), 1, + anon_sym_RPAREN, + STATE(1344), 1, + aux_sym_global_aspect_definition_repeat1, + [46859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_COMMA, + ACTIONS(3993), 1, + anon_sym_SEMI, + STATE(1063), 1, + aux_sym__name_list_repeat1, + [46881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3463), 1, + aux_sym_expression_token2, + ACTIONS(3995), 2, + aux_sym_expression_token3, + aux_sym_expression_token4, + [46892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_COMMA, + ACTIONS(4000), 1, + anon_sym_RPAREN, + STATE(1312), 1, + aux_sym_pragma_g_repeat1, + [46905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4002), 1, + anon_sym_SEMI, + STATE(1779), 1, + sym_aspect_specification, + [46918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4004), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46927] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4006), 1, + anon_sym_SEMI, + STATE(1751), 1, + sym_aspect_specification, + [46940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4008), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [46949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 1, + anon_sym_COMMA, + ACTIONS(4012), 1, + anon_sym_RPAREN, + STATE(1346), 1, + aux_sym__index_subtype_definition_list_repeat1, + [46962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_RPAREN, + STATE(1232), 1, + aux_sym_record_component_association_list_repeat1, + [46975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3914), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_RPAREN, + STATE(1343), 1, + aux_sym_record_component_association_list_repeat2, + [46988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4018), 1, + anon_sym_SEMI, + ACTIONS(4020), 1, + aux_sym_with_clause_token1, + [47001] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_EQ_GT, + STATE(1231), 1, + aux_sym_discrete_choice_list_repeat1, + [47014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4024), 1, + anon_sym_SEMI, + STATE(1618), 1, + sym_aspect_specification, + [47027] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4026), 1, + anon_sym_COMMA, + ACTIONS(4028), 1, + anon_sym_RBRACK, + STATE(1061), 1, + aux_sym_positional_array_aggregate_repeat1, + [47040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4030), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47049] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4032), 3, + sym_identifier, + sym_string_literal, + sym_character_literal, + [47058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4034), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4036), 1, + anon_sym_SEMI, + STATE(1770), 1, + sym_aspect_specification, + [47080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4038), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4040), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [47098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + anon_sym_COMMA, + ACTIONS(4042), 1, + anon_sym_RPAREN, + STATE(1301), 1, + aux_sym_pragma_g_repeat1, + [47111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4044), 1, + anon_sym_SEMI, + STATE(1613), 1, + sym_aspect_specification, + [47124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4046), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [47133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4048), 1, + anon_sym_SEMI, + STATE(1757), 1, + sym_aspect_specification, + [47146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(3210), 1, + anon_sym_SEMI, + STATE(1653), 1, + sym_aspect_specification, + [47159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4050), 3, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_entry_declaration_token1, + [47168] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3496), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4052), 1, + anon_sym_SEMI, + STATE(1657), 1, + sym_aspect_specification, + [47190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_SEMI, + ACTIONS(4056), 1, + aux_sym_package_specification_token2, + ACTIONS(4058), 1, + aux_sym_expression_token3, + [47203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4060), 1, + anon_sym_SEMI, + STATE(1595), 1, + sym_aspect_specification, + [47216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1781), 1, + anon_sym_EQ_GT, + ACTIONS(1783), 1, + anon_sym_PIPE, + STATE(1290), 1, + aux_sym_discriminant_association_repeat1, + [47229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4062), 3, + aux_sym_package_specification_token3, + aux_sym_expression_token3, + aux_sym_expression_token4, + [47238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + aux_sym_with_clause_token2, + ACTIONS(4064), 1, + anon_sym_SEMI, + STATE(1594), 1, + sym_aspect_specification, + [47251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + anon_sym_COMMA, + ACTIONS(4069), 1, + anon_sym_RPAREN, + STATE(1343), 1, + aux_sym_record_component_association_list_repeat2, + [47264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_COMMA, + ACTIONS(4071), 1, + anon_sym_RPAREN, + STATE(1193), 1, + aux_sym_global_aspect_definition_repeat1, + [47277] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3834), 1, + anon_sym_COMMA, + ACTIONS(4073), 1, + anon_sym_RPAREN, + STATE(1295), 1, + aux_sym__discrete_subtype_definition_list_repeat1, + [47290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4010), 1, + anon_sym_COMMA, + ACTIONS(4075), 1, + anon_sym_RPAREN, + STATE(1307), 1, + aux_sym__index_subtype_definition_list_repeat1, + [47303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [47321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + aux_sym_with_clause_token2, + STATE(1366), 1, + sym_record_extension_part, + [47331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [47347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3489), 1, + anon_sym_SEMI, + ACTIONS(3491), 1, + aux_sym_package_specification_token2, + [47381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4087), 1, + sym_identifier, + ACTIONS(4089), 1, + anon_sym_SEMI, + [47391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3580), 1, + anon_sym_COMMA, + ACTIONS(3582), 1, + anon_sym_RPAREN, + [47401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_SEMI, + ACTIONS(4093), 1, + aux_sym_accept_statement_token2, + [47411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4095), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4099), 1, + anon_sym_SEMI, + [47429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4103), 1, + aux_sym_with_clause_token2, + STATE(1484), 1, + sym_record_extension_part, + [47447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + sym_identifier, + ACTIONS(4107), 1, + anon_sym_SEMI, + [47457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + sym_identifier, + ACTIONS(4111), 1, + anon_sym_SEMI, + [47467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4115), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3324), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3467), 1, + aux_sym_allocator_token1, + [47493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4119), 1, + aux_sym_package_specification_token3, + ACTIONS(4121), 1, + aux_sym_exception_declaration_token1, + [47511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3521), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4123), 1, + aux_sym_package_specification_token3, + ACTIONS(4125), 1, + aux_sym_subprogram_body_token1, + [47537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_COMMA, + STATE(1061), 1, + aux_sym_positional_array_aggregate_repeat1, + [47547] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4000), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4131), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4133), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_SEMI, + ACTIONS(4137), 1, + aux_sym_accept_statement_token2, + [47589] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 1, + sym_identifier, + ACTIONS(4143), 1, + anon_sym_SEMI, + [47615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [47623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4147), 1, + anon_sym_SEMI, + ACTIONS(4149), 1, + aux_sym_package_specification_token2, + [47633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4151), 1, + aux_sym_with_clause_token2, + ACTIONS(4153), 1, + aux_sym_expression_token1, + [47643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 1, + aux_sym_with_clause_token2, + STATE(1366), 1, + sym_record_extension_part, + [47661] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4159), 1, sym_identifier, - ACTIONS(4161), 1, + STATE(238), 1, + sym_reduction_attribute_designator, + [47671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2659), 1, + anon_sym_LPAREN, + STATE(1457), 1, + sym_formal_part, + [47681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 2, anon_sym_SEMI, - [47294] = 3, + aux_sym_with_clause_token2, + [47689] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4163), 1, aux_sym_iterator_filter_token1, - STATE(1217), 1, + STATE(1226), 1, sym_case_expression_alternative, - [47304] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3996), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47312] = 2, + [47699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4165), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3577), 1, - anon_sym_COMMA, - ACTIONS(3579), 1, - anon_sym_RPAREN, - [47330] = 2, + sym_identifier, + sym_string_literal, + [47707] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4167), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3883), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47346] = 3, + [47715] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4169), 1, sym_identifier, ACTIONS(4171), 1, anon_sym_SEMI, - [47356] = 2, + [47725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 2, + ACTIONS(4173), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4177), 1, + aux_sym_with_clause_token1, + [47743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 1, + aux_sym_iterator_filter_token1, + STATE(1803), 1, + sym_entry_barrier, + [47753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4179), 1, + sym_identifier, + ACTIONS(4181), 1, + anon_sym_SEMI, + [47771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3437), 1, + aux_sym_allocator_token1, + [47789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4183), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3819), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [47364] = 3, + [47805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 1, + ACTIONS(4185), 2, anon_sym_SEMI, - ACTIONS(4175), 1, aux_sym_accept_statement_token2, - [47374] = 3, + [47813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - anon_sym_COMMA, - ACTIONS(4179), 1, - anon_sym_RPAREN, - [47384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4182), 2, + ACTIONS(4187), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47392] = 2, + [47821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3904), 2, + anon_sym_COMMA, anon_sym_RPAREN, + [47829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 2, anon_sym_SEMI, - [47400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4184), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(1372), 1, - sym_formal_part, - [47418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 1, - aux_sym_result_profile_token1, - STATE(822), 1, - sym_result_profile, - [47428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, aux_sym_with_clause_token2, - STATE(1406), 1, - sym_record_extension_part, - [47438] = 3, + [47837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4191), 1, sym_identifier, - ACTIONS(4188), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - [47448] = 3, + [47847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, - aux_sym_with_clause_token2, - STATE(1376), 1, - sym_record_extension_part, - [47458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4192), 2, + ACTIONS(4195), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47466] = 2, + [47855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 2, + ACTIONS(3427), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47474] = 3, + [47863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 1, - anon_sym_SEMI, - ACTIONS(4198), 1, - aux_sym_package_specification_token2, - [47484] = 2, + ACTIONS(3156), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 2, - anon_sym_COMMA, + ACTIONS(4197), 2, anon_sym_RPAREN, - [47492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4200), 2, anon_sym_SEMI, - aux_sym_with_clause_token2, - [47500] = 2, + [47879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 2, + ACTIONS(4199), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [47508] = 2, + ACTIONS(4201), 1, + aux_sym_accept_statement_token2, + [47889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4210), 1, - aux_sym_with_clause_token1, - [47542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 1, - aux_sym_interface_type_definition_token2, - ACTIONS(3550), 1, - aux_sym_allocator_token1, - [47552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4212), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, + ACTIONS(4203), 1, sym_identifier, - ACTIONS(4216), 1, + ACTIONS(4205), 1, anon_sym_SEMI, - [47570] = 2, + [47899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4218), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47578] = 3, + ACTIONS(3887), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4207), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4209), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [47923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4211), 1, aux_sym_expression_token3, - ACTIONS(4222), 1, + ACTIONS(4213), 1, aux_sym_expression_token4, - [47588] = 2, + [47933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(4215), 1, + sym_identifier, + ACTIONS(4217), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - [47596] = 3, + [47943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3156), 1, + anon_sym_PIPE, + ACTIONS(4219), 1, + anon_sym_EQ_GT, + [47953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4222), 1, + sym_identifier, + ACTIONS(4224), 1, + anon_sym_SEMI, + [47963] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4226), 1, - aux_sym_with_clause_token2, - STATE(1446), 1, - sym_record_extension_part, - [47606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 1, sym_identifier, - ACTIONS(4230), 1, + ACTIONS(4228), 1, anon_sym_SEMI, - [47616] = 2, + [47973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 2, + ACTIONS(4230), 2, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47624] = 3, + aux_sym_with_clause_token2, + [47981] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4232), 1, + sym_identifier, ACTIONS(4234), 1, anon_sym_SEMI, - ACTIONS(4236), 1, - aux_sym_accept_statement_token2, - [47634] = 3, + [47991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, - sym_identifier, - ACTIONS(4240), 1, - anon_sym_SEMI, - [47644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(4244), 1, - anon_sym_SEMI, - [47654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4246), 1, - sym_identifier, - ACTIONS(4248), 1, - anon_sym_SEMI, - [47664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - [47674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47690] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, + ACTIONS(4236), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47698] = 3, + [47999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2764), 1, + aux_sym_result_profile_token1, + STATE(835), 1, + sym_result_profile, + [48009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3876), 1, + anon_sym_COMMA, + ACTIONS(4240), 1, + anon_sym_RBRACK, + [48027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4243), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48035] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4247), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + anon_sym_SEMI, + [48061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4253), 1, + sym_identifier, + ACTIONS(4255), 1, + anon_sym_SEMI, + [48071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4257), 1, - aux_sym_with_clause_token2, + sym_identifier, ACTIONS(4259), 1, - aux_sym_expression_token1, - [47708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3861), 1, - sym_identifier, - ACTIONS(3863), 1, - aux_sym_use_clause_token2, - [47726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3897), 1, - sym_identifier, - ACTIONS(3899), 1, - aux_sym_use_clause_token2, - [47736] = 2, + anon_sym_SEMI, + [48081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4261), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47744] = 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 2, - anon_sym_RPAREN, + ACTIONS(4263), 1, anon_sym_SEMI, - [47752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3402), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47760] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4265), 1, - sym_identifier, + aux_sym_package_specification_token2, + [48099] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(4267), 1, anon_sym_SEMI, - [47770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3027), 1, - aux_sym_iterator_filter_token1, - STATE(1787), 1, - sym_entry_barrier, - [47780] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - aux_sym_with_clause_token2, - STATE(1446), 1, - sym_record_extension_part, - [47790] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4269), 1, - sym_identifier, - ACTIONS(4271), 1, - anon_sym_SEMI, - [47800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 2, - anon_sym_COMMA, - anon_sym_COLON, - [47808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_SEMI, - ACTIONS(3675), 1, aux_sym_package_specification_token2, - [47818] = 2, + [48109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 2, + ACTIONS(4272), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47826] = 3, + [48117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4275), 1, + ACTIONS(4274), 1, + aux_sym_with_clause_token2, + ACTIONS(4276), 1, + aux_sym_expression_token1, + [48127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_SEMI, + ACTIONS(4280), 1, + aux_sym_package_specification_token2, + [48137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4282), 1, sym_identifier, - ACTIONS(4277), 1, + ACTIONS(4284), 1, anon_sym_SEMI, - [47836] = 2, + [48147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3836), 2, + ACTIONS(3808), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [47852] = 2, + [48155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4286), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47860] = 3, + [48163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, - aux_sym_with_clause_token2, - STATE(1406), 1, - sym_record_extension_part, - [47870] = 3, + ACTIONS(4288), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(4290), 1, + anon_sym_EQ_GT, + [48173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, - anon_sym_SEMI, - ACTIONS(4287), 1, - aux_sym_package_specification_token2, - [47880] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4289), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 2, + ACTIONS(3777), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47896] = 3, + [48181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 1, + ACTIONS(4292), 1, sym_identifier, - ACTIONS(4295), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - [47906] = 3, + [48191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4296), 2, anon_sym_SEMI, - ACTIONS(4299), 1, - aux_sym_package_specification_token2, - [47916] = 2, + aux_sym_with_clause_token2, + [48199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47924] = 2, + ACTIONS(4298), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47932] = 3, + ACTIONS(4300), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4304), 1, + aux_sym_access_to_subprogram_definition_token3, + [48225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + aux_sym_iterated_element_association_token1, + STATE(1829), 1, + sym_iterated_element_association, + [48235] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4306), 1, - aux_sym_package_specification_token3, + sym_identifier, ACTIONS(4308), 1, - aux_sym_subprogram_body_token1, - [47942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 1, anon_sym_SEMI, - ACTIONS(4312), 1, - aux_sym_package_specification_token2, - [47952] = 3, + [48245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2282), 1, - aux_sym_access_to_subprogram_definition_token3, - [47962] = 2, + ACTIONS(3756), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 2, + ACTIONS(4310), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47978] = 2, + [48261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 2, + ACTIONS(3746), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47994] = 3, + [48269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - aux_sym_iterator_filter_token1, - STATE(1662), 1, - sym_entry_barrier, - [48004] = 2, + ACTIONS(4312), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4314), 1, + sym_identifier, + ACTIONS(4316), 1, + anon_sym_SEMI, + [48287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4318), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4320), 2, aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [48020] = 2, + [48295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48028] = 2, + ACTIONS(3057), 1, + aux_sym_interface_type_definition_token2, + ACTIONS(3096), 1, + aux_sym_allocator_token1, + [48305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 1, + sym_identifier, + ACTIONS(4322), 1, + anon_sym_SEMI, + [48315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 1, + aux_sym_with_clause_token2, + STATE(1488), 1, + sym_record_extension_part, + [48325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4324), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48036] = 2, + [48333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4326), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48044] = 3, + anon_sym_COMMA, + anon_sym_RPAREN, + [48341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, - sym_identifier, - ACTIONS(4330), 1, - anon_sym_SEMI, - [48054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4332), 2, + ACTIONS(3028), 1, aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48062] = 2, + STATE(1677), 1, + sym_entry_barrier, + [48351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 2, + ACTIONS(4328), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [48359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4330), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3724), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [48070] = 2, + [48375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 2, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - [48078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3533), 2, - anon_sym_RPAREN, + ACTIONS(4332), 1, + sym_identifier, + ACTIONS(4334), 1, anon_sym_SEMI, - [48086] = 3, + [48385] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, sym_identifier, ACTIONS(4338), 1, anon_sym_SEMI, - [48096] = 2, + [48395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 2, + ACTIONS(3381), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48104] = 3, + [48403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - aux_sym_chunk_specification_token1, - ACTIONS(4342), 1, - aux_sym_iterator_specification_token1, - [48114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4344), 1, + ACTIONS(4340), 2, anon_sym_COMMA, - STATE(1124), 1, - aux_sym_positional_array_aggregate_repeat1, - [48124] = 2, + anon_sym_RPAREN, + [48411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3379), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_LPAREN, + ACTIONS(4344), 1, + anon_sym_SEMI, + [48429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4346), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48132] = 3, + [48437] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4348), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(4350), 1, - anon_sym_SEMI, - [48142] = 3, + anon_sym_RPAREN, + [48447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - aux_sym_with_clause_token2, - ACTIONS(4354), 1, - aux_sym_expression_token1, - [48152] = 2, + ACTIONS(3703), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 2, - aux_sym_iterator_filter_token1, + ACTIONS(267), 1, aux_sym_package_specification_token3, - [48160] = 3, + ACTIONS(269), 1, + aux_sym_subprogram_body_token1, + [48465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(4360), 1, - anon_sym_EQ_GT, - [48170] = 3, + ACTIONS(4353), 1, + sym_identifier, + ACTIONS(4355), 1, + anon_sym_SEMI, + [48475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4357), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3709), 1, + sym_identifier, + ACTIONS(3711), 1, + aux_sym_use_clause_token2, + [48493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48501] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4163), 1, aux_sym_iterator_filter_token1, - STATE(1430), 1, + STATE(1405), 1, sym_case_expression_alternative, - [48180] = 2, + [48511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 2, + ACTIONS(3739), 2, + anon_sym_COMMA, + anon_sym_COLON, + [48519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3681), 1, + sym_identifier, + ACTIONS(3683), 1, + aux_sym_use_clause_token2, + [48529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4361), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48188] = 3, + [48537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 1, - sym_identifier, - ACTIONS(4366), 1, - anon_sym_SEMI, - [48198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 2, - anon_sym_SEMI, - aux_sym_accept_statement_token2, - [48206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 1, - sym_identifier, - ACTIONS(4372), 1, - anon_sym_SEMI, - [48216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3581), 1, - aux_sym_compilation_unit_token1, - ACTIONS(4374), 1, - aux_sym_with_clause_token1, - [48226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3583), 1, - anon_sym_SEMI, - ACTIONS(3585), 1, - aux_sym_package_specification_token2, - [48236] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 2, + ACTIONS(4363), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_RPAREN, - [48251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4381), 1, - aux_sym_if_expression_token1, - [48258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4383), 1, - anon_sym_SEMI, - [48265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_RPAREN, - [48272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - sym_identifier, - [48279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 1, - sym_identifier, - [48286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4391), 1, - anon_sym_SEMI, - [48293] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 1, - anon_sym_COLON, - [48300] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 1, - anon_sym_RPAREN, - [48307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4397), 1, - anon_sym_EQ_GT, - [48314] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 1, - aux_sym_package_specification_token2, - [48321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4401), 1, - anon_sym_SEMI, - [48328] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 1, - aux_sym_expression_token2, - [48335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4086), 1, - anon_sym_SEMI, - [48342] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4405), 1, - anon_sym_RPAREN, - [48349] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_RPAREN, - [48356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4409), 1, - anon_sym_SEMI, - [48363] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4411), 1, - aux_sym_use_clause_token2, - [48370] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4413), 1, - aux_sym_loop_statement_token1, - [48377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 1, - anon_sym_RBRACK, - [48384] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4415), 1, - aux_sym_at_clause_token1, - [48391] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 1, - anon_sym_RBRACK, - [48398] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4419), 1, - anon_sym_SEMI, - [48405] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4421), 1, - sym_tick, - [48412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, - aux_sym_with_clause_token2, - [48419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 1, - anon_sym_SEMI, - [48426] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 1, - anon_sym_SEMI, - [48433] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4429), 1, - aux_sym_package_specification_token3, - [48440] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2115), 1, - anon_sym_DOT_DOT, - [48447] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_SEMI, - [48454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 1, - anon_sym_SEMI, - [48461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4433), 1, - anon_sym_SEMI, - [48468] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 1, - anon_sym_RBRACK, - [48475] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 1, - aux_sym_attribute_designator_token2, - [48482] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 1, - anon_sym_SEMI, - [48489] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4441), 1, - aux_sym_with_clause_token2, - [48496] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4443), 1, - aux_sym_with_clause_token2, - [48503] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 1, - anon_sym_LT_GT, - [48510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 1, - aux_sym_compilation_unit_token1, - [48517] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 1, - anon_sym_SEMI, - [48524] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, - aux_sym_object_renaming_declaration_token1, - [48531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3675), 1, - aux_sym_package_specification_token2, - [48538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 1, - aux_sym_compilation_unit_token1, [48545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4453), 1, - sym_identifier, - [48552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 1, - anon_sym_EQ_GT, - [48559] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4457), 1, - sym_identifier, - [48566] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 1, - anon_sym_SEMI, - [48573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4461), 1, - aux_sym_allocator_token1, - [48580] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4463), 1, - aux_sym_iterated_element_association_token2, - [48587] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4465), 1, - aux_sym_iterated_element_association_token2, - [48594] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4467), 1, - anon_sym_SEMI, - [48601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4469), 1, - aux_sym_object_renaming_declaration_token1, - [48608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 1, - sym_tick, - [48615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4473), 1, + ACTIONS(3679), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [48622] = 2, + [48553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, + ACTIONS(3297), 1, + anon_sym_SEMI, + ACTIONS(3674), 1, + aux_sym_package_specification_token2, + [48563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 1, + aux_sym_with_clause_token2, + STATE(1488), 1, + sym_record_extension_part, + [48589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + sym_identifier, + ACTIONS(4374), 1, + anon_sym_SEMI, + [48599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 2, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, + [48607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + aux_sym_chunk_specification_token1, + ACTIONS(4380), 1, + aux_sym_iterator_specification_token1, + [48617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 1, aux_sym_compilation_unit_token1, - [48629] = 2, + ACTIONS(4382), 1, + aux_sym_with_clause_token1, + [48627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 1, + ACTIONS(4384), 1, anon_sym_SEMI, - [48636] = 2, + ACTIONS(4386), 1, + aux_sym_package_specification_token2, + [48637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4477), 1, + ACTIONS(4388), 1, + sym_identifier, + ACTIONS(4390), 1, anon_sym_SEMI, - [48643] = 2, + [48647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, - anon_sym_SEMI, - [48650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4481), 1, - aux_sym_allocator_token1, + ACTIONS(4392), 1, + aux_sym_with_clause_token2, + ACTIONS(4394), 1, + aux_sym_expression_token1, [48657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 1, + ACTIONS(4396), 2, anon_sym_SEMI, - [48664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3108), 1, - aux_sym_entry_declaration_token1, - [48671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4483), 1, - aux_sym_if_expression_token1, - [48678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4485), 1, - anon_sym_SEMI, - [48685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4487), 1, - aux_sym_package_specification_token3, - [48692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4489), 1, - anon_sym_RPAREN, - [48699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4491), 1, - sym_identifier, - [48706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4493), 1, - aux_sym_primary_null_token1, - [48713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4495), 1, - anon_sym_SEMI, - [48720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4497), 1, - anon_sym_SEMI, - [48727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4499), 1, - aux_sym_record_component_association_list_token1, - [48734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4501), 1, - aux_sym_asynchronous_select_token1, - [48741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4503), 1, - aux_sym_package_specification_token3, - [48748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4505), 1, - aux_sym_package_specification_token2, - [48755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3627), 1, - anon_sym_SEMI, - [48762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4507), 1, - anon_sym_SEMI, - [48769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4509), 1, - anon_sym_SEMI, - [48776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, - anon_sym_SEMI, - [48783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4511), 1, - anon_sym_RPAREN, - [48790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4513), 1, - anon_sym_SEMI, - [48797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_SEMI, - [48804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3758), 1, - anon_sym_RPAREN, - [48811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 1, - anon_sym_SEMI, - [48818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4517), 1, - anon_sym_GT_GT, - [48825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4519), 1, - aux_sym_package_specification_token2, - [48832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_RPAREN, - [48839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 1, - aux_sym_package_specification_token2, - [48846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4525), 1, - anon_sym_SEMI, - [48853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4527), 1, - sym_identifier, - [48860] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_RPAREN, - [48867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 1, - anon_sym_SEMI, - [48874] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 1, - anon_sym_SEMI, - [48881] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3120), 1, - aux_sym_loop_statement_token1, - [48888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym_RPAREN, - [48895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 1, - anon_sym_SEMI, - [48902] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4539), 1, - anon_sym_SEMI, - [48909] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_SEMI, - [48916] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4543), 1, - sym_identifier, - [48923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4285), 1, - anon_sym_SEMI, - [48930] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_SEMI, - [48937] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - aux_sym_private_type_declaration_token1, - [48944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4547), 1, - anon_sym_SEMI, - [48951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4549), 1, - anon_sym_SEMI, - [48958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4551), 1, - sym_identifier, - [48965] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4553), 1, - aux_sym_iterated_element_association_token2, - [48972] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 1, - anon_sym_SEMI, - [48979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4557), 1, - aux_sym_package_specification_token3, - [48986] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 1, - anon_sym_EQ_GT, - [48993] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4306), 1, - aux_sym_package_specification_token3, - [49000] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4561), 1, - anon_sym_SEMI, - [49007] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 1, - aux_sym_record_component_association_list_token1, - [49014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4565), 1, - aux_sym_subunit_token1, - [49021] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4567), 1, - sym_identifier, - [49028] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4569), 1, - anon_sym_SEMI, - [49035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 1, - anon_sym_RBRACK, - [49042] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4573), 1, - anon_sym_RPAREN, - [49049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4575), 1, aux_sym_with_clause_token2, - [49056] = 2, + [48665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 1, + ACTIONS(4398), 1, + aux_sym_compilation_unit_token1, + ACTIONS(4400), 1, + aux_sym_with_clause_token2, + [48675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4402), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(4404), 1, + aux_sym_access_to_subprogram_definition_token3, + [48685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2282), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2284), 1, + aux_sym_access_to_subprogram_definition_token3, + [48695] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 1, + aux_sym_with_clause_token2, + STATE(1484), 1, + sym_record_extension_part, + [48705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + sym_identifier, + ACTIONS(4408), 1, anon_sym_SEMI, - [49063] = 2, + [48715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(4410), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4414), 1, + aux_sym_record_component_association_list_token1, + [48738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 1, + aux_sym_subunit_token1, + [48745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 1, + anon_sym_SEMI, + [48752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4418), 1, + anon_sym_SEMI, + [48759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_SEMI, + [48766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_RBRACK, + [48773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4424), 1, + anon_sym_SEMI, + [48780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4426), 1, + anon_sym_SEMI, + [48787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 1, + anon_sym_SEMI, + [48794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4428), 1, + anon_sym_SEMI, + [48801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 1, + aux_sym_interface_type_definition_token2, + [48808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4430), 1, + aux_sym_record_component_association_list_token1, + [48815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4432), 1, anon_sym_RPAREN, - [49070] = 2, + [48822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, + ACTIONS(4434), 1, + aux_sym_with_clause_token2, + [48829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2173), 1, + anon_sym_DOT_DOT, + [48836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, + anon_sym_COLON, + [48843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, anon_sym_SEMI, - [49077] = 2, + [48850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 1, + anon_sym_RPAREN, + [48857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4442), 1, + anon_sym_EQ_GT, + [48864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4444), 1, + aux_sym_package_specification_token3, + [48871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, + sym_tick, + [48878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_RPAREN, + [48885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4450), 1, + anon_sym_RPAREN, + [48892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4452), 1, + anon_sym_SEMI, + [48899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_SEMI, + [48906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_EQ_GT, + [48913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, + aux_sym_package_specification_token2, + [48920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_SEMI, + [48927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4460), 1, + aux_sym_with_clause_token2, + [48934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4462), 1, + aux_sym_package_specification_token2, + [48941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4464), 1, + anon_sym_LT_GT, + [48948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + aux_sym_package_specification_token2, + [48955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4468), 1, + aux_sym_compilation_unit_token1, + [48962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_RPAREN, + [48969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_RPAREN, + [48976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4472), 1, + anon_sym_RPAREN, + [48983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4474), 1, + aux_sym_compilation_unit_token1, + [48990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_SEMI, + [48997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(207), 1, aux_sym_subprogram_body_token1, - [49084] = 2, + [49004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 1, - anon_sym_EQ_GT, - [49091] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 1, + ACTIONS(4478), 1, anon_sym_SEMI, - [49098] = 2, + [49011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, - aux_sym_package_specification_token2, - [49105] = 2, + ACTIONS(4480), 1, + aux_sym_record_component_association_list_token1, + [49018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 1, - anon_sym_COLON, - [49112] = 2, + ACTIONS(4482), 1, + aux_sym_compilation_unit_token1, + [49025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, - aux_sym_package_specification_token3, - [49119] = 2, + ACTIONS(4484), 1, + aux_sym_iterated_element_association_token2, + [49032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 1, - aux_sym_subprogram_body_token1, - [49126] = 2, + ACTIONS(4486), 1, + aux_sym_iterated_element_association_token2, + [49039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - [49133] = 2, + [49046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 1, - aux_sym_package_specification_token2, - [49140] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4597), 1, + ACTIONS(4181), 1, anon_sym_SEMI, - [49147] = 2, + [49053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(323), 1, - aux_sym_subprogram_body_token1, - [49154] = 2, + ACTIONS(4490), 1, + aux_sym_compilation_unit_token1, + [49060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 1, - aux_sym_package_specification_token3, - [49161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - anon_sym_RBRACK, - [49168] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4601), 1, - anon_sym_SEMI, - [49175] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4603), 1, - anon_sym_SEMI, - [49182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4605), 1, - aux_sym_package_specification_token3, - [49189] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_SEMI, - [49196] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - anon_sym_SEMI, - [49203] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4609), 1, - aux_sym_package_specification_token3, - [49210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4611), 1, - aux_sym_package_specification_token3, - [49217] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_SEMI, - [49224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - anon_sym_SEMI, - [49231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - aux_sym_asynchronous_select_token1, - [49238] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3708), 1, - anon_sym_SEMI, - [49245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4619), 1, - anon_sym_SEMI, - [49252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 1, - anon_sym_EQ_GT, - [49259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4623), 1, - anon_sym_SEMI, - [49266] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4625), 1, - anon_sym_SEMI, - [49273] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4627), 1, - anon_sym_EQ_GT, - [49280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, + ACTIONS(4492), 1, aux_sym_primary_null_token1, - [49287] = 2, + [49067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3838), 1, anon_sym_SEMI, - [49294] = 2, + [49074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, - aux_sym_compilation_unit_token1, - [49301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4287), 1, - aux_sym_package_specification_token2, - [49308] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4633), 1, - aux_sym_asynchronous_select_token1, - [49315] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - aux_sym_with_clause_token2, - [49322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4637), 1, - aux_sym_loop_statement_token1, - [49329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4639), 1, - anon_sym_SEMI, - [49336] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4641), 1, + ACTIONS(4494), 1, aux_sym_package_specification_token3, - [49343] = 2, + [49081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 1, - aux_sym_with_clause_token2, - [49350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4645), 1, - anon_sym_RPAREN, - [49357] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4647), 1, - anon_sym_SEMI, - [49364] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4649), 1, - anon_sym_SEMI, - [49371] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4651), 1, - sym_tick, - [49378] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4653), 1, - anon_sym_SEMI, - [49385] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4655), 1, - anon_sym_SEMI, - [49392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4657), 1, - anon_sym_SEMI, - [49399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4659), 1, - anon_sym_SEMI, - [49406] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, - aux_sym_package_specification_token3, - [49413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 1, - aux_sym_with_clause_token2, - [49420] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4665), 1, + ACTIONS(4496), 1, aux_sym_subprogram_body_token1, - [49427] = 2, + [49088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, - sym_identifier, - [49434] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4669), 1, - anon_sym_RPAREN, - [49441] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4671), 1, - aux_sym_package_specification_token2, - [49448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4673), 1, - aux_sym_package_specification_token2, - [49455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_COLON, - [49462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - aux_sym_package_specification_token3, - [49469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4679), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - [49476] = 2, + [49095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 1, + ACTIONS(4500), 1, anon_sym_SEMI, - [49483] = 2, + [49102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 1, - aux_sym_with_clause_token2, - [49490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3358), 1, - aux_sym_package_specification_token3, - [49497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4685), 1, - anon_sym_RPAREN, - [49504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4687), 1, - anon_sym_RPAREN, - [49511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4689), 1, - aux_sym_package_specification_token2, - [49518] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4691), 1, - anon_sym_RPAREN, - [49525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4693), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - [49532] = 2, + [49109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4695), 1, - aux_sym_compilation_unit_token1, - [49539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3306), 1, + ACTIONS(3872), 1, anon_sym_SEMI, - [49546] = 2, + [49116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4697), 1, - anon_sym_RPAREN, - [49553] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - aux_sym_expression_token2, - [49560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4701), 1, - ts_builtin_sym_end, - [49567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4703), 1, - anon_sym_RPAREN, - [49574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4705), 1, + ACTIONS(4504), 1, anon_sym_SEMI, - [49581] = 2, + [49123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, - sym_identifier, - [49588] = 2, + ACTIONS(4506), 1, + anon_sym_DOT_DOT, + [49130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, - anon_sym_RPAREN, - [49595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4709), 1, - anon_sym_RBRACK, - [49602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4711), 1, - aux_sym_package_specification_token3, - [49609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4713), 1, - anon_sym_SEMI, - [49616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4715), 1, - anon_sym_SEMI, - [49623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4717), 1, - anon_sym_SEMI, - [49630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4719), 1, - aux_sym_compilation_unit_token1, - [49637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 1, - aux_sym_with_clause_token2, - [49644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4723), 1, - anon_sym_SEMI, - [49651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4248), 1, - anon_sym_SEMI, - [49658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 1, - anon_sym_SEMI, - [49665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4727), 1, - aux_sym_package_specification_token3, - [49672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4729), 1, - aux_sym_package_specification_token3, - [49679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4731), 1, + ACTIONS(4508), 1, anon_sym_LPAREN, - [49686] = 2, + [49137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4733), 1, - aux_sym_expression_token2, - [49693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4735), 1, - anon_sym_SEMI, - [49700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4737), 1, - anon_sym_SEMI, - [49707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4739), 1, - aux_sym_package_specification_token3, - [49714] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4741), 1, - aux_sym_compilation_unit_token1, - [49721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4743), 1, - sym_identifier, - [49728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4745), 1, - anon_sym_SEMI, - [49735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4747), 1, - aux_sym_with_clause_token2, - [49742] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4749), 1, - anon_sym_RPAREN, - [49749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - aux_sym_package_specification_token3, - [49756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4753), 1, - aux_sym_subprogram_body_token1, - [49763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 1, - anon_sym_SEMI, - [49770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4757), 1, - anon_sym_SEMI, - [49777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4759), 1, - aux_sym_asynchronous_select_token1, - [49784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - aux_sym_package_specification_token3, - [49791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4763), 1, - anon_sym_SEMI, - [49798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4765), 1, - aux_sym_package_specification_token3, - [49805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4767), 1, - aux_sym_asynchronous_select_token1, - [49812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4769), 1, - aux_sym_asynchronous_select_token1, - [49819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4771), 1, - anon_sym_SEMI, - [49826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4773), 1, - anon_sym_SEMI, - [49833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - aux_sym_result_profile_token1, - [49840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4777), 1, - anon_sym_COLON, - [49847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4779), 1, - aux_sym_package_specification_token2, - [49854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4781), 1, - anon_sym_SEMI, - [49861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4783), 1, - sym_identifier, - [49868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4785), 1, - anon_sym_SEMI, - [49875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_SEMI, - [49882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_package_specification_token3, - [49889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4791), 1, + ACTIONS(4510), 1, aux_sym_if_expression_token1, - [49896] = 2, + [49144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3905), 1, - anon_sym_SEMI, - [49903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4793), 1, - aux_sym_expression_token2, - [49910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4795), 1, - anon_sym_SEMI, - [49917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 1, - anon_sym_SEMI, - [49924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3211), 1, - anon_sym_SEMI, - [49931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4799), 1, - anon_sym_LPAREN, - [49938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_SEMI, - [49945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4801), 1, - aux_sym_iterated_element_association_token2, - [49952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_EQ_GT, - [49959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 1, - anon_sym_SEMI, - [49966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_RPAREN, - [49973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4807), 1, - anon_sym_SEMI, - [49980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4809), 1, - anon_sym_RPAREN, - [49987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4811), 1, - anon_sym_RPAREN, - [49994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4813), 1, - aux_sym_allocator_token1, - [50001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4815), 1, - anon_sym_LT_GT, - [50008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LT_GT, - [50015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4819), 1, - anon_sym_DOT_DOT, - [50022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4821), 1, - sym_identifier, - [50029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - sym_identifier, - [50036] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 1, - anon_sym_LT_GT, - [50043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 1, - anon_sym_EQ_GT, - [50050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 1, - aux_sym_compilation_unit_token1, - [50057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_LT_GT, - [50064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4829), 1, - anon_sym_LT_GT, - [50071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 1, - anon_sym_DOT_DOT, - [50078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - aux_sym_iterated_element_association_token2, - [50085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 1, + ACTIONS(3893), 1, aux_sym_package_specification_token2, - [50092] = 2, + [49151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(4512), 1, anon_sym_SEMI, - [50099] = 2, + [49158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - aux_sym_allocator_token1, - [50106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - aux_sym_iterated_element_association_token2, - [50113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, - aux_sym_subprogram_body_token1, - [50120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3418), 1, - anon_sym_SEMI, - [50127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_EQ_GT, - [50134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4845), 1, - aux_sym_case_expression_token1, - [50141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - aux_sym_primary_null_token1, - [50148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4196), 1, - anon_sym_SEMI, - [50155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 1, - anon_sym_SEMI, - [50162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_SEMI, - [50169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 1, - aux_sym_package_specification_token2, - [50176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4855), 1, - anon_sym_SEMI, - [50183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 1, - aux_sym_with_clause_token2, - [50190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4859), 1, - aux_sym_with_clause_token2, - [50197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(445), 1, - aux_sym_allocator_token1, - [50204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4861), 1, - anon_sym_SEMI, - [50211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4863), 1, - aux_sym_compilation_unit_token1, - [50218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - aux_sym_compilation_unit_token1, - [50225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - aux_sym_package_specification_token2, - [50232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_SEMI, - [50239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - aux_sym_package_specification_token2, - [50246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - aux_sym_loop_statement_token1, - [50253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 1, - sym_identifier, - [50260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_SEMI, - [50267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_SEMI, - [50274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_SEMI, - [50281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_SEMI, - [50288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - aux_sym_chunk_specification_token1, - [50295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_SEMI, - [50302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - aux_sym_case_expression_token1, - [50309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, + ACTIONS(4514), 1, aux_sym_package_specification_token3, - [50316] = 2, + [49165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(271), 1, - aux_sym_subprogram_body_token1, - [50323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4891), 1, - aux_sym_package_specification_token2, - [50330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4893), 1, - anon_sym_SEMI, - [50337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3977), 1, - anon_sym_SEMI, - [50344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4895), 1, + ACTIONS(4516), 1, aux_sym_package_specification_token3, - [50351] = 2, + [49172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_EQ_GT, - [50358] = 2, + ACTIONS(4518), 1, + aux_sym_package_specification_token2, + [49179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, - anon_sym_SEMI, - [50365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3975), 1, - anon_sym_SEMI, - [50372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4901), 1, - sym_identifier, - [50379] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4903), 1, - anon_sym_RPAREN, - [50386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4905), 1, - anon_sym_SEMI, - [50393] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4907), 1, - anon_sym_RPAREN, - [50400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4909), 1, - anon_sym_EQ_GT, - [50407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4911), 1, - anon_sym_SEMI, - [50414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4913), 1, - aux_sym_asynchronous_select_token2, - [50421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4915), 1, + ACTIONS(4520), 1, anon_sym_COLON, - [50428] = 2, + [49186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, - anon_sym_SEMI, - [50435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4917), 1, + ACTIONS(3937), 1, anon_sym_RPAREN, - [50442] = 2, + [49193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - [50449] = 2, + [49200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, - aux_sym_record_component_association_list_token1, - [50456] = 2, + ACTIONS(4524), 1, + anon_sym_SEMI, + [49207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, - aux_sym_with_clause_token2, - [50463] = 2, + ACTIONS(4526), 1, + anon_sym_LPAREN, + [49214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - aux_sym_compilation_unit_token1, - [50470] = 2, + ACTIONS(4528), 1, + aux_sym_asynchronous_select_token1, + [49221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - aux_sym_compilation_unit_token1, - [50477] = 2, + ACTIONS(4530), 1, + aux_sym_package_specification_token3, + [49228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, - sym_identifier, - [50484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4929), 1, + ACTIONS(4532), 1, anon_sym_RPAREN, - [50491] = 2, + [49235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4534), 1, + anon_sym_EQ_GT, + [49242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4536), 1, + anon_sym_SEMI, + [49249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym_SEMI, + [49256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, aux_sym_range_attribute_designator_token1, - [50498] = 2, + [49263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - anon_sym_SEMI, - [50505] = 2, + ACTIONS(4542), 1, + anon_sym_RPAREN, + [49270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, + ACTIONS(1781), 1, anon_sym_EQ_GT, - [50512] = 2, + [49277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(4544), 1, anon_sym_SEMI, - [50519] = 2, + [49284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, - anon_sym_SEMI, - [50526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4940), 1, - anon_sym_SEMI, - [50533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4942), 1, - anon_sym_SEMI, - [50540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4944), 1, + ACTIONS(4546), 1, aux_sym_package_specification_token3, - [50547] = 2, + [49291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, - anon_sym_SEMI, - [50554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4948), 1, + ACTIONS(4548), 1, anon_sym_EQ_GT, - [50561] = 2, + [49298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, - anon_sym_SEMI, - [50568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4952), 1, - anon_sym_EQ_GT, - [50575] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 1, - aux_sym_loop_statement_token1, - [50582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4956), 1, - aux_sym_with_clause_token2, - [50589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 1, - aux_sym_package_specification_token3, - [50596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4960), 1, - aux_sym_allocator_token1, - [50603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4962), 1, - anon_sym_SEMI, - [50610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4964), 1, - aux_sym_loop_statement_token1, - [50617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 1, - anon_sym_SEMI, - [50624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - aux_sym_package_specification_token3, - [50631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 1, - aux_sym_asynchronous_select_token1, - [50638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4148), 1, - anon_sym_SEMI, - [50645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - anon_sym_SEMI, - [50652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4974), 1, - anon_sym_SEMI, - [50659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4976), 1, + ACTIONS(4550), 1, sym_identifier, - [50666] = 2, + [49305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_SEMI, - [50673] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4980), 1, - aux_sym_expression_token2, - [50680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, - aux_sym_asynchronous_select_token2, - [50687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4984), 1, - anon_sym_SEMI, - [50694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4986), 1, - aux_sym_package_specification_token2, - [50701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4988), 1, - anon_sym_SEMI, - [50708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4990), 1, + ACTIONS(4552), 1, sym_tick, - [50715] = 2, + [49312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, + ACTIONS(4554), 1, anon_sym_SEMI, - [50722] = 2, + [49319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - aux_sym_compilation_unit_token1, - [50729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_SEMI, - [50736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_SEMI, - [50743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(327), 1, - aux_sym_subprogram_body_token1, - [50750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5000), 1, - aux_sym_with_clause_token2, - [50757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 1, - anon_sym_SEMI, - [50764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5004), 1, - anon_sym_SEMI, - [50771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 1, - anon_sym_EQ_GT, - [50778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5008), 1, - anon_sym_SEMI, - [50785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5010), 1, - aux_sym_iterator_specification_token1, - [50792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5012), 1, - aux_sym_iterator_specification_token1, - [50799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5014), 1, - aux_sym_global_mode_token1, - [50806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(273), 1, - aux_sym_subprogram_body_token1, - [50813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 1, - aux_sym_package_specification_token3, - [50820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5018), 1, - anon_sym_LPAREN, - [50827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_SEMI, - [50834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5022), 1, - aux_sym_asynchronous_select_token1, - [50841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5024), 1, - aux_sym_with_clause_token2, - [50848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4126), 1, - anon_sym_SEMI, - [50855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3936), 1, - anon_sym_SEMI, - [50862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_SEMI, - [50869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3074), 1, + ACTIONS(4016), 1, anon_sym_RPAREN, - [50876] = 2, + [49326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, - anon_sym_SEMI, - [50883] = 2, + ACTIONS(4556), 1, + sym_identifier, + [49333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - aux_sym_compilation_unit_token1, - [50890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5032), 1, - anon_sym_LT_GT, - [50897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5034), 1, + ACTIONS(4558), 1, aux_sym_loop_statement_token1, - [50904] = 2, + [49340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - aux_sym_with_clause_token2, - [50911] = 2, + ACTIONS(4560), 1, + anon_sym_SEMI, + [49347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_EQ_GT, - [50918] = 2, + ACTIONS(4562), 1, + anon_sym_SEMI, + [49354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(4564), 1, + anon_sym_SEMI, + [49361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 1, + anon_sym_SEMI, + [49368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 1, + anon_sym_RPAREN, + [49375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 1, + anon_sym_SEMI, + [49382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + sym_identifier, + [49389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4574), 1, + anon_sym_SEMI, + [49396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4576), 1, + aux_sym_asynchronous_select_token2, + [49403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, anon_sym_COLON, - [50925] = 2, + [49410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 1, + ACTIONS(4580), 1, anon_sym_SEMI, - [50932] = 2, + [49417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, + ACTIONS(4582), 1, + aux_sym_package_specification_token2, + [49424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 1, anon_sym_SEMI, - [50939] = 2, + [49431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - sym_identifier, - [50946] = 2, + ACTIONS(4586), 1, + aux_sym_expression_token2, + [49438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - anon_sym_EQ_GT, - [50953] = 2, + ACTIONS(4588), 1, + aux_sym_package_specification_token3, + [49445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(4590), 1, + aux_sym_attribute_designator_token2, + [49452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, anon_sym_SEMI, - [50960] = 2, + [49459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, + ACTIONS(4594), 1, + aux_sym_package_specification_token3, + [49466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 1, anon_sym_SEMI, - [50967] = 2, + [49473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(3118), 1, + aux_sym_entry_declaration_token1, + [49480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 1, + anon_sym_SEMI, + [49487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 1, + aux_sym_package_specification_token2, + [49494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4602), 1, + anon_sym_SEMI, + [49501] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4604), 1, + aux_sym_asynchronous_select_token1, + [49508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 1, anon_sym_RPAREN, - [50974] = 2, + [49515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, + ACTIONS(4608), 1, anon_sym_SEMI, - [50981] = 2, + [49522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3947), 1, - anon_sym_SEMI, - [50988] = 2, + ACTIONS(4610), 1, + aux_sym_iterator_specification_token1, + [49529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, - aux_sym_package_body_token1, - [50995] = 2, + ACTIONS(4612), 1, + aux_sym_iterator_specification_token1, + [49536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, - anon_sym_SEMI, - [51002] = 2, + ACTIONS(4614), 1, + aux_sym_asynchronous_select_token2, + [49543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, - aux_sym_package_body_token1, - [51009] = 2, + ACTIONS(4616), 1, + aux_sym_package_specification_token2, + [49550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, - aux_sym_record_component_association_list_token1, - [51016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3070), 1, - aux_sym_interface_type_definition_token2, - [51023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5064), 1, - aux_sym_package_body_token1, - [51030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5066), 1, - aux_sym_package_specification_token3, - [51037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5068), 1, - sym_identifier, - [51044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5070), 1, - anon_sym_SEMI, - [51051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 1, - anon_sym_SEMI, - [51058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5072), 1, - anon_sym_SEMI, - [51065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5074), 1, - anon_sym_SEMI, - [51072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5076), 1, - anon_sym_SEMI, - [51079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5078), 1, - aux_sym_compilation_unit_token1, - [51086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3320), 1, - anon_sym_SEMI, - [51093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5080), 1, - anon_sym_RPAREN, - [51100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 1, - aux_sym_package_specification_token3, - [51107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5084), 1, - aux_sym__aspect_mark_token1, - [51114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5086), 1, - aux_sym_package_specification_token3, - [51121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5088), 1, - aux_sym_subprogram_body_token1, - [51128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5090), 1, - anon_sym_SEMI, - [51135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 1, - aux_sym_allocator_token1, - [51142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5092), 1, - aux_sym_allocator_token1, - [51149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5094), 1, - anon_sym_SEMI, - [51156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - aux_sym_compilation_unit_token1, - [51163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5098), 1, - aux_sym_package_specification_token3, - [51170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5100), 1, - anon_sym_SEMI, - [51177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5102), 1, - anon_sym_COLON, - [51184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5104), 1, - sym_identifier, - [51191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5106), 1, - aux_sym_component_list_token1, - [51198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - anon_sym_SEMI, - [51205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5110), 1, - aux_sym_chunk_specification_token1, - [51212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5112), 1, - anon_sym_SEMI, - [51219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5114), 1, - aux_sym_package_specification_token3, - [51226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_DOT_DOT, - [51233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5118), 1, - anon_sym_SEMI, - [51240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5120), 1, - anon_sym_SEMI, - [51247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5122), 1, - aux_sym_package_specification_token3, - [51254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4082), 1, - anon_sym_SEMI, - [51261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_SEMI, - [51268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5126), 1, - anon_sym_RPAREN, - [51275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - anon_sym_SEMI, - [51282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_SEMI, - [51289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, - anon_sym_SEMI, - [51296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_SEMI, - [51303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, - anon_sym_SEMI, - [51310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_SEMI, - [51317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_RPAREN, - [51324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4267), 1, - anon_sym_SEMI, - [51331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5138), 1, - aux_sym_package_specification_token3, - [51338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - anon_sym_SEMI, - [51345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 1, - anon_sym_SEMI, - [51352] = 2, + ACTIONS(4618), 1, + anon_sym_LT_GT, + [49557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4060), 1, anon_sym_SEMI, - [51359] = 2, + [49564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - aux_sym_if_expression_token1, - [51366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(215), 1, - aux_sym_private_type_declaration_token1, - [51373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - anon_sym_SEMI, - [51380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5146), 1, - anon_sym_SEMI, - [51387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5148), 1, - aux_sym_package_specification_token3, - [51394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5150), 1, - anon_sym_SEMI, - [51401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5152), 1, - aux_sym_attribute_designator_token4, - [51408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5154), 1, - aux_sym_record_component_association_list_token1, - [51415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5156), 1, - anon_sym_SEMI, - [51422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5158), 1, + ACTIONS(4620), 1, anon_sym_EQ_GT, - [51429] = 2, + [49571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4622), 1, + anon_sym_SEMI, + [49578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_SEMI, + [49585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4626), 1, + aux_sym_iterated_element_association_token2, + [49592] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 1, + aux_sym_package_specification_token3, + [49599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_RPAREN, + [49606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4630), 1, + anon_sym_SEMI, + [49613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 1, + anon_sym_EQ_GT, + [49620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4634), 1, + aux_sym_package_specification_token3, + [49627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 1, + sym_identifier, + [49634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4638), 1, + anon_sym_SEMI, + [49641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 1, + aux_sym_asynchronous_select_token1, + [49648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 1, + anon_sym_SEMI, + [49655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 1, + anon_sym_SEMI, + [49662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4646), 1, + aux_sym_asynchronous_select_token1, + [49669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 1, + anon_sym_SEMI, + [49676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4650), 1, + anon_sym_SEMI, + [49683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 1, + aux_sym_package_specification_token3, + [49690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4654), 1, + aux_sym_with_clause_token2, + [49697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 1, + aux_sym_if_expression_token1, + [49704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4658), 1, + aux_sym_expression_token2, + [49711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3291), 1, + anon_sym_SEMI, + [49718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4002), 1, + anon_sym_SEMI, + [49725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + aux_sym_package_specification_token3, + [49732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4662), 1, + anon_sym_SEMI, + [49739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4664), 1, + anon_sym_SEMI, + [49746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4666), 1, + aux_sym_package_specification_token3, + [49753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_SEMI, + [49760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3980), 1, + anon_sym_SEMI, + [49767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3964), 1, + anon_sym_SEMI, + [49774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 1, + aux_sym_compilation_unit_token1, + [49781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4670), 1, + aux_sym_package_specification_token3, + [49788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 1, + anon_sym_SEMI, + [49795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + aux_sym_with_clause_token2, + [49802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + aux_sym_package_specification_token3, + [49809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_SEMI, + [49816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4680), 1, + aux_sym_chunk_specification_token1, + [49823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + aux_sym_asynchronous_select_token1, + [49830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4684), 1, + anon_sym_SEMI, + [49837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + anon_sym_SEMI, + [49844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + anon_sym_RBRACK, + [49851] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4688), 1, + aux_sym_iterated_element_association_token2, + [49858] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + anon_sym_SEMI, + [49865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, + anon_sym_SEMI, + [49872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 1, + anon_sym_SEMI, + [49879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + anon_sym_SEMI, + [49886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 1, + aux_sym_iterated_element_association_token2, + [49893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 1, + aux_sym_with_clause_token2, + [49900] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 1, + anon_sym_EQ_GT, + [49907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4704), 1, + sym_identifier, + [49914] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 1, + anon_sym_RPAREN, + [49921] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4708), 1, + aux_sym_package_specification_token2, + [49928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 1, + aux_sym_package_specification_token2, + [49935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 1, + aux_sym_compilation_unit_token1, + [49942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4712), 1, + aux_sym_allocator_token1, + [49949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + anon_sym_RPAREN, + [49956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 1, + anon_sym_SEMI, + [49963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym_package_specification_token3, + [49970] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_RPAREN, + [49977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 1, + anon_sym_SEMI, + [49984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, + anon_sym_RPAREN, + [49991] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 1, + anon_sym_SEMI, + [49998] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3912), 1, + anon_sym_SEMI, + [50005] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4724), 1, + anon_sym_RPAREN, + [50012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + [50019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4728), 1, + aux_sym_package_specification_token3, + [50026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 1, + anon_sym_SEMI, + [50033] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4732), 1, + anon_sym_RPAREN, + [50040] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 1, + aux_sym_expression_token2, + [50047] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3162), 1, + anon_sym_RPAREN, + [50054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4736), 1, + anon_sym_SEMI, + [50061] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4738), 1, + anon_sym_SEMI, + [50068] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4740), 1, + aux_sym_subprogram_body_token1, + [50075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_RPAREN, + [50082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4742), 1, + anon_sym_RBRACK, + [50089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4744), 1, + aux_sym_package_specification_token3, + [50096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4746), 1, + anon_sym_SEMI, + [50103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4748), 1, + anon_sym_SEMI, + [50110] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4750), 1, + anon_sym_SEMI, + [50117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4752), 1, + anon_sym_SEMI, + [50124] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 1, + aux_sym_with_clause_token2, + [50131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_SEMI, + [50138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4234), 1, + anon_sym_SEMI, + [50145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4758), 1, + anon_sym_SEMI, + [50152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4760), 1, + anon_sym_SEMI, + [50159] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 1, + aux_sym_package_specification_token3, + [50166] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 1, + aux_sym_package_specification_token3, + [50173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 1, + anon_sym_SEMI, + [50180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 1, + anon_sym_SEMI, + [50187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 1, + aux_sym_with_clause_token2, + [50194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4772), 1, + anon_sym_SEMI, + [50201] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 1, + aux_sym_compilation_unit_token1, + [50208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4776), 1, + anon_sym_SEMI, + [50215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 1, + anon_sym_SEMI, + [50222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4780), 1, + aux_sym_with_clause_token2, + [50229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(445), 1, + aux_sym_allocator_token1, + [50236] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 1, + anon_sym_SEMI, + [50243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3242), 1, + anon_sym_SEMI, + [50250] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4784), 1, + anon_sym_EQ_GT, + [50257] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4786), 1, + anon_sym_RBRACK, + [50264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 1, + aux_sym_package_specification_token2, + [50271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3815), 1, + anon_sym_SEMI, + [50278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4790), 1, + anon_sym_EQ_GT, + [50285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4792), 1, + aux_sym_loop_statement_token1, + [50292] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 1, + aux_sym_package_specification_token3, + [50299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4786), 1, + anon_sym_RPAREN, + [50306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4796), 1, + anon_sym_SEMI, + [50313] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4798), 1, + anon_sym_SEMI, + [50320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_RPAREN, + [50327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4802), 1, + aux_sym_allocator_token1, + [50334] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 1, + aux_sym_if_expression_token1, + [50341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4806), 1, + anon_sym_SEMI, + [50348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4808), 1, + anon_sym_SEMI, + [50355] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4810), 1, + anon_sym_SEMI, + [50362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4812), 1, + anon_sym_RPAREN, + [50369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4814), 1, + aux_sym_package_specification_token3, + [50376] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4816), 1, + aux_sym_package_specification_token2, + [50383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(325), 1, + aux_sym_subprogram_body_token1, + [50390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_SEMI, + [50397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3804), 1, + anon_sym_SEMI, + [50404] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4818), 1, + anon_sym_SEMI, + [50411] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + aux_sym_package_specification_token3, + [50418] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4822), 1, + anon_sym_SEMI, + [50425] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4824), 1, + anon_sym_SEMI, + [50432] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4826), 1, + aux_sym_at_clause_token1, + [50439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4828), 1, + sym_tick, + [50446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + anon_sym_SEMI, + [50453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym__aspect_mark_token1, + [50460] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + anon_sym_SEMI, + [50467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4834), 1, + anon_sym_SEMI, + [50474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4836), 1, + anon_sym_RBRACK, + [50481] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_EQ_GT, + [50488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4840), 1, + anon_sym_SEMI, + [50495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 1, + anon_sym_SEMI, + [50502] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4844), 1, + anon_sym_DOT_DOT, + [50509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 1, + anon_sym_SEMI, + [50516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4846), 1, + aux_sym_object_renaming_declaration_token1, + [50523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4848), 1, + aux_sym_package_body_token1, + [50530] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4850), 1, + aux_sym_case_expression_token1, + [50537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4852), 1, + aux_sym_object_renaming_declaration_token1, + [50544] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4854), 1, + aux_sym_with_clause_token2, + [50551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4856), 1, + aux_sym_primary_null_token1, + [50558] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4858), 1, + aux_sym_attribute_designator_token4, + [50565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4860), 1, + aux_sym_with_clause_token2, + [50572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 1, + anon_sym_SEMI, + [50579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + anon_sym_SEMI, + [50586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(257), 1, + aux_sym_private_type_declaration_token1, + [50593] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3297), 1, + anon_sym_SEMI, + [50600] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3674), 1, + aux_sym_package_specification_token2, + [50607] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_SEMI, + [50614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_EQ_GT, + [50621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4868), 1, + aux_sym_case_expression_token1, + [50628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 1, + sym_identifier, + [50635] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 1, + sym_identifier, + [50642] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4874), 1, + anon_sym_SEMI, + [50649] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_SEMI, + [50656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + aux_sym_allocator_token1, + [50663] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, + aux_sym_primary_null_token1, + [50670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3618), 1, + aux_sym_compilation_unit_token1, + [50677] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4882), 1, + aux_sym_with_clause_token2, + [50684] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4884), 1, + aux_sym_allocator_token1, + [50691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4886), 1, + anon_sym_SEMI, + [50698] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + aux_sym_compilation_unit_token1, + [50705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 1, + aux_sym_compilation_unit_token1, + [50712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_RPAREN, + [50719] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4894), 1, + anon_sym_SEMI, + [50726] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + aux_sym_record_component_association_list_token1, + [50733] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4898), 1, + aux_sym_package_specification_token2, + [50740] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_SEMI, + [50747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, + sym_identifier, + [50754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + aux_sym_loop_statement_token1, + [50761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + anon_sym_SEMI, + [50768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, + anon_sym_SEMI, + [50775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4906), 1, + aux_sym_chunk_specification_token1, + [50782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 1, + anon_sym_DOT_DOT, + [50789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_SEMI, + [50796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 1, + anon_sym_SEMI, + [50803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(271), 1, + aux_sym_subprogram_body_token1, + [50810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4912), 1, + aux_sym_package_specification_token2, + [50817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_SEMI, + [50824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(209), 1, + aux_sym_private_type_declaration_token1, + [50831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 1, + anon_sym_SEMI, + [50838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4918), 1, + aux_sym_component_list_token1, + [50845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 1, + sym_identifier, + [50852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4123), 1, + aux_sym_package_specification_token3, + [50859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_COLON, + [50866] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + anon_sym_RPAREN, + [50873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4926), 1, + aux_sym_package_specification_token2, + [50880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 1, + aux_sym_loop_statement_token1, + [50887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4930), 1, + aux_sym_package_specification_token3, + [50894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4932), 1, + anon_sym_SEMI, + [50901] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, + anon_sym_SEMI, + [50908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4936), 1, + anon_sym_SEMI, + [50915] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 1, + anon_sym_SEMI, + [50922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4938), 1, + aux_sym_package_specification_token3, + [50929] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + aux_sym_allocator_token1, + [50936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4942), 1, + aux_sym_record_component_association_list_token1, + [50943] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 1, + aux_sym_with_clause_token2, + [50950] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4946), 1, + aux_sym_compilation_unit_token1, + [50957] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + aux_sym_compilation_unit_token1, + [50964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 1, + aux_sym_allocator_token1, + [50971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4950), 1, + anon_sym_SEMI, + [50978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3910), 1, + anon_sym_SEMI, + [50985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4952), 1, + anon_sym_SEMI, + [50992] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_RBRACK, + [50999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_RPAREN, + [51006] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 1, + aux_sym_expression_token2, + [51013] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + aux_sym_package_body_token1, + [51020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4962), 1, + anon_sym_SEMI, + [51027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4964), 1, + anon_sym_SEMI, + [51034] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_SEMI, + [51041] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 1, + anon_sym_GT_GT, + [51048] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4970), 1, + anon_sym_SEMI, + [51055] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4972), 1, + anon_sym_SEMI, + [51062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_SEMI, + [51069] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4976), 1, + aux_sym_expression_token2, + [51076] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + aux_sym_package_body_token1, + [51083] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4980), 1, + anon_sym_SEMI, + [51090] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 1, + anon_sym_COLON, + [51097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, + anon_sym_COLON, + [51104] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4986), 1, + sym_identifier, + [51111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_EQ_GT, + [51118] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 1, + aux_sym_subprogram_body_token1, + [51125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 1, + aux_sym_with_clause_token2, + [51132] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 1, + anon_sym_SEMI, + [51139] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 1, + anon_sym_SEMI, + [51146] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 1, + aux_sym_package_specification_token3, + [51153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_SEMI, + [51160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + sym_identifier, + [51167] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + sym_identifier, + [51174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_SEMI, + [51181] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 1, + anon_sym_SEMI, + [51188] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_SEMI, + [51195] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5010), 1, + anon_sym_SEMI, + [51202] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5012), 1, + anon_sym_SEMI, + [51209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 1, + aux_sym_compilation_unit_token1, + [51216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5016), 1, + aux_sym_package_specification_token2, + [51223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 1, + aux_sym_with_clause_token2, + [51230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5020), 1, + anon_sym_SEMI, + [51237] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + aux_sym_with_clause_token2, + [51244] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(323), 1, + aux_sym_subprogram_body_token1, + [51251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5024), 1, + anon_sym_SEMI, + [51258] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5026), 1, + sym_identifier, + [51265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_SEMI, + [51272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5030), 1, + sym_identifier, + [51279] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5032), 1, + anon_sym_SEMI, + [51286] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5034), 1, + anon_sym_RPAREN, + [51293] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(273), 1, + aux_sym_subprogram_body_token1, + [51300] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + aux_sym_package_specification_token3, + [51307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_SEMI, + [51314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5040), 1, + aux_sym_loop_statement_token1, + [51321] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + aux_sym_package_specification_token3, + [51328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5044), 1, + aux_sym_package_specification_token2, + [51335] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5046), 1, + anon_sym_RPAREN, + [51342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_SEMI, + [51349] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 1, + anon_sym_SEMI, + [51356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 1, + sym_identifier, + [51363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 1, + anon_sym_SEMI, + [51370] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5056), 1, + aux_sym_compilation_unit_token1, + [51377] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 1, + anon_sym_SEMI, + [51384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + anon_sym_RPAREN, + [51391] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + aux_sym_with_clause_token2, + [51398] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 1, + aux_sym_package_specification_token3, + [51405] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5066), 1, + anon_sym_RPAREN, + [51412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 1, + anon_sym_SEMI, + [51419] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5068), 1, + anon_sym_SEMI, + [51426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5070), 1, + anon_sym_SEMI, + [51433] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + anon_sym_SEMI, + [51440] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + anon_sym_SEMI, + [51447] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5076), 1, + aux_sym_with_clause_token2, + [51454] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4338), 1, + anon_sym_SEMI, + [51461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5078), 1, + anon_sym_SEMI, + [51468] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_SEMI, + [51475] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 1, + anon_sym_SEMI, + [51482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5084), 1, + anon_sym_SEMI, + [51489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5086), 1, + aux_sym_use_clause_token2, + [51496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_SEMI, + [51503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5090), 1, + aux_sym_package_specification_token3, + [51510] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5092), 1, + aux_sym_loop_statement_token1, + [51517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5094), 1, + anon_sym_EQ_GT, + [51524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5096), 1, + aux_sym_asynchronous_select_token1, + [51531] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5098), 1, + aux_sym_package_specification_token3, + [51538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5100), 1, + anon_sym_RBRACK, + [51545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5102), 1, + anon_sym_SEMI, + [51552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5104), 1, + anon_sym_SEMI, + [51559] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5106), 1, + anon_sym_SEMI, + [51566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5108), 1, + aux_sym_compilation_unit_token1, + [51573] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5110), 1, + aux_sym_package_specification_token3, + [51580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_RPAREN, + [51587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5114), 1, + aux_sym_package_specification_token3, + [51594] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5116), 1, + aux_sym_asynchronous_select_token1, + [51601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 1, + aux_sym_asynchronous_select_token1, + [51608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + aux_sym_subprogram_body_token1, + [51615] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 1, + aux_sym_result_profile_token1, + [51622] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5124), 1, + sym_identifier, + [51629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5126), 1, - anon_sym_RBRACK, - [51436] = 2, + anon_sym_RPAREN, + [51636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, + ACTIONS(5128), 1, + anon_sym_EQ_GT, + [51643] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5131), 1, + aux_sym_compilation_unit_token1, + [51650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 1, + aux_sym_loop_statement_token1, + [51657] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5133), 1, + aux_sym_if_expression_token1, + [51664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_SEMI, + [51671] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5137), 1, + anon_sym_RPAREN, + [51678] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3210), 1, + anon_sym_SEMI, + [51685] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5139), 1, + anon_sym_SEMI, + [51692] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_SEMI, + [51699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5141), 1, + anon_sym_SEMI, + [51706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5143), 1, + anon_sym_SEMI, + [51713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5145), 1, + sym_tick, + [51720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5147), 1, + aux_sym_iterated_element_association_token2, + [51727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_LT_GT, + [51734] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + aux_sym_package_specification_token3, + [51741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_SEMI, + [51748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 1, + anon_sym_COLON, + [51755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5155), 1, + anon_sym_LT_GT, + [51762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5157), 1, + anon_sym_LT_GT, + [51769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5159), 1, + ts_builtin_sym_end, + [51776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5161), 1, + sym_identifier, + [51783] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5163), 1, + sym_identifier, + [51790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_SEMI, + [51797] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_SEMI, + [51804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5167), 1, + sym_identifier, + [51811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5169), 1, + anon_sym_LT_GT, + [51818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5171), 1, + aux_sym_package_specification_token3, + [51825] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5173), 1, + sym_identifier, + [51832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5175), 1, + anon_sym_LT_GT, + [51839] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 1, + anon_sym_SEMI, + [51846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5177), 1, + anon_sym_EQ_GT, + [51853] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5179), 1, + sym_identifier, + [51860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5181), 1, + anon_sym_SEMI, + [51867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5183), 1, + aux_sym_allocator_token1, + [51874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + aux_sym_subprogram_body_token1, + [51881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_SEMI, + [51888] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5187), 1, + anon_sym_EQ_GT, + [51895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5189), 1, + aux_sym_global_mode_token1, + [51902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_LPAREN, + [51909] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5193), 1, + sym_identifier, + [51916] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_SEMI, + [51923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5195), 1, anon_sym_SEMI, }; @@ -56662,1875 +57099,1891 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(75)] = 0, [SMALL_STATE(76)] = 124, [SMALL_STATE(77)] = 244, - [SMALL_STATE(78)] = 383, - [SMALL_STATE(79)] = 500, - [SMALL_STATE(80)] = 631, - [SMALL_STATE(81)] = 746, - [SMALL_STATE(82)] = 863, - [SMALL_STATE(83)] = 980, - [SMALL_STATE(84)] = 1097, - [SMALL_STATE(85)] = 1211, - [SMALL_STATE(86)] = 1325, - [SMALL_STATE(87)] = 1439, - [SMALL_STATE(88)] = 1553, - [SMALL_STATE(89)] = 1667, - [SMALL_STATE(90)] = 1781, - [SMALL_STATE(91)] = 1919, - [SMALL_STATE(92)] = 2050, - [SMALL_STATE(93)] = 2178, - [SMALL_STATE(94)] = 2306, - [SMALL_STATE(95)] = 2429, - [SMALL_STATE(96)] = 2554, - [SMALL_STATE(97)] = 2674, - [SMALL_STATE(98)] = 2788, - [SMALL_STATE(99)] = 2898, - [SMALL_STATE(100)] = 3011, - [SMALL_STATE(101)] = 3122, - [SMALL_STATE(102)] = 3233, - [SMALL_STATE(103)] = 3344, - [SMALL_STATE(104)] = 3452, - [SMALL_STATE(105)] = 3561, - [SMALL_STATE(106)] = 3667, - [SMALL_STATE(107)] = 3771, - [SMALL_STATE(108)] = 3873, - [SMALL_STATE(109)] = 3977, - [SMALL_STATE(110)] = 4083, - [SMALL_STATE(111)] = 4186, - [SMALL_STATE(112)] = 4285, - [SMALL_STATE(113)] = 4388, - [SMALL_STATE(114)] = 4491, - [SMALL_STATE(115)] = 4590, - [SMALL_STATE(116)] = 4646, - [SMALL_STATE(117)] = 4702, - [SMALL_STATE(118)] = 4798, - [SMALL_STATE(119)] = 4894, - [SMALL_STATE(120)] = 4950, - [SMALL_STATE(121)] = 5006, - [SMALL_STATE(122)] = 5062, - [SMALL_STATE(123)] = 5118, - [SMALL_STATE(124)] = 5174, - [SMALL_STATE(125)] = 5270, - [SMALL_STATE(126)] = 5326, - [SMALL_STATE(127)] = 5382, - [SMALL_STATE(128)] = 5438, - [SMALL_STATE(129)] = 5494, - [SMALL_STATE(130)] = 5550, - [SMALL_STATE(131)] = 5606, - [SMALL_STATE(132)] = 5662, - [SMALL_STATE(133)] = 5718, - [SMALL_STATE(134)] = 5774, - [SMALL_STATE(135)] = 5830, - [SMALL_STATE(136)] = 5886, - [SMALL_STATE(137)] = 5942, - [SMALL_STATE(138)] = 5998, - [SMALL_STATE(139)] = 6054, - [SMALL_STATE(140)] = 6110, - [SMALL_STATE(141)] = 6166, - [SMALL_STATE(142)] = 6222, - [SMALL_STATE(143)] = 6318, - [SMALL_STATE(144)] = 6414, - [SMALL_STATE(145)] = 6510, - [SMALL_STATE(146)] = 6566, - [SMALL_STATE(147)] = 6622, - [SMALL_STATE(148)] = 6678, - [SMALL_STATE(149)] = 6734, - [SMALL_STATE(150)] = 6830, - [SMALL_STATE(151)] = 6886, - [SMALL_STATE(152)] = 6982, - [SMALL_STATE(153)] = 7038, - [SMALL_STATE(154)] = 7094, - [SMALL_STATE(155)] = 7150, - [SMALL_STATE(156)] = 7206, - [SMALL_STATE(157)] = 7262, - [SMALL_STATE(158)] = 7318, - [SMALL_STATE(159)] = 7374, - [SMALL_STATE(160)] = 7430, - [SMALL_STATE(161)] = 7486, - [SMALL_STATE(162)] = 7542, - [SMALL_STATE(163)] = 7638, - [SMALL_STATE(164)] = 7694, - [SMALL_STATE(165)] = 7750, - [SMALL_STATE(166)] = 7806, - [SMALL_STATE(167)] = 7902, - [SMALL_STATE(168)] = 7958, - [SMALL_STATE(169)] = 8014, - [SMALL_STATE(170)] = 8070, - [SMALL_STATE(171)] = 8126, - [SMALL_STATE(172)] = 8182, - [SMALL_STATE(173)] = 8278, - [SMALL_STATE(174)] = 8334, - [SMALL_STATE(175)] = 8390, - [SMALL_STATE(176)] = 8446, - [SMALL_STATE(177)] = 8502, - [SMALL_STATE(178)] = 8558, - [SMALL_STATE(179)] = 8614, - [SMALL_STATE(180)] = 8670, - [SMALL_STATE(181)] = 8726, - [SMALL_STATE(182)] = 8782, - [SMALL_STATE(183)] = 8838, - [SMALL_STATE(184)] = 8894, - [SMALL_STATE(185)] = 8950, - [SMALL_STATE(186)] = 9006, - [SMALL_STATE(187)] = 9062, - [SMALL_STATE(188)] = 9158, - [SMALL_STATE(189)] = 9214, - [SMALL_STATE(190)] = 9307, - [SMALL_STATE(191)] = 9400, - [SMALL_STATE(192)] = 9493, - [SMALL_STATE(193)] = 9586, - [SMALL_STATE(194)] = 9679, - [SMALL_STATE(195)] = 9772, - [SMALL_STATE(196)] = 9865, - [SMALL_STATE(197)] = 9958, - [SMALL_STATE(198)] = 10051, - [SMALL_STATE(199)] = 10144, - [SMALL_STATE(200)] = 10237, - [SMALL_STATE(201)] = 10330, - [SMALL_STATE(202)] = 10423, - [SMALL_STATE(203)] = 10516, - [SMALL_STATE(204)] = 10609, - [SMALL_STATE(205)] = 10702, - [SMALL_STATE(206)] = 10795, - [SMALL_STATE(207)] = 10888, - [SMALL_STATE(208)] = 10981, - [SMALL_STATE(209)] = 11078, - [SMALL_STATE(210)] = 11171, - [SMALL_STATE(211)] = 11264, - [SMALL_STATE(212)] = 11357, - [SMALL_STATE(213)] = 11450, - [SMALL_STATE(214)] = 11543, - [SMALL_STATE(215)] = 11636, - [SMALL_STATE(216)] = 11729, - [SMALL_STATE(217)] = 11822, - [SMALL_STATE(218)] = 11915, - [SMALL_STATE(219)] = 12008, - [SMALL_STATE(220)] = 12101, - [SMALL_STATE(221)] = 12194, - [SMALL_STATE(222)] = 12287, - [SMALL_STATE(223)] = 12380, - [SMALL_STATE(224)] = 12473, - [SMALL_STATE(225)] = 12566, - [SMALL_STATE(226)] = 12659, - [SMALL_STATE(227)] = 12752, - [SMALL_STATE(228)] = 12845, - [SMALL_STATE(229)] = 12938, - [SMALL_STATE(230)] = 13031, - [SMALL_STATE(231)] = 13085, - [SMALL_STATE(232)] = 13139, - [SMALL_STATE(233)] = 13193, - [SMALL_STATE(234)] = 13287, - [SMALL_STATE(235)] = 13381, - [SMALL_STATE(236)] = 13475, - [SMALL_STATE(237)] = 13529, - [SMALL_STATE(238)] = 13583, - [SMALL_STATE(239)] = 13637, - [SMALL_STATE(240)] = 13691, - [SMALL_STATE(241)] = 13745, - [SMALL_STATE(242)] = 13839, - [SMALL_STATE(243)] = 13933, - [SMALL_STATE(244)] = 14023, - [SMALL_STATE(245)] = 14077, - [SMALL_STATE(246)] = 14131, - [SMALL_STATE(247)] = 14185, - [SMALL_STATE(248)] = 14239, - [SMALL_STATE(249)] = 14293, - [SMALL_STATE(250)] = 14383, - [SMALL_STATE(251)] = 14437, - [SMALL_STATE(252)] = 14527, - [SMALL_STATE(253)] = 14621, - [SMALL_STATE(254)] = 14675, - [SMALL_STATE(255)] = 14729, - [SMALL_STATE(256)] = 14783, - [SMALL_STATE(257)] = 14837, - [SMALL_STATE(258)] = 14891, - [SMALL_STATE(259)] = 14945, - [SMALL_STATE(260)] = 14998, - [SMALL_STATE(261)] = 15087, - [SMALL_STATE(262)] = 15140, - [SMALL_STATE(263)] = 15229, - [SMALL_STATE(264)] = 15282, - [SMALL_STATE(265)] = 15348, - [SMALL_STATE(266)] = 15434, - [SMALL_STATE(267)] = 15496, - [SMALL_STATE(268)] = 15558, - [SMALL_STATE(269)] = 15609, - [SMALL_STATE(270)] = 15660, - [SMALL_STATE(271)] = 15711, - [SMALL_STATE(272)] = 15762, - [SMALL_STATE(273)] = 15813, - [SMALL_STATE(274)] = 15898, - [SMALL_STATE(275)] = 15949, - [SMALL_STATE(276)] = 16000, - [SMALL_STATE(277)] = 16085, - [SMALL_STATE(278)] = 16144, - [SMALL_STATE(279)] = 16195, - [SMALL_STATE(280)] = 16246, - [SMALL_STATE(281)] = 16296, - [SMALL_STATE(282)] = 16346, - [SMALL_STATE(283)] = 16396, - [SMALL_STATE(284)] = 16446, - [SMALL_STATE(285)] = 16496, - [SMALL_STATE(286)] = 16546, - [SMALL_STATE(287)] = 16596, - [SMALL_STATE(288)] = 16646, - [SMALL_STATE(289)] = 16696, - [SMALL_STATE(290)] = 16746, - [SMALL_STATE(291)] = 16796, - [SMALL_STATE(292)] = 16846, - [SMALL_STATE(293)] = 16896, - [SMALL_STATE(294)] = 16946, - [SMALL_STATE(295)] = 16996, - [SMALL_STATE(296)] = 17046, - [SMALL_STATE(297)] = 17096, - [SMALL_STATE(298)] = 17146, - [SMALL_STATE(299)] = 17196, - [SMALL_STATE(300)] = 17246, - [SMALL_STATE(301)] = 17296, - [SMALL_STATE(302)] = 17346, - [SMALL_STATE(303)] = 17396, - [SMALL_STATE(304)] = 17446, - [SMALL_STATE(305)] = 17528, - [SMALL_STATE(306)] = 17578, - [SMALL_STATE(307)] = 17628, - [SMALL_STATE(308)] = 17678, - [SMALL_STATE(309)] = 17728, - [SMALL_STATE(310)] = 17778, - [SMALL_STATE(311)] = 17828, - [SMALL_STATE(312)] = 17878, - [SMALL_STATE(313)] = 17928, - [SMALL_STATE(314)] = 17978, - [SMALL_STATE(315)] = 18028, - [SMALL_STATE(316)] = 18078, - [SMALL_STATE(317)] = 18128, - [SMALL_STATE(318)] = 18178, - [SMALL_STATE(319)] = 18228, - [SMALL_STATE(320)] = 18278, - [SMALL_STATE(321)] = 18328, - [SMALL_STATE(322)] = 18378, - [SMALL_STATE(323)] = 18428, - [SMALL_STATE(324)] = 18478, - [SMALL_STATE(325)] = 18528, - [SMALL_STATE(326)] = 18578, - [SMALL_STATE(327)] = 18628, - [SMALL_STATE(328)] = 18678, - [SMALL_STATE(329)] = 18728, - [SMALL_STATE(330)] = 18778, - [SMALL_STATE(331)] = 18828, - [SMALL_STATE(332)] = 18878, - [SMALL_STATE(333)] = 18928, - [SMALL_STATE(334)] = 18978, - [SMALL_STATE(335)] = 19028, - [SMALL_STATE(336)] = 19078, - [SMALL_STATE(337)] = 19128, - [SMALL_STATE(338)] = 19178, - [SMALL_STATE(339)] = 19228, - [SMALL_STATE(340)] = 19278, - [SMALL_STATE(341)] = 19328, - [SMALL_STATE(342)] = 19378, - [SMALL_STATE(343)] = 19428, - [SMALL_STATE(344)] = 19478, - [SMALL_STATE(345)] = 19528, - [SMALL_STATE(346)] = 19578, - [SMALL_STATE(347)] = 19628, - [SMALL_STATE(348)] = 19710, - [SMALL_STATE(349)] = 19760, - [SMALL_STATE(350)] = 19810, - [SMALL_STATE(351)] = 19860, - [SMALL_STATE(352)] = 19910, - [SMALL_STATE(353)] = 19960, - [SMALL_STATE(354)] = 20010, - [SMALL_STATE(355)] = 20060, - [SMALL_STATE(356)] = 20110, - [SMALL_STATE(357)] = 20160, - [SMALL_STATE(358)] = 20210, - [SMALL_STATE(359)] = 20260, - [SMALL_STATE(360)] = 20310, - [SMALL_STATE(361)] = 20360, - [SMALL_STATE(362)] = 20410, - [SMALL_STATE(363)] = 20460, - [SMALL_STATE(364)] = 20510, - [SMALL_STATE(365)] = 20560, - [SMALL_STATE(366)] = 20610, - [SMALL_STATE(367)] = 20660, - [SMALL_STATE(368)] = 20710, - [SMALL_STATE(369)] = 20760, - [SMALL_STATE(370)] = 20810, - [SMALL_STATE(371)] = 20860, - [SMALL_STATE(372)] = 20910, - [SMALL_STATE(373)] = 20960, - [SMALL_STATE(374)] = 21010, - [SMALL_STATE(375)] = 21060, - [SMALL_STATE(376)] = 21110, - [SMALL_STATE(377)] = 21160, - [SMALL_STATE(378)] = 21210, - [SMALL_STATE(379)] = 21260, - [SMALL_STATE(380)] = 21310, - [SMALL_STATE(381)] = 21360, - [SMALL_STATE(382)] = 21410, - [SMALL_STATE(383)] = 21460, - [SMALL_STATE(384)] = 21510, - [SMALL_STATE(385)] = 21560, - [SMALL_STATE(386)] = 21610, - [SMALL_STATE(387)] = 21660, - [SMALL_STATE(388)] = 21710, - [SMALL_STATE(389)] = 21760, - [SMALL_STATE(390)] = 21842, - [SMALL_STATE(391)] = 21892, - [SMALL_STATE(392)] = 21942, - [SMALL_STATE(393)] = 21992, - [SMALL_STATE(394)] = 22042, - [SMALL_STATE(395)] = 22092, - [SMALL_STATE(396)] = 22142, - [SMALL_STATE(397)] = 22192, - [SMALL_STATE(398)] = 22242, - [SMALL_STATE(399)] = 22292, - [SMALL_STATE(400)] = 22342, - [SMALL_STATE(401)] = 22392, - [SMALL_STATE(402)] = 22442, - [SMALL_STATE(403)] = 22492, - [SMALL_STATE(404)] = 22542, - [SMALL_STATE(405)] = 22592, - [SMALL_STATE(406)] = 22642, - [SMALL_STATE(407)] = 22692, - [SMALL_STATE(408)] = 22742, - [SMALL_STATE(409)] = 22792, - [SMALL_STATE(410)] = 22842, - [SMALL_STATE(411)] = 22892, - [SMALL_STATE(412)] = 22974, - [SMALL_STATE(413)] = 23024, - [SMALL_STATE(414)] = 23074, - [SMALL_STATE(415)] = 23124, - [SMALL_STATE(416)] = 23174, - [SMALL_STATE(417)] = 23256, - [SMALL_STATE(418)] = 23306, - [SMALL_STATE(419)] = 23388, - [SMALL_STATE(420)] = 23438, - [SMALL_STATE(421)] = 23488, - [SMALL_STATE(422)] = 23538, - [SMALL_STATE(423)] = 23588, - [SMALL_STATE(424)] = 23638, - [SMALL_STATE(425)] = 23688, - [SMALL_STATE(426)] = 23738, - [SMALL_STATE(427)] = 23788, - [SMALL_STATE(428)] = 23838, - [SMALL_STATE(429)] = 23888, - [SMALL_STATE(430)] = 23938, - [SMALL_STATE(431)] = 23988, - [SMALL_STATE(432)] = 24038, - [SMALL_STATE(433)] = 24120, - [SMALL_STATE(434)] = 24170, - [SMALL_STATE(435)] = 24220, - [SMALL_STATE(436)] = 24270, - [SMALL_STATE(437)] = 24320, - [SMALL_STATE(438)] = 24370, - [SMALL_STATE(439)] = 24420, - [SMALL_STATE(440)] = 24470, - [SMALL_STATE(441)] = 24520, - [SMALL_STATE(442)] = 24570, - [SMALL_STATE(443)] = 24620, - [SMALL_STATE(444)] = 24670, - [SMALL_STATE(445)] = 24720, - [SMALL_STATE(446)] = 24770, - [SMALL_STATE(447)] = 24820, - [SMALL_STATE(448)] = 24870, - [SMALL_STATE(449)] = 24920, - [SMALL_STATE(450)] = 25002, - [SMALL_STATE(451)] = 25052, - [SMALL_STATE(452)] = 25102, - [SMALL_STATE(453)] = 25152, - [SMALL_STATE(454)] = 25202, - [SMALL_STATE(455)] = 25252, - [SMALL_STATE(456)] = 25302, - [SMALL_STATE(457)] = 25352, - [SMALL_STATE(458)] = 25402, - [SMALL_STATE(459)] = 25452, - [SMALL_STATE(460)] = 25502, - [SMALL_STATE(461)] = 25552, - [SMALL_STATE(462)] = 25634, - [SMALL_STATE(463)] = 25684, - [SMALL_STATE(464)] = 25734, - [SMALL_STATE(465)] = 25784, - [SMALL_STATE(466)] = 25834, - [SMALL_STATE(467)] = 25884, - [SMALL_STATE(468)] = 25934, - [SMALL_STATE(469)] = 25984, - [SMALL_STATE(470)] = 26066, - [SMALL_STATE(471)] = 26116, - [SMALL_STATE(472)] = 26166, - [SMALL_STATE(473)] = 26216, - [SMALL_STATE(474)] = 26298, - [SMALL_STATE(475)] = 26348, - [SMALL_STATE(476)] = 26398, - [SMALL_STATE(477)] = 26448, - [SMALL_STATE(478)] = 26497, - [SMALL_STATE(479)] = 26546, - [SMALL_STATE(480)] = 26595, - [SMALL_STATE(481)] = 26652, - [SMALL_STATE(482)] = 26701, - [SMALL_STATE(483)] = 26750, - [SMALL_STATE(484)] = 26799, - [SMALL_STATE(485)] = 26848, - [SMALL_STATE(486)] = 26904, - [SMALL_STATE(487)] = 26960, - [SMALL_STATE(488)] = 27016, - [SMALL_STATE(489)] = 27063, - [SMALL_STATE(490)] = 27110, - [SMALL_STATE(491)] = 27159, - [SMALL_STATE(492)] = 27206, - [SMALL_STATE(493)] = 27253, - [SMALL_STATE(494)] = 27300, - [SMALL_STATE(495)] = 27347, - [SMALL_STATE(496)] = 27394, - [SMALL_STATE(497)] = 27441, - [SMALL_STATE(498)] = 27487, - [SMALL_STATE(499)] = 27533, - [SMALL_STATE(500)] = 27603, - [SMALL_STATE(501)] = 27649, - [SMALL_STATE(502)] = 27733, - [SMALL_STATE(503)] = 27795, - [SMALL_STATE(504)] = 27841, - [SMALL_STATE(505)] = 27911, - [SMALL_STATE(506)] = 27978, - [SMALL_STATE(507)] = 28057, - [SMALL_STATE(508)] = 28120, - [SMALL_STATE(509)] = 28172, - [SMALL_STATE(510)] = 28224, - [SMALL_STATE(511)] = 28276, - [SMALL_STATE(512)] = 28328, - [SMALL_STATE(513)] = 28380, - [SMALL_STATE(514)] = 28461, - [SMALL_STATE(515)] = 28542, - [SMALL_STATE(516)] = 28584, - [SMALL_STATE(517)] = 28638, - [SMALL_STATE(518)] = 28683, - [SMALL_STATE(519)] = 28738, - [SMALL_STATE(520)] = 28777, - [SMALL_STATE(521)] = 28832, - [SMALL_STATE(522)] = 28887, - [SMALL_STATE(523)] = 28942, - [SMALL_STATE(524)] = 28992, - [SMALL_STATE(525)] = 29034, - [SMALL_STATE(526)] = 29084, - [SMALL_STATE(527)] = 29153, - [SMALL_STATE(528)] = 29198, - [SMALL_STATE(529)] = 29240, - [SMALL_STATE(530)] = 29285, - [SMALL_STATE(531)] = 29341, - [SMALL_STATE(532)] = 29397, - [SMALL_STATE(533)] = 29433, - [SMALL_STATE(534)] = 29489, - [SMALL_STATE(535)] = 29545, - [SMALL_STATE(536)] = 29601, - [SMALL_STATE(537)] = 29641, - [SMALL_STATE(538)] = 29698, - [SMALL_STATE(539)] = 29735, - [SMALL_STATE(540)] = 29792, - [SMALL_STATE(541)] = 29843, - [SMALL_STATE(542)] = 29900, - [SMALL_STATE(543)] = 29957, - [SMALL_STATE(544)] = 30014, - [SMALL_STATE(545)] = 30054, - [SMALL_STATE(546)] = 30088, - [SMALL_STATE(547)] = 30142, - [SMALL_STATE(548)] = 30196, - [SMALL_STATE(549)] = 30250, - [SMALL_STATE(550)] = 30304, - [SMALL_STATE(551)] = 30336, - [SMALL_STATE(552)] = 30390, - [SMALL_STATE(553)] = 30444, - [SMALL_STATE(554)] = 30495, - [SMALL_STATE(555)] = 30546, - [SMALL_STATE(556)] = 30575, - [SMALL_STATE(557)] = 30618, - [SMALL_STATE(558)] = 30669, - [SMALL_STATE(559)] = 30698, - [SMALL_STATE(560)] = 30727, - [SMALL_STATE(561)] = 30776, - [SMALL_STATE(562)] = 30827, - [SMALL_STATE(563)] = 30876, - [SMALL_STATE(564)] = 30933, - [SMALL_STATE(565)] = 30984, - [SMALL_STATE(566)] = 31035, - [SMALL_STATE(567)] = 31076, - [SMALL_STATE(568)] = 31130, - [SMALL_STATE(569)] = 31184, - [SMALL_STATE(570)] = 31238, - [SMALL_STATE(571)] = 31269, - [SMALL_STATE(572)] = 31320, - [SMALL_STATE(573)] = 31349, - [SMALL_STATE(574)] = 31400, - [SMALL_STATE(575)] = 31443, - [SMALL_STATE(576)] = 31494, - [SMALL_STATE(577)] = 31537, - [SMALL_STATE(578)] = 31584, - [SMALL_STATE(579)] = 31615, - [SMALL_STATE(580)] = 31646, - [SMALL_STATE(581)] = 31694, - [SMALL_STATE(582)] = 31742, - [SMALL_STATE(583)] = 31792, - [SMALL_STATE(584)] = 31842, - [SMALL_STATE(585)] = 31892, - [SMALL_STATE(586)] = 31918, - [SMALL_STATE(587)] = 31966, - [SMALL_STATE(588)] = 32014, - [SMALL_STATE(589)] = 32040, - [SMALL_STATE(590)] = 32066, - [SMALL_STATE(591)] = 32092, - [SMALL_STATE(592)] = 32132, - [SMALL_STATE(593)] = 32158, - [SMALL_STATE(594)] = 32187, - [SMALL_STATE(595)] = 32230, - [SMALL_STATE(596)] = 32259, - [SMALL_STATE(597)] = 32288, - [SMALL_STATE(598)] = 32317, - [SMALL_STATE(599)] = 32346, - [SMALL_STATE(600)] = 32391, - [SMALL_STATE(601)] = 32436, - [SMALL_STATE(602)] = 32465, - [SMALL_STATE(603)] = 32502, - [SMALL_STATE(604)] = 32547, - [SMALL_STATE(605)] = 32571, - [SMALL_STATE(606)] = 32605, - [SMALL_STATE(607)] = 32645, - [SMALL_STATE(608)] = 32669, - [SMALL_STATE(609)] = 32709, - [SMALL_STATE(610)] = 32743, - [SMALL_STATE(611)] = 32767, - [SMALL_STATE(612)] = 32791, - [SMALL_STATE(613)] = 32833, - [SMALL_STATE(614)] = 32875, - [SMALL_STATE(615)] = 32917, - [SMALL_STATE(616)] = 32957, - [SMALL_STATE(617)] = 33001, - [SMALL_STATE(618)] = 33025, - [SMALL_STATE(619)] = 33064, - [SMALL_STATE(620)] = 33103, - [SMALL_STATE(621)] = 33142, - [SMALL_STATE(622)] = 33169, - [SMALL_STATE(623)] = 33196, - [SMALL_STATE(624)] = 33233, - [SMALL_STATE(625)] = 33272, - [SMALL_STATE(626)] = 33311, - [SMALL_STATE(627)] = 33350, - [SMALL_STATE(628)] = 33389, - [SMALL_STATE(629)] = 33423, - [SMALL_STATE(630)] = 33461, - [SMALL_STATE(631)] = 33499, - [SMALL_STATE(632)] = 33537, - [SMALL_STATE(633)] = 33571, - [SMALL_STATE(634)] = 33607, - [SMALL_STATE(635)] = 33645, - [SMALL_STATE(636)] = 33683, - [SMALL_STATE(637)] = 33721, - [SMALL_STATE(638)] = 33759, - [SMALL_STATE(639)] = 33799, - [SMALL_STATE(640)] = 33839, - [SMALL_STATE(641)] = 33877, - [SMALL_STATE(642)] = 33913, - [SMALL_STATE(643)] = 33949, - [SMALL_STATE(644)] = 33987, - [SMALL_STATE(645)] = 34025, - [SMALL_STATE(646)] = 34059, - [SMALL_STATE(647)] = 34093, - [SMALL_STATE(648)] = 34131, - [SMALL_STATE(649)] = 34152, - [SMALL_STATE(650)] = 34173, - [SMALL_STATE(651)] = 34206, - [SMALL_STATE(652)] = 34237, - [SMALL_STATE(653)] = 34272, - [SMALL_STATE(654)] = 34307, - [SMALL_STATE(655)] = 34328, - [SMALL_STATE(656)] = 34361, - [SMALL_STATE(657)] = 34396, - [SMALL_STATE(658)] = 34431, - [SMALL_STATE(659)] = 34466, - [SMALL_STATE(660)] = 34499, - [SMALL_STATE(661)] = 34532, - [SMALL_STATE(662)] = 34553, - [SMALL_STATE(663)] = 34588, - [SMALL_STATE(664)] = 34623, - [SMALL_STATE(665)] = 34656, - [SMALL_STATE(666)] = 34677, - [SMALL_STATE(667)] = 34712, - [SMALL_STATE(668)] = 34745, - [SMALL_STATE(669)] = 34773, - [SMALL_STATE(670)] = 34801, - [SMALL_STATE(671)] = 34829, - [SMALL_STATE(672)] = 34857, - [SMALL_STATE(673)] = 34885, - [SMALL_STATE(674)] = 34913, - [SMALL_STATE(675)] = 34945, - [SMALL_STATE(676)] = 34973, - [SMALL_STATE(677)] = 35001, - [SMALL_STATE(678)] = 35033, - [SMALL_STATE(679)] = 35065, - [SMALL_STATE(680)] = 35097, - [SMALL_STATE(681)] = 35125, - [SMALL_STATE(682)] = 35153, - [SMALL_STATE(683)] = 35181, - [SMALL_STATE(684)] = 35209, - [SMALL_STATE(685)] = 35237, - [SMALL_STATE(686)] = 35265, - [SMALL_STATE(687)] = 35295, - [SMALL_STATE(688)] = 35323, - [SMALL_STATE(689)] = 35351, - [SMALL_STATE(690)] = 35381, - [SMALL_STATE(691)] = 35409, - [SMALL_STATE(692)] = 35437, - [SMALL_STATE(693)] = 35465, - [SMALL_STATE(694)] = 35493, - [SMALL_STATE(695)] = 35521, - [SMALL_STATE(696)] = 35549, - [SMALL_STATE(697)] = 35579, - [SMALL_STATE(698)] = 35607, - [SMALL_STATE(699)] = 35635, - [SMALL_STATE(700)] = 35663, - [SMALL_STATE(701)] = 35691, - [SMALL_STATE(702)] = 35719, - [SMALL_STATE(703)] = 35747, - [SMALL_STATE(704)] = 35775, - [SMALL_STATE(705)] = 35803, - [SMALL_STATE(706)] = 35831, - [SMALL_STATE(707)] = 35859, - [SMALL_STATE(708)] = 35887, - [SMALL_STATE(709)] = 35915, - [SMALL_STATE(710)] = 35943, - [SMALL_STATE(711)] = 35975, - [SMALL_STATE(712)] = 36007, - [SMALL_STATE(713)] = 36035, - [SMALL_STATE(714)] = 36063, - [SMALL_STATE(715)] = 36093, - [SMALL_STATE(716)] = 36123, - [SMALL_STATE(717)] = 36151, - [SMALL_STATE(718)] = 36179, - [SMALL_STATE(719)] = 36207, - [SMALL_STATE(720)] = 36235, - [SMALL_STATE(721)] = 36263, - [SMALL_STATE(722)] = 36291, - [SMALL_STATE(723)] = 36321, - [SMALL_STATE(724)] = 36351, - [SMALL_STATE(725)] = 36379, - [SMALL_STATE(726)] = 36407, - [SMALL_STATE(727)] = 36435, - [SMALL_STATE(728)] = 36463, - [SMALL_STATE(729)] = 36491, - [SMALL_STATE(730)] = 36523, - [SMALL_STATE(731)] = 36555, - [SMALL_STATE(732)] = 36583, - [SMALL_STATE(733)] = 36613, - [SMALL_STATE(734)] = 36643, - [SMALL_STATE(735)] = 36673, - [SMALL_STATE(736)] = 36701, - [SMALL_STATE(737)] = 36729, - [SMALL_STATE(738)] = 36757, - [SMALL_STATE(739)] = 36785, - [SMALL_STATE(740)] = 36813, - [SMALL_STATE(741)] = 36841, - [SMALL_STATE(742)] = 36869, - [SMALL_STATE(743)] = 36897, - [SMALL_STATE(744)] = 36922, - [SMALL_STATE(745)] = 36947, - [SMALL_STATE(746)] = 36972, - [SMALL_STATE(747)] = 36997, - [SMALL_STATE(748)] = 37022, - [SMALL_STATE(749)] = 37047, - [SMALL_STATE(750)] = 37074, - [SMALL_STATE(751)] = 37099, - [SMALL_STATE(752)] = 37124, - [SMALL_STATE(753)] = 37149, - [SMALL_STATE(754)] = 37174, - [SMALL_STATE(755)] = 37199, - [SMALL_STATE(756)] = 37224, - [SMALL_STATE(757)] = 37249, - [SMALL_STATE(758)] = 37274, - [SMALL_STATE(759)] = 37299, - [SMALL_STATE(760)] = 37324, - [SMALL_STATE(761)] = 37349, - [SMALL_STATE(762)] = 37374, - [SMALL_STATE(763)] = 37401, - [SMALL_STATE(764)] = 37426, - [SMALL_STATE(765)] = 37449, - [SMALL_STATE(766)] = 37472, - [SMALL_STATE(767)] = 37497, - [SMALL_STATE(768)] = 37522, - [SMALL_STATE(769)] = 37547, - [SMALL_STATE(770)] = 37572, - [SMALL_STATE(771)] = 37597, - [SMALL_STATE(772)] = 37622, - [SMALL_STATE(773)] = 37651, - [SMALL_STATE(774)] = 37680, - [SMALL_STATE(775)] = 37705, - [SMALL_STATE(776)] = 37730, - [SMALL_STATE(777)] = 37755, - [SMALL_STATE(778)] = 37780, - [SMALL_STATE(779)] = 37805, - [SMALL_STATE(780)] = 37830, - [SMALL_STATE(781)] = 37853, - [SMALL_STATE(782)] = 37878, - [SMALL_STATE(783)] = 37903, - [SMALL_STATE(784)] = 37928, - [SMALL_STATE(785)] = 37953, - [SMALL_STATE(786)] = 37978, - [SMALL_STATE(787)] = 38003, - [SMALL_STATE(788)] = 38028, - [SMALL_STATE(789)] = 38053, - [SMALL_STATE(790)] = 38078, - [SMALL_STATE(791)] = 38101, - [SMALL_STATE(792)] = 38126, - [SMALL_STATE(793)] = 38161, - [SMALL_STATE(794)] = 38186, - [SMALL_STATE(795)] = 38211, - [SMALL_STATE(796)] = 38236, - [SMALL_STATE(797)] = 38261, - [SMALL_STATE(798)] = 38286, - [SMALL_STATE(799)] = 38311, - [SMALL_STATE(800)] = 38336, - [SMALL_STATE(801)] = 38361, - [SMALL_STATE(802)] = 38382, - [SMALL_STATE(803)] = 38409, - [SMALL_STATE(804)] = 38434, - [SMALL_STATE(805)] = 38459, - [SMALL_STATE(806)] = 38481, - [SMALL_STATE(807)] = 38501, - [SMALL_STATE(808)] = 38523, - [SMALL_STATE(809)] = 38541, - [SMALL_STATE(810)] = 38563, - [SMALL_STATE(811)] = 38583, - [SMALL_STATE(812)] = 38602, - [SMALL_STATE(813)] = 38621, - [SMALL_STATE(814)] = 38650, - [SMALL_STATE(815)] = 38679, - [SMALL_STATE(816)] = 38708, - [SMALL_STATE(817)] = 38737, - [SMALL_STATE(818)] = 38756, - [SMALL_STATE(819)] = 38785, - [SMALL_STATE(820)] = 38804, - [SMALL_STATE(821)] = 38823, - [SMALL_STATE(822)] = 38842, - [SMALL_STATE(823)] = 38858, - [SMALL_STATE(824)] = 38890, - [SMALL_STATE(825)] = 38906, - [SMALL_STATE(826)] = 38938, - [SMALL_STATE(827)] = 38954, - [SMALL_STATE(828)] = 38986, - [SMALL_STATE(829)] = 39002, - [SMALL_STATE(830)] = 39034, - [SMALL_STATE(831)] = 39052, - [SMALL_STATE(832)] = 39068, - [SMALL_STATE(833)] = 39097, - [SMALL_STATE(834)] = 39124, - [SMALL_STATE(835)] = 39155, - [SMALL_STATE(836)] = 39182, - [SMALL_STATE(837)] = 39209, - [SMALL_STATE(838)] = 39238, - [SMALL_STATE(839)] = 39265, - [SMALL_STATE(840)] = 39296, - [SMALL_STATE(841)] = 39323, - [SMALL_STATE(842)] = 39348, - [SMALL_STATE(843)] = 39375, - [SMALL_STATE(844)] = 39402, - [SMALL_STATE(845)] = 39429, - [SMALL_STATE(846)] = 39460, - [SMALL_STATE(847)] = 39487, - [SMALL_STATE(848)] = 39503, - [SMALL_STATE(849)] = 39519, - [SMALL_STATE(850)] = 39535, - [SMALL_STATE(851)] = 39561, - [SMALL_STATE(852)] = 39577, - [SMALL_STATE(853)] = 39601, - [SMALL_STATE(854)] = 39617, - [SMALL_STATE(855)] = 39633, - [SMALL_STATE(856)] = 39649, - [SMALL_STATE(857)] = 39665, - [SMALL_STATE(858)] = 39681, - [SMALL_STATE(859)] = 39697, - [SMALL_STATE(860)] = 39713, - [SMALL_STATE(861)] = 39729, - [SMALL_STATE(862)] = 39755, - [SMALL_STATE(863)] = 39781, - [SMALL_STATE(864)] = 39797, - [SMALL_STATE(865)] = 39825, - [SMALL_STATE(866)] = 39841, - [SMALL_STATE(867)] = 39857, - [SMALL_STATE(868)] = 39873, - [SMALL_STATE(869)] = 39899, - [SMALL_STATE(870)] = 39915, - [SMALL_STATE(871)] = 39941, - [SMALL_STATE(872)] = 39957, - [SMALL_STATE(873)] = 39973, - [SMALL_STATE(874)] = 39989, - [SMALL_STATE(875)] = 40005, - [SMALL_STATE(876)] = 40021, - [SMALL_STATE(877)] = 40037, - [SMALL_STATE(878)] = 40059, - [SMALL_STATE(879)] = 40075, - [SMALL_STATE(880)] = 40091, - [SMALL_STATE(881)] = 40107, - [SMALL_STATE(882)] = 40123, - [SMALL_STATE(883)] = 40139, - [SMALL_STATE(884)] = 40155, - [SMALL_STATE(885)] = 40171, - [SMALL_STATE(886)] = 40187, - [SMALL_STATE(887)] = 40203, - [SMALL_STATE(888)] = 40225, - [SMALL_STATE(889)] = 40241, - [SMALL_STATE(890)] = 40257, - [SMALL_STATE(891)] = 40273, - [SMALL_STATE(892)] = 40289, - [SMALL_STATE(893)] = 40305, - [SMALL_STATE(894)] = 40331, - [SMALL_STATE(895)] = 40347, - [SMALL_STATE(896)] = 40372, - [SMALL_STATE(897)] = 40397, - [SMALL_STATE(898)] = 40422, - [SMALL_STATE(899)] = 40435, - [SMALL_STATE(900)] = 40460, - [SMALL_STATE(901)] = 40485, - [SMALL_STATE(902)] = 40506, - [SMALL_STATE(903)] = 40531, - [SMALL_STATE(904)] = 40544, - [SMALL_STATE(905)] = 40569, - [SMALL_STATE(906)] = 40582, - [SMALL_STATE(907)] = 40605, - [SMALL_STATE(908)] = 40626, - [SMALL_STATE(909)] = 40647, - [SMALL_STATE(910)] = 40672, - [SMALL_STATE(911)] = 40697, - [SMALL_STATE(912)] = 40722, - [SMALL_STATE(913)] = 40735, - [SMALL_STATE(914)] = 40760, - [SMALL_STATE(915)] = 40775, - [SMALL_STATE(916)] = 40800, - [SMALL_STATE(917)] = 40825, - [SMALL_STATE(918)] = 40850, - [SMALL_STATE(919)] = 40875, - [SMALL_STATE(920)] = 40900, - [SMALL_STATE(921)] = 40925, - [SMALL_STATE(922)] = 40950, - [SMALL_STATE(923)] = 40971, - [SMALL_STATE(924)] = 40996, - [SMALL_STATE(925)] = 41009, - [SMALL_STATE(926)] = 41034, - [SMALL_STATE(927)] = 41059, - [SMALL_STATE(928)] = 41081, - [SMALL_STATE(929)] = 41103, - [SMALL_STATE(930)] = 41123, - [SMALL_STATE(931)] = 41139, - [SMALL_STATE(932)] = 41151, - [SMALL_STATE(933)] = 41167, - [SMALL_STATE(934)] = 41181, - [SMALL_STATE(935)] = 41193, - [SMALL_STATE(936)] = 41213, - [SMALL_STATE(937)] = 41231, - [SMALL_STATE(938)] = 41253, - [SMALL_STATE(939)] = 41273, - [SMALL_STATE(940)] = 41295, - [SMALL_STATE(941)] = 41311, - [SMALL_STATE(942)] = 41325, - [SMALL_STATE(943)] = 41345, - [SMALL_STATE(944)] = 41367, - [SMALL_STATE(945)] = 41387, - [SMALL_STATE(946)] = 41401, - [SMALL_STATE(947)] = 41423, - [SMALL_STATE(948)] = 41443, - [SMALL_STATE(949)] = 41465, - [SMALL_STATE(950)] = 41487, - [SMALL_STATE(951)] = 41501, - [SMALL_STATE(952)] = 41519, - [SMALL_STATE(953)] = 41541, - [SMALL_STATE(954)] = 41559, - [SMALL_STATE(955)] = 41577, - [SMALL_STATE(956)] = 41599, - [SMALL_STATE(957)] = 41621, - [SMALL_STATE(958)] = 41643, - [SMALL_STATE(959)] = 41657, - [SMALL_STATE(960)] = 41671, - [SMALL_STATE(961)] = 41689, - [SMALL_STATE(962)] = 41703, - [SMALL_STATE(963)] = 41719, - [SMALL_STATE(964)] = 41739, - [SMALL_STATE(965)] = 41758, - [SMALL_STATE(966)] = 41777, - [SMALL_STATE(967)] = 41796, - [SMALL_STATE(968)] = 41815, - [SMALL_STATE(969)] = 41830, - [SMALL_STATE(970)] = 41847, - [SMALL_STATE(971)] = 41866, - [SMALL_STATE(972)] = 41885, - [SMALL_STATE(973)] = 41902, - [SMALL_STATE(974)] = 41917, - [SMALL_STATE(975)] = 41930, - [SMALL_STATE(976)] = 41945, - [SMALL_STATE(977)] = 41964, - [SMALL_STATE(978)] = 41983, - [SMALL_STATE(979)] = 42002, - [SMALL_STATE(980)] = 42019, - [SMALL_STATE(981)] = 42038, - [SMALL_STATE(982)] = 42057, - [SMALL_STATE(983)] = 42076, - [SMALL_STATE(984)] = 42095, - [SMALL_STATE(985)] = 42114, - [SMALL_STATE(986)] = 42133, - [SMALL_STATE(987)] = 42152, - [SMALL_STATE(988)] = 42167, - [SMALL_STATE(989)] = 42186, - [SMALL_STATE(990)] = 42203, - [SMALL_STATE(991)] = 42220, - [SMALL_STATE(992)] = 42231, - [SMALL_STATE(993)] = 42244, - [SMALL_STATE(994)] = 42259, - [SMALL_STATE(995)] = 42278, - [SMALL_STATE(996)] = 42297, - [SMALL_STATE(997)] = 42316, - [SMALL_STATE(998)] = 42335, - [SMALL_STATE(999)] = 42354, - [SMALL_STATE(1000)] = 42365, - [SMALL_STATE(1001)] = 42384, - [SMALL_STATE(1002)] = 42403, - [SMALL_STATE(1003)] = 42420, - [SMALL_STATE(1004)] = 42439, - [SMALL_STATE(1005)] = 42458, - [SMALL_STATE(1006)] = 42477, - [SMALL_STATE(1007)] = 42496, - [SMALL_STATE(1008)] = 42513, - [SMALL_STATE(1009)] = 42532, - [SMALL_STATE(1010)] = 42551, - [SMALL_STATE(1011)] = 42570, - [SMALL_STATE(1012)] = 42589, - [SMALL_STATE(1013)] = 42608, - [SMALL_STATE(1014)] = 42627, - [SMALL_STATE(1015)] = 42642, - [SMALL_STATE(1016)] = 42661, - [SMALL_STATE(1017)] = 42680, - [SMALL_STATE(1018)] = 42697, - [SMALL_STATE(1019)] = 42712, - [SMALL_STATE(1020)] = 42731, - [SMALL_STATE(1021)] = 42750, - [SMALL_STATE(1022)] = 42769, - [SMALL_STATE(1023)] = 42786, - [SMALL_STATE(1024)] = 42799, - [SMALL_STATE(1025)] = 42810, - [SMALL_STATE(1026)] = 42827, - [SMALL_STATE(1027)] = 42846, - [SMALL_STATE(1028)] = 42857, - [SMALL_STATE(1029)] = 42870, - [SMALL_STATE(1030)] = 42889, - [SMALL_STATE(1031)] = 42908, - [SMALL_STATE(1032)] = 42919, - [SMALL_STATE(1033)] = 42938, - [SMALL_STATE(1034)] = 42957, - [SMALL_STATE(1035)] = 42972, - [SMALL_STATE(1036)] = 42991, - [SMALL_STATE(1037)] = 43010, - [SMALL_STATE(1038)] = 43029, - [SMALL_STATE(1039)] = 43044, - [SMALL_STATE(1040)] = 43063, - [SMALL_STATE(1041)] = 43082, - [SMALL_STATE(1042)] = 43101, - [SMALL_STATE(1043)] = 43120, - [SMALL_STATE(1044)] = 43139, - [SMALL_STATE(1045)] = 43158, - [SMALL_STATE(1046)] = 43173, - [SMALL_STATE(1047)] = 43192, - [SMALL_STATE(1048)] = 43211, - [SMALL_STATE(1049)] = 43230, - [SMALL_STATE(1050)] = 43245, - [SMALL_STATE(1051)] = 43256, - [SMALL_STATE(1052)] = 43275, - [SMALL_STATE(1053)] = 43294, - [SMALL_STATE(1054)] = 43304, - [SMALL_STATE(1055)] = 43320, - [SMALL_STATE(1056)] = 43336, - [SMALL_STATE(1057)] = 43352, - [SMALL_STATE(1058)] = 43368, - [SMALL_STATE(1059)] = 43384, - [SMALL_STATE(1060)] = 43400, - [SMALL_STATE(1061)] = 43416, - [SMALL_STATE(1062)] = 43430, - [SMALL_STATE(1063)] = 43444, - [SMALL_STATE(1064)] = 43460, - [SMALL_STATE(1065)] = 43470, - [SMALL_STATE(1066)] = 43480, - [SMALL_STATE(1067)] = 43494, - [SMALL_STATE(1068)] = 43508, - [SMALL_STATE(1069)] = 43520, - [SMALL_STATE(1070)] = 43534, - [SMALL_STATE(1071)] = 43548, - [SMALL_STATE(1072)] = 43562, - [SMALL_STATE(1073)] = 43578, - [SMALL_STATE(1074)] = 43590, - [SMALL_STATE(1075)] = 43606, - [SMALL_STATE(1076)] = 43620, - [SMALL_STATE(1077)] = 43636, - [SMALL_STATE(1078)] = 43652, - [SMALL_STATE(1079)] = 43666, - [SMALL_STATE(1080)] = 43682, - [SMALL_STATE(1081)] = 43698, - [SMALL_STATE(1082)] = 43714, - [SMALL_STATE(1083)] = 43730, - [SMALL_STATE(1084)] = 43746, - [SMALL_STATE(1085)] = 43758, - [SMALL_STATE(1086)] = 43774, - [SMALL_STATE(1087)] = 43790, - [SMALL_STATE(1088)] = 43804, - [SMALL_STATE(1089)] = 43818, - [SMALL_STATE(1090)] = 43828, - [SMALL_STATE(1091)] = 43844, - [SMALL_STATE(1092)] = 43856, - [SMALL_STATE(1093)] = 43870, - [SMALL_STATE(1094)] = 43882, - [SMALL_STATE(1095)] = 43896, - [SMALL_STATE(1096)] = 43912, - [SMALL_STATE(1097)] = 43926, - [SMALL_STATE(1098)] = 43942, - [SMALL_STATE(1099)] = 43958, - [SMALL_STATE(1100)] = 43974, - [SMALL_STATE(1101)] = 43984, - [SMALL_STATE(1102)] = 43998, - [SMALL_STATE(1103)] = 44014, - [SMALL_STATE(1104)] = 44028, - [SMALL_STATE(1105)] = 44044, - [SMALL_STATE(1106)] = 44058, - [SMALL_STATE(1107)] = 44068, - [SMALL_STATE(1108)] = 44084, - [SMALL_STATE(1109)] = 44094, - [SMALL_STATE(1110)] = 44106, - [SMALL_STATE(1111)] = 44120, - [SMALL_STATE(1112)] = 44134, - [SMALL_STATE(1113)] = 44144, - [SMALL_STATE(1114)] = 44156, - [SMALL_STATE(1115)] = 44166, - [SMALL_STATE(1116)] = 44176, - [SMALL_STATE(1117)] = 44190, - [SMALL_STATE(1118)] = 44206, - [SMALL_STATE(1119)] = 44220, - [SMALL_STATE(1120)] = 44230, - [SMALL_STATE(1121)] = 44246, - [SMALL_STATE(1122)] = 44262, - [SMALL_STATE(1123)] = 44276, - [SMALL_STATE(1124)] = 44292, - [SMALL_STATE(1125)] = 44306, - [SMALL_STATE(1126)] = 44322, - [SMALL_STATE(1127)] = 44338, - [SMALL_STATE(1128)] = 44350, - [SMALL_STATE(1129)] = 44366, - [SMALL_STATE(1130)] = 44382, - [SMALL_STATE(1131)] = 44396, - [SMALL_STATE(1132)] = 44412, - [SMALL_STATE(1133)] = 44428, - [SMALL_STATE(1134)] = 44444, - [SMALL_STATE(1135)] = 44458, - [SMALL_STATE(1136)] = 44474, - [SMALL_STATE(1137)] = 44490, - [SMALL_STATE(1138)] = 44504, - [SMALL_STATE(1139)] = 44516, - [SMALL_STATE(1140)] = 44532, - [SMALL_STATE(1141)] = 44546, - [SMALL_STATE(1142)] = 44562, - [SMALL_STATE(1143)] = 44576, - [SMALL_STATE(1144)] = 44588, - [SMALL_STATE(1145)] = 44604, - [SMALL_STATE(1146)] = 44613, - [SMALL_STATE(1147)] = 44626, - [SMALL_STATE(1148)] = 44639, - [SMALL_STATE(1149)] = 44652, - [SMALL_STATE(1150)] = 44661, - [SMALL_STATE(1151)] = 44674, - [SMALL_STATE(1152)] = 44687, - [SMALL_STATE(1153)] = 44700, - [SMALL_STATE(1154)] = 44709, - [SMALL_STATE(1155)] = 44722, - [SMALL_STATE(1156)] = 44735, - [SMALL_STATE(1157)] = 44748, - [SMALL_STATE(1158)] = 44757, - [SMALL_STATE(1159)] = 44770, - [SMALL_STATE(1160)] = 44783, - [SMALL_STATE(1161)] = 44792, - [SMALL_STATE(1162)] = 44803, - [SMALL_STATE(1163)] = 44816, - [SMALL_STATE(1164)] = 44829, - [SMALL_STATE(1165)] = 44842, - [SMALL_STATE(1166)] = 44851, - [SMALL_STATE(1167)] = 44860, - [SMALL_STATE(1168)] = 44869, - [SMALL_STATE(1169)] = 44882, - [SMALL_STATE(1170)] = 44891, - [SMALL_STATE(1171)] = 44904, - [SMALL_STATE(1172)] = 44913, - [SMALL_STATE(1173)] = 44926, - [SMALL_STATE(1174)] = 44939, - [SMALL_STATE(1175)] = 44952, - [SMALL_STATE(1176)] = 44961, - [SMALL_STATE(1177)] = 44970, - [SMALL_STATE(1178)] = 44983, - [SMALL_STATE(1179)] = 44996, - [SMALL_STATE(1180)] = 45005, - [SMALL_STATE(1181)] = 45018, - [SMALL_STATE(1182)] = 45031, - [SMALL_STATE(1183)] = 45044, - [SMALL_STATE(1184)] = 45057, - [SMALL_STATE(1185)] = 45070, - [SMALL_STATE(1186)] = 45083, - [SMALL_STATE(1187)] = 45092, - [SMALL_STATE(1188)] = 45101, - [SMALL_STATE(1189)] = 45114, - [SMALL_STATE(1190)] = 45125, - [SMALL_STATE(1191)] = 45138, - [SMALL_STATE(1192)] = 45151, - [SMALL_STATE(1193)] = 45164, - [SMALL_STATE(1194)] = 45177, - [SMALL_STATE(1195)] = 45190, - [SMALL_STATE(1196)] = 45203, - [SMALL_STATE(1197)] = 45216, - [SMALL_STATE(1198)] = 45229, - [SMALL_STATE(1199)] = 45242, - [SMALL_STATE(1200)] = 45255, - [SMALL_STATE(1201)] = 45264, - [SMALL_STATE(1202)] = 45273, - [SMALL_STATE(1203)] = 45286, - [SMALL_STATE(1204)] = 45299, - [SMALL_STATE(1205)] = 45308, - [SMALL_STATE(1206)] = 45321, - [SMALL_STATE(1207)] = 45330, - [SMALL_STATE(1208)] = 45339, - [SMALL_STATE(1209)] = 45352, - [SMALL_STATE(1210)] = 45365, - [SMALL_STATE(1211)] = 45378, - [SMALL_STATE(1212)] = 45391, - [SMALL_STATE(1213)] = 45404, - [SMALL_STATE(1214)] = 45417, - [SMALL_STATE(1215)] = 45430, - [SMALL_STATE(1216)] = 45439, - [SMALL_STATE(1217)] = 45448, - [SMALL_STATE(1218)] = 45461, - [SMALL_STATE(1219)] = 45470, - [SMALL_STATE(1220)] = 45483, - [SMALL_STATE(1221)] = 45496, - [SMALL_STATE(1222)] = 45505, - [SMALL_STATE(1223)] = 45516, - [SMALL_STATE(1224)] = 45529, - [SMALL_STATE(1225)] = 45542, - [SMALL_STATE(1226)] = 45555, - [SMALL_STATE(1227)] = 45568, - [SMALL_STATE(1228)] = 45581, - [SMALL_STATE(1229)] = 45592, - [SMALL_STATE(1230)] = 45601, - [SMALL_STATE(1231)] = 45614, - [SMALL_STATE(1232)] = 45627, - [SMALL_STATE(1233)] = 45640, - [SMALL_STATE(1234)] = 45653, - [SMALL_STATE(1235)] = 45666, - [SMALL_STATE(1236)] = 45675, - [SMALL_STATE(1237)] = 45688, - [SMALL_STATE(1238)] = 45701, - [SMALL_STATE(1239)] = 45714, - [SMALL_STATE(1240)] = 45727, - [SMALL_STATE(1241)] = 45740, - [SMALL_STATE(1242)] = 45753, - [SMALL_STATE(1243)] = 45762, - [SMALL_STATE(1244)] = 45775, - [SMALL_STATE(1245)] = 45784, - [SMALL_STATE(1246)] = 45797, - [SMALL_STATE(1247)] = 45810, - [SMALL_STATE(1248)] = 45819, - [SMALL_STATE(1249)] = 45832, - [SMALL_STATE(1250)] = 45845, - [SMALL_STATE(1251)] = 45858, - [SMALL_STATE(1252)] = 45867, - [SMALL_STATE(1253)] = 45878, - [SMALL_STATE(1254)] = 45887, - [SMALL_STATE(1255)] = 45900, - [SMALL_STATE(1256)] = 45913, - [SMALL_STATE(1257)] = 45922, - [SMALL_STATE(1258)] = 45935, - [SMALL_STATE(1259)] = 45948, - [SMALL_STATE(1260)] = 45961, - [SMALL_STATE(1261)] = 45974, - [SMALL_STATE(1262)] = 45987, - [SMALL_STATE(1263)] = 46000, - [SMALL_STATE(1264)] = 46013, - [SMALL_STATE(1265)] = 46024, - [SMALL_STATE(1266)] = 46033, - [SMALL_STATE(1267)] = 46046, - [SMALL_STATE(1268)] = 46055, - [SMALL_STATE(1269)] = 46064, - [SMALL_STATE(1270)] = 46073, - [SMALL_STATE(1271)] = 46082, - [SMALL_STATE(1272)] = 46095, - [SMALL_STATE(1273)] = 46104, - [SMALL_STATE(1274)] = 46117, - [SMALL_STATE(1275)] = 46130, - [SMALL_STATE(1276)] = 46143, - [SMALL_STATE(1277)] = 46156, - [SMALL_STATE(1278)] = 46169, - [SMALL_STATE(1279)] = 46178, - [SMALL_STATE(1280)] = 46191, - [SMALL_STATE(1281)] = 46204, - [SMALL_STATE(1282)] = 46213, - [SMALL_STATE(1283)] = 46226, - [SMALL_STATE(1284)] = 46239, - [SMALL_STATE(1285)] = 46252, - [SMALL_STATE(1286)] = 46265, - [SMALL_STATE(1287)] = 46278, - [SMALL_STATE(1288)] = 46291, - [SMALL_STATE(1289)] = 46300, - [SMALL_STATE(1290)] = 46309, - [SMALL_STATE(1291)] = 46318, - [SMALL_STATE(1292)] = 46331, - [SMALL_STATE(1293)] = 46340, - [SMALL_STATE(1294)] = 46353, - [SMALL_STATE(1295)] = 46366, - [SMALL_STATE(1296)] = 46379, - [SMALL_STATE(1297)] = 46392, - [SMALL_STATE(1298)] = 46405, - [SMALL_STATE(1299)] = 46418, - [SMALL_STATE(1300)] = 46431, - [SMALL_STATE(1301)] = 46444, - [SMALL_STATE(1302)] = 46457, - [SMALL_STATE(1303)] = 46466, - [SMALL_STATE(1304)] = 46479, - [SMALL_STATE(1305)] = 46492, - [SMALL_STATE(1306)] = 46501, - [SMALL_STATE(1307)] = 46510, - [SMALL_STATE(1308)] = 46523, - [SMALL_STATE(1309)] = 46536, - [SMALL_STATE(1310)] = 46549, - [SMALL_STATE(1311)] = 46562, - [SMALL_STATE(1312)] = 46571, - [SMALL_STATE(1313)] = 46582, - [SMALL_STATE(1314)] = 46591, - [SMALL_STATE(1315)] = 46604, - [SMALL_STATE(1316)] = 46617, - [SMALL_STATE(1317)] = 46626, - [SMALL_STATE(1318)] = 46639, - [SMALL_STATE(1319)] = 46652, - [SMALL_STATE(1320)] = 46665, - [SMALL_STATE(1321)] = 46678, - [SMALL_STATE(1322)] = 46691, - [SMALL_STATE(1323)] = 46700, - [SMALL_STATE(1324)] = 46713, - [SMALL_STATE(1325)] = 46724, - [SMALL_STATE(1326)] = 46737, - [SMALL_STATE(1327)] = 46750, - [SMALL_STATE(1328)] = 46763, - [SMALL_STATE(1329)] = 46774, - [SMALL_STATE(1330)] = 46783, - [SMALL_STATE(1331)] = 46792, - [SMALL_STATE(1332)] = 46805, - [SMALL_STATE(1333)] = 46818, - [SMALL_STATE(1334)] = 46831, - [SMALL_STATE(1335)] = 46842, - [SMALL_STATE(1336)] = 46855, - [SMALL_STATE(1337)] = 46864, - [SMALL_STATE(1338)] = 46873, - [SMALL_STATE(1339)] = 46882, - [SMALL_STATE(1340)] = 46892, - [SMALL_STATE(1341)] = 46900, - [SMALL_STATE(1342)] = 46910, - [SMALL_STATE(1343)] = 46920, - [SMALL_STATE(1344)] = 46930, - [SMALL_STATE(1345)] = 46940, - [SMALL_STATE(1346)] = 46950, - [SMALL_STATE(1347)] = 46960, - [SMALL_STATE(1348)] = 46968, - [SMALL_STATE(1349)] = 46978, - [SMALL_STATE(1350)] = 46988, - [SMALL_STATE(1351)] = 46998, - [SMALL_STATE(1352)] = 47008, - [SMALL_STATE(1353)] = 47016, - [SMALL_STATE(1354)] = 47024, - [SMALL_STATE(1355)] = 47034, - [SMALL_STATE(1356)] = 47044, - [SMALL_STATE(1357)] = 47054, - [SMALL_STATE(1358)] = 47062, - [SMALL_STATE(1359)] = 47070, - [SMALL_STATE(1360)] = 47078, - [SMALL_STATE(1361)] = 47086, - [SMALL_STATE(1362)] = 47096, - [SMALL_STATE(1363)] = 47106, - [SMALL_STATE(1364)] = 47116, - [SMALL_STATE(1365)] = 47124, - [SMALL_STATE(1366)] = 47132, - [SMALL_STATE(1367)] = 47142, - [SMALL_STATE(1368)] = 47150, - [SMALL_STATE(1369)] = 47160, - [SMALL_STATE(1370)] = 47168, - [SMALL_STATE(1371)] = 47176, - [SMALL_STATE(1372)] = 47184, - [SMALL_STATE(1373)] = 47192, - [SMALL_STATE(1374)] = 47200, - [SMALL_STATE(1375)] = 47210, - [SMALL_STATE(1376)] = 47218, - [SMALL_STATE(1377)] = 47226, - [SMALL_STATE(1378)] = 47236, - [SMALL_STATE(1379)] = 47246, - [SMALL_STATE(1380)] = 47256, - [SMALL_STATE(1381)] = 47264, - [SMALL_STATE(1382)] = 47274, - [SMALL_STATE(1383)] = 47284, - [SMALL_STATE(1384)] = 47294, - [SMALL_STATE(1385)] = 47304, - [SMALL_STATE(1386)] = 47312, - [SMALL_STATE(1387)] = 47320, - [SMALL_STATE(1388)] = 47330, - [SMALL_STATE(1389)] = 47338, - [SMALL_STATE(1390)] = 47346, - [SMALL_STATE(1391)] = 47356, - [SMALL_STATE(1392)] = 47364, - [SMALL_STATE(1393)] = 47374, - [SMALL_STATE(1394)] = 47384, - [SMALL_STATE(1395)] = 47392, - [SMALL_STATE(1396)] = 47400, - [SMALL_STATE(1397)] = 47408, - [SMALL_STATE(1398)] = 47418, - [SMALL_STATE(1399)] = 47428, - [SMALL_STATE(1400)] = 47438, - [SMALL_STATE(1401)] = 47448, - [SMALL_STATE(1402)] = 47458, - [SMALL_STATE(1403)] = 47466, - [SMALL_STATE(1404)] = 47474, - [SMALL_STATE(1405)] = 47484, - [SMALL_STATE(1406)] = 47492, - [SMALL_STATE(1407)] = 47500, - [SMALL_STATE(1408)] = 47508, - [SMALL_STATE(1409)] = 47516, - [SMALL_STATE(1410)] = 47524, - [SMALL_STATE(1411)] = 47532, - [SMALL_STATE(1412)] = 47542, - [SMALL_STATE(1413)] = 47552, - [SMALL_STATE(1414)] = 47560, - [SMALL_STATE(1415)] = 47570, - [SMALL_STATE(1416)] = 47578, - [SMALL_STATE(1417)] = 47588, - [SMALL_STATE(1418)] = 47596, - [SMALL_STATE(1419)] = 47606, - [SMALL_STATE(1420)] = 47616, - [SMALL_STATE(1421)] = 47624, - [SMALL_STATE(1422)] = 47634, - [SMALL_STATE(1423)] = 47644, - [SMALL_STATE(1424)] = 47654, - [SMALL_STATE(1425)] = 47664, - [SMALL_STATE(1426)] = 47674, - [SMALL_STATE(1427)] = 47682, - [SMALL_STATE(1428)] = 47690, - [SMALL_STATE(1429)] = 47698, - [SMALL_STATE(1430)] = 47708, - [SMALL_STATE(1431)] = 47716, - [SMALL_STATE(1432)] = 47726, - [SMALL_STATE(1433)] = 47736, - [SMALL_STATE(1434)] = 47744, - [SMALL_STATE(1435)] = 47752, - [SMALL_STATE(1436)] = 47760, - [SMALL_STATE(1437)] = 47770, - [SMALL_STATE(1438)] = 47780, - [SMALL_STATE(1439)] = 47790, - [SMALL_STATE(1440)] = 47800, - [SMALL_STATE(1441)] = 47808, - [SMALL_STATE(1442)] = 47818, - [SMALL_STATE(1443)] = 47826, - [SMALL_STATE(1444)] = 47836, - [SMALL_STATE(1445)] = 47844, - [SMALL_STATE(1446)] = 47852, - [SMALL_STATE(1447)] = 47860, - [SMALL_STATE(1448)] = 47870, - [SMALL_STATE(1449)] = 47880, - [SMALL_STATE(1450)] = 47888, - [SMALL_STATE(1451)] = 47896, - [SMALL_STATE(1452)] = 47906, - [SMALL_STATE(1453)] = 47916, - [SMALL_STATE(1454)] = 47924, - [SMALL_STATE(1455)] = 47932, - [SMALL_STATE(1456)] = 47942, - [SMALL_STATE(1457)] = 47952, - [SMALL_STATE(1458)] = 47962, - [SMALL_STATE(1459)] = 47970, - [SMALL_STATE(1460)] = 47978, - [SMALL_STATE(1461)] = 47986, - [SMALL_STATE(1462)] = 47994, - [SMALL_STATE(1463)] = 48004, - [SMALL_STATE(1464)] = 48012, - [SMALL_STATE(1465)] = 48020, - [SMALL_STATE(1466)] = 48028, - [SMALL_STATE(1467)] = 48036, - [SMALL_STATE(1468)] = 48044, - [SMALL_STATE(1469)] = 48054, - [SMALL_STATE(1470)] = 48062, - [SMALL_STATE(1471)] = 48070, - [SMALL_STATE(1472)] = 48078, - [SMALL_STATE(1473)] = 48086, - [SMALL_STATE(1474)] = 48096, - [SMALL_STATE(1475)] = 48104, - [SMALL_STATE(1476)] = 48114, - [SMALL_STATE(1477)] = 48124, - [SMALL_STATE(1478)] = 48132, - [SMALL_STATE(1479)] = 48142, - [SMALL_STATE(1480)] = 48152, - [SMALL_STATE(1481)] = 48160, - [SMALL_STATE(1482)] = 48170, - [SMALL_STATE(1483)] = 48180, - [SMALL_STATE(1484)] = 48188, - [SMALL_STATE(1485)] = 48198, - [SMALL_STATE(1486)] = 48206, - [SMALL_STATE(1487)] = 48216, - [SMALL_STATE(1488)] = 48226, - [SMALL_STATE(1489)] = 48236, - [SMALL_STATE(1490)] = 48244, - [SMALL_STATE(1491)] = 48251, - [SMALL_STATE(1492)] = 48258, - [SMALL_STATE(1493)] = 48265, - [SMALL_STATE(1494)] = 48272, - [SMALL_STATE(1495)] = 48279, - [SMALL_STATE(1496)] = 48286, - [SMALL_STATE(1497)] = 48293, - [SMALL_STATE(1498)] = 48300, - [SMALL_STATE(1499)] = 48307, - [SMALL_STATE(1500)] = 48314, - [SMALL_STATE(1501)] = 48321, - [SMALL_STATE(1502)] = 48328, - [SMALL_STATE(1503)] = 48335, - [SMALL_STATE(1504)] = 48342, - [SMALL_STATE(1505)] = 48349, - [SMALL_STATE(1506)] = 48356, - [SMALL_STATE(1507)] = 48363, - [SMALL_STATE(1508)] = 48370, - [SMALL_STATE(1509)] = 48377, - [SMALL_STATE(1510)] = 48384, - [SMALL_STATE(1511)] = 48391, - [SMALL_STATE(1512)] = 48398, - [SMALL_STATE(1513)] = 48405, - [SMALL_STATE(1514)] = 48412, - [SMALL_STATE(1515)] = 48419, - [SMALL_STATE(1516)] = 48426, - [SMALL_STATE(1517)] = 48433, - [SMALL_STATE(1518)] = 48440, - [SMALL_STATE(1519)] = 48447, - [SMALL_STATE(1520)] = 48454, - [SMALL_STATE(1521)] = 48461, - [SMALL_STATE(1522)] = 48468, - [SMALL_STATE(1523)] = 48475, - [SMALL_STATE(1524)] = 48482, - [SMALL_STATE(1525)] = 48489, - [SMALL_STATE(1526)] = 48496, - [SMALL_STATE(1527)] = 48503, - [SMALL_STATE(1528)] = 48510, - [SMALL_STATE(1529)] = 48517, - [SMALL_STATE(1530)] = 48524, - [SMALL_STATE(1531)] = 48531, - [SMALL_STATE(1532)] = 48538, - [SMALL_STATE(1533)] = 48545, - [SMALL_STATE(1534)] = 48552, - [SMALL_STATE(1535)] = 48559, - [SMALL_STATE(1536)] = 48566, - [SMALL_STATE(1537)] = 48573, - [SMALL_STATE(1538)] = 48580, - [SMALL_STATE(1539)] = 48587, - [SMALL_STATE(1540)] = 48594, - [SMALL_STATE(1541)] = 48601, - [SMALL_STATE(1542)] = 48608, - [SMALL_STATE(1543)] = 48615, - [SMALL_STATE(1544)] = 48622, - [SMALL_STATE(1545)] = 48629, - [SMALL_STATE(1546)] = 48636, - [SMALL_STATE(1547)] = 48643, - [SMALL_STATE(1548)] = 48650, - [SMALL_STATE(1549)] = 48657, - [SMALL_STATE(1550)] = 48664, - [SMALL_STATE(1551)] = 48671, - [SMALL_STATE(1552)] = 48678, - [SMALL_STATE(1553)] = 48685, - [SMALL_STATE(1554)] = 48692, - [SMALL_STATE(1555)] = 48699, - [SMALL_STATE(1556)] = 48706, - [SMALL_STATE(1557)] = 48713, - [SMALL_STATE(1558)] = 48720, - [SMALL_STATE(1559)] = 48727, - [SMALL_STATE(1560)] = 48734, - [SMALL_STATE(1561)] = 48741, - [SMALL_STATE(1562)] = 48748, - [SMALL_STATE(1563)] = 48755, - [SMALL_STATE(1564)] = 48762, - [SMALL_STATE(1565)] = 48769, - [SMALL_STATE(1566)] = 48776, - [SMALL_STATE(1567)] = 48783, - [SMALL_STATE(1568)] = 48790, - [SMALL_STATE(1569)] = 48797, - [SMALL_STATE(1570)] = 48804, - [SMALL_STATE(1571)] = 48811, - [SMALL_STATE(1572)] = 48818, - [SMALL_STATE(1573)] = 48825, - [SMALL_STATE(1574)] = 48832, - [SMALL_STATE(1575)] = 48839, - [SMALL_STATE(1576)] = 48846, - [SMALL_STATE(1577)] = 48853, - [SMALL_STATE(1578)] = 48860, - [SMALL_STATE(1579)] = 48867, - [SMALL_STATE(1580)] = 48874, - [SMALL_STATE(1581)] = 48881, - [SMALL_STATE(1582)] = 48888, - [SMALL_STATE(1583)] = 48895, - [SMALL_STATE(1584)] = 48902, - [SMALL_STATE(1585)] = 48909, - [SMALL_STATE(1586)] = 48916, - [SMALL_STATE(1587)] = 48923, - [SMALL_STATE(1588)] = 48930, - [SMALL_STATE(1589)] = 48937, - [SMALL_STATE(1590)] = 48944, - [SMALL_STATE(1591)] = 48951, - [SMALL_STATE(1592)] = 48958, - [SMALL_STATE(1593)] = 48965, - [SMALL_STATE(1594)] = 48972, - [SMALL_STATE(1595)] = 48979, - [SMALL_STATE(1596)] = 48986, - [SMALL_STATE(1597)] = 48993, - [SMALL_STATE(1598)] = 49000, - [SMALL_STATE(1599)] = 49007, - [SMALL_STATE(1600)] = 49014, - [SMALL_STATE(1601)] = 49021, - [SMALL_STATE(1602)] = 49028, - [SMALL_STATE(1603)] = 49035, - [SMALL_STATE(1604)] = 49042, - [SMALL_STATE(1605)] = 49049, - [SMALL_STATE(1606)] = 49056, - [SMALL_STATE(1607)] = 49063, - [SMALL_STATE(1608)] = 49070, - [SMALL_STATE(1609)] = 49077, - [SMALL_STATE(1610)] = 49084, - [SMALL_STATE(1611)] = 49091, - [SMALL_STATE(1612)] = 49098, - [SMALL_STATE(1613)] = 49105, - [SMALL_STATE(1614)] = 49112, - [SMALL_STATE(1615)] = 49119, - [SMALL_STATE(1616)] = 49126, - [SMALL_STATE(1617)] = 49133, - [SMALL_STATE(1618)] = 49140, - [SMALL_STATE(1619)] = 49147, - [SMALL_STATE(1620)] = 49154, - [SMALL_STATE(1621)] = 49161, - [SMALL_STATE(1622)] = 49168, - [SMALL_STATE(1623)] = 49175, - [SMALL_STATE(1624)] = 49182, - [SMALL_STATE(1625)] = 49189, - [SMALL_STATE(1626)] = 49196, - [SMALL_STATE(1627)] = 49203, - [SMALL_STATE(1628)] = 49210, - [SMALL_STATE(1629)] = 49217, - [SMALL_STATE(1630)] = 49224, - [SMALL_STATE(1631)] = 49231, - [SMALL_STATE(1632)] = 49238, - [SMALL_STATE(1633)] = 49245, - [SMALL_STATE(1634)] = 49252, - [SMALL_STATE(1635)] = 49259, - [SMALL_STATE(1636)] = 49266, - [SMALL_STATE(1637)] = 49273, - [SMALL_STATE(1638)] = 49280, - [SMALL_STATE(1639)] = 49287, - [SMALL_STATE(1640)] = 49294, - [SMALL_STATE(1641)] = 49301, - [SMALL_STATE(1642)] = 49308, - [SMALL_STATE(1643)] = 49315, - [SMALL_STATE(1644)] = 49322, - [SMALL_STATE(1645)] = 49329, - [SMALL_STATE(1646)] = 49336, - [SMALL_STATE(1647)] = 49343, - [SMALL_STATE(1648)] = 49350, - [SMALL_STATE(1649)] = 49357, - [SMALL_STATE(1650)] = 49364, - [SMALL_STATE(1651)] = 49371, - [SMALL_STATE(1652)] = 49378, - [SMALL_STATE(1653)] = 49385, - [SMALL_STATE(1654)] = 49392, - [SMALL_STATE(1655)] = 49399, - [SMALL_STATE(1656)] = 49406, - [SMALL_STATE(1657)] = 49413, - [SMALL_STATE(1658)] = 49420, - [SMALL_STATE(1659)] = 49427, - [SMALL_STATE(1660)] = 49434, - [SMALL_STATE(1661)] = 49441, - [SMALL_STATE(1662)] = 49448, - [SMALL_STATE(1663)] = 49455, - [SMALL_STATE(1664)] = 49462, - [SMALL_STATE(1665)] = 49469, - [SMALL_STATE(1666)] = 49476, - [SMALL_STATE(1667)] = 49483, - [SMALL_STATE(1668)] = 49490, - [SMALL_STATE(1669)] = 49497, - [SMALL_STATE(1670)] = 49504, - [SMALL_STATE(1671)] = 49511, - [SMALL_STATE(1672)] = 49518, - [SMALL_STATE(1673)] = 49525, - [SMALL_STATE(1674)] = 49532, - [SMALL_STATE(1675)] = 49539, - [SMALL_STATE(1676)] = 49546, - [SMALL_STATE(1677)] = 49553, - [SMALL_STATE(1678)] = 49560, - [SMALL_STATE(1679)] = 49567, - [SMALL_STATE(1680)] = 49574, - [SMALL_STATE(1681)] = 49581, - [SMALL_STATE(1682)] = 49588, - [SMALL_STATE(1683)] = 49595, - [SMALL_STATE(1684)] = 49602, - [SMALL_STATE(1685)] = 49609, - [SMALL_STATE(1686)] = 49616, - [SMALL_STATE(1687)] = 49623, - [SMALL_STATE(1688)] = 49630, - [SMALL_STATE(1689)] = 49637, - [SMALL_STATE(1690)] = 49644, - [SMALL_STATE(1691)] = 49651, - [SMALL_STATE(1692)] = 49658, - [SMALL_STATE(1693)] = 49665, - [SMALL_STATE(1694)] = 49672, - [SMALL_STATE(1695)] = 49679, - [SMALL_STATE(1696)] = 49686, - [SMALL_STATE(1697)] = 49693, - [SMALL_STATE(1698)] = 49700, - [SMALL_STATE(1699)] = 49707, - [SMALL_STATE(1700)] = 49714, - [SMALL_STATE(1701)] = 49721, - [SMALL_STATE(1702)] = 49728, - [SMALL_STATE(1703)] = 49735, - [SMALL_STATE(1704)] = 49742, - [SMALL_STATE(1705)] = 49749, - [SMALL_STATE(1706)] = 49756, - [SMALL_STATE(1707)] = 49763, - [SMALL_STATE(1708)] = 49770, - [SMALL_STATE(1709)] = 49777, - [SMALL_STATE(1710)] = 49784, - [SMALL_STATE(1711)] = 49791, - [SMALL_STATE(1712)] = 49798, - [SMALL_STATE(1713)] = 49805, - [SMALL_STATE(1714)] = 49812, - [SMALL_STATE(1715)] = 49819, - [SMALL_STATE(1716)] = 49826, - [SMALL_STATE(1717)] = 49833, - [SMALL_STATE(1718)] = 49840, - [SMALL_STATE(1719)] = 49847, - [SMALL_STATE(1720)] = 49854, - [SMALL_STATE(1721)] = 49861, - [SMALL_STATE(1722)] = 49868, - [SMALL_STATE(1723)] = 49875, - [SMALL_STATE(1724)] = 49882, - [SMALL_STATE(1725)] = 49889, - [SMALL_STATE(1726)] = 49896, - [SMALL_STATE(1727)] = 49903, - [SMALL_STATE(1728)] = 49910, - [SMALL_STATE(1729)] = 49917, - [SMALL_STATE(1730)] = 49924, - [SMALL_STATE(1731)] = 49931, - [SMALL_STATE(1732)] = 49938, - [SMALL_STATE(1733)] = 49945, - [SMALL_STATE(1734)] = 49952, - [SMALL_STATE(1735)] = 49959, - [SMALL_STATE(1736)] = 49966, - [SMALL_STATE(1737)] = 49973, - [SMALL_STATE(1738)] = 49980, - [SMALL_STATE(1739)] = 49987, - [SMALL_STATE(1740)] = 49994, - [SMALL_STATE(1741)] = 50001, - [SMALL_STATE(1742)] = 50008, - [SMALL_STATE(1743)] = 50015, - [SMALL_STATE(1744)] = 50022, - [SMALL_STATE(1745)] = 50029, - [SMALL_STATE(1746)] = 50036, - [SMALL_STATE(1747)] = 50043, - [SMALL_STATE(1748)] = 50050, - [SMALL_STATE(1749)] = 50057, - [SMALL_STATE(1750)] = 50064, - [SMALL_STATE(1751)] = 50071, - [SMALL_STATE(1752)] = 50078, - [SMALL_STATE(1753)] = 50085, - [SMALL_STATE(1754)] = 50092, - [SMALL_STATE(1755)] = 50099, - [SMALL_STATE(1756)] = 50106, - [SMALL_STATE(1757)] = 50113, - [SMALL_STATE(1758)] = 50120, - [SMALL_STATE(1759)] = 50127, - [SMALL_STATE(1760)] = 50134, - [SMALL_STATE(1761)] = 50141, - [SMALL_STATE(1762)] = 50148, - [SMALL_STATE(1763)] = 50155, - [SMALL_STATE(1764)] = 50162, - [SMALL_STATE(1765)] = 50169, - [SMALL_STATE(1766)] = 50176, - [SMALL_STATE(1767)] = 50183, - [SMALL_STATE(1768)] = 50190, - [SMALL_STATE(1769)] = 50197, - [SMALL_STATE(1770)] = 50204, - [SMALL_STATE(1771)] = 50211, - [SMALL_STATE(1772)] = 50218, - [SMALL_STATE(1773)] = 50225, - [SMALL_STATE(1774)] = 50232, - [SMALL_STATE(1775)] = 50239, - [SMALL_STATE(1776)] = 50246, - [SMALL_STATE(1777)] = 50253, - [SMALL_STATE(1778)] = 50260, - [SMALL_STATE(1779)] = 50267, - [SMALL_STATE(1780)] = 50274, - [SMALL_STATE(1781)] = 50281, - [SMALL_STATE(1782)] = 50288, - [SMALL_STATE(1783)] = 50295, - [SMALL_STATE(1784)] = 50302, - [SMALL_STATE(1785)] = 50309, - [SMALL_STATE(1786)] = 50316, - [SMALL_STATE(1787)] = 50323, - [SMALL_STATE(1788)] = 50330, - [SMALL_STATE(1789)] = 50337, - [SMALL_STATE(1790)] = 50344, - [SMALL_STATE(1791)] = 50351, - [SMALL_STATE(1792)] = 50358, - [SMALL_STATE(1793)] = 50365, - [SMALL_STATE(1794)] = 50372, - [SMALL_STATE(1795)] = 50379, - [SMALL_STATE(1796)] = 50386, - [SMALL_STATE(1797)] = 50393, - [SMALL_STATE(1798)] = 50400, - [SMALL_STATE(1799)] = 50407, - [SMALL_STATE(1800)] = 50414, - [SMALL_STATE(1801)] = 50421, - [SMALL_STATE(1802)] = 50428, - [SMALL_STATE(1803)] = 50435, - [SMALL_STATE(1804)] = 50442, - [SMALL_STATE(1805)] = 50449, - [SMALL_STATE(1806)] = 50456, - [SMALL_STATE(1807)] = 50463, - [SMALL_STATE(1808)] = 50470, - [SMALL_STATE(1809)] = 50477, - [SMALL_STATE(1810)] = 50484, - [SMALL_STATE(1811)] = 50491, - [SMALL_STATE(1812)] = 50498, - [SMALL_STATE(1813)] = 50505, - [SMALL_STATE(1814)] = 50512, - [SMALL_STATE(1815)] = 50519, - [SMALL_STATE(1816)] = 50526, - [SMALL_STATE(1817)] = 50533, - [SMALL_STATE(1818)] = 50540, - [SMALL_STATE(1819)] = 50547, - [SMALL_STATE(1820)] = 50554, - [SMALL_STATE(1821)] = 50561, - [SMALL_STATE(1822)] = 50568, - [SMALL_STATE(1823)] = 50575, - [SMALL_STATE(1824)] = 50582, - [SMALL_STATE(1825)] = 50589, - [SMALL_STATE(1826)] = 50596, - [SMALL_STATE(1827)] = 50603, - [SMALL_STATE(1828)] = 50610, - [SMALL_STATE(1829)] = 50617, - [SMALL_STATE(1830)] = 50624, - [SMALL_STATE(1831)] = 50631, - [SMALL_STATE(1832)] = 50638, - [SMALL_STATE(1833)] = 50645, - [SMALL_STATE(1834)] = 50652, - [SMALL_STATE(1835)] = 50659, - [SMALL_STATE(1836)] = 50666, - [SMALL_STATE(1837)] = 50673, - [SMALL_STATE(1838)] = 50680, - [SMALL_STATE(1839)] = 50687, - [SMALL_STATE(1840)] = 50694, - [SMALL_STATE(1841)] = 50701, - [SMALL_STATE(1842)] = 50708, - [SMALL_STATE(1843)] = 50715, - [SMALL_STATE(1844)] = 50722, - [SMALL_STATE(1845)] = 50729, - [SMALL_STATE(1846)] = 50736, - [SMALL_STATE(1847)] = 50743, - [SMALL_STATE(1848)] = 50750, - [SMALL_STATE(1849)] = 50757, - [SMALL_STATE(1850)] = 50764, - [SMALL_STATE(1851)] = 50771, - [SMALL_STATE(1852)] = 50778, - [SMALL_STATE(1853)] = 50785, - [SMALL_STATE(1854)] = 50792, - [SMALL_STATE(1855)] = 50799, - [SMALL_STATE(1856)] = 50806, - [SMALL_STATE(1857)] = 50813, - [SMALL_STATE(1858)] = 50820, - [SMALL_STATE(1859)] = 50827, - [SMALL_STATE(1860)] = 50834, - [SMALL_STATE(1861)] = 50841, - [SMALL_STATE(1862)] = 50848, - [SMALL_STATE(1863)] = 50855, - [SMALL_STATE(1864)] = 50862, - [SMALL_STATE(1865)] = 50869, - [SMALL_STATE(1866)] = 50876, - [SMALL_STATE(1867)] = 50883, - [SMALL_STATE(1868)] = 50890, - [SMALL_STATE(1869)] = 50897, - [SMALL_STATE(1870)] = 50904, - [SMALL_STATE(1871)] = 50911, - [SMALL_STATE(1872)] = 50918, - [SMALL_STATE(1873)] = 50925, - [SMALL_STATE(1874)] = 50932, - [SMALL_STATE(1875)] = 50939, - [SMALL_STATE(1876)] = 50946, - [SMALL_STATE(1877)] = 50953, - [SMALL_STATE(1878)] = 50960, - [SMALL_STATE(1879)] = 50967, - [SMALL_STATE(1880)] = 50974, - [SMALL_STATE(1881)] = 50981, - [SMALL_STATE(1882)] = 50988, - [SMALL_STATE(1883)] = 50995, - [SMALL_STATE(1884)] = 51002, - [SMALL_STATE(1885)] = 51009, - [SMALL_STATE(1886)] = 51016, - [SMALL_STATE(1887)] = 51023, - [SMALL_STATE(1888)] = 51030, - [SMALL_STATE(1889)] = 51037, - [SMALL_STATE(1890)] = 51044, - [SMALL_STATE(1891)] = 51051, - [SMALL_STATE(1892)] = 51058, - [SMALL_STATE(1893)] = 51065, - [SMALL_STATE(1894)] = 51072, - [SMALL_STATE(1895)] = 51079, - [SMALL_STATE(1896)] = 51086, - [SMALL_STATE(1897)] = 51093, - [SMALL_STATE(1898)] = 51100, - [SMALL_STATE(1899)] = 51107, - [SMALL_STATE(1900)] = 51114, - [SMALL_STATE(1901)] = 51121, - [SMALL_STATE(1902)] = 51128, - [SMALL_STATE(1903)] = 51135, - [SMALL_STATE(1904)] = 51142, - [SMALL_STATE(1905)] = 51149, - [SMALL_STATE(1906)] = 51156, - [SMALL_STATE(1907)] = 51163, - [SMALL_STATE(1908)] = 51170, - [SMALL_STATE(1909)] = 51177, - [SMALL_STATE(1910)] = 51184, - [SMALL_STATE(1911)] = 51191, - [SMALL_STATE(1912)] = 51198, - [SMALL_STATE(1913)] = 51205, - [SMALL_STATE(1914)] = 51212, - [SMALL_STATE(1915)] = 51219, - [SMALL_STATE(1916)] = 51226, - [SMALL_STATE(1917)] = 51233, - [SMALL_STATE(1918)] = 51240, - [SMALL_STATE(1919)] = 51247, - [SMALL_STATE(1920)] = 51254, - [SMALL_STATE(1921)] = 51261, - [SMALL_STATE(1922)] = 51268, - [SMALL_STATE(1923)] = 51275, - [SMALL_STATE(1924)] = 51282, - [SMALL_STATE(1925)] = 51289, - [SMALL_STATE(1926)] = 51296, - [SMALL_STATE(1927)] = 51303, - [SMALL_STATE(1928)] = 51310, - [SMALL_STATE(1929)] = 51317, - [SMALL_STATE(1930)] = 51324, - [SMALL_STATE(1931)] = 51331, - [SMALL_STATE(1932)] = 51338, - [SMALL_STATE(1933)] = 51345, - [SMALL_STATE(1934)] = 51352, - [SMALL_STATE(1935)] = 51359, - [SMALL_STATE(1936)] = 51366, - [SMALL_STATE(1937)] = 51373, - [SMALL_STATE(1938)] = 51380, - [SMALL_STATE(1939)] = 51387, - [SMALL_STATE(1940)] = 51394, - [SMALL_STATE(1941)] = 51401, - [SMALL_STATE(1942)] = 51408, - [SMALL_STATE(1943)] = 51415, - [SMALL_STATE(1944)] = 51422, - [SMALL_STATE(1945)] = 51429, - [SMALL_STATE(1946)] = 51436, + [SMALL_STATE(78)] = 373, + [SMALL_STATE(79)] = 490, + [SMALL_STATE(80)] = 607, + [SMALL_STATE(81)] = 722, + [SMALL_STATE(82)] = 859, + [SMALL_STATE(83)] = 976, + [SMALL_STATE(84)] = 1093, + [SMALL_STATE(85)] = 1207, + [SMALL_STATE(86)] = 1321, + [SMALL_STATE(87)] = 1435, + [SMALL_STATE(88)] = 1571, + [SMALL_STATE(89)] = 1685, + [SMALL_STATE(90)] = 1799, + [SMALL_STATE(91)] = 1913, + [SMALL_STATE(92)] = 2044, + [SMALL_STATE(93)] = 2172, + [SMALL_STATE(94)] = 2300, + [SMALL_STATE(95)] = 2425, + [SMALL_STATE(96)] = 2548, + [SMALL_STATE(97)] = 2662, + [SMALL_STATE(98)] = 2782, + [SMALL_STATE(99)] = 2892, + [SMALL_STATE(100)] = 3003, + [SMALL_STATE(101)] = 3114, + [SMALL_STATE(102)] = 3225, + [SMALL_STATE(103)] = 3336, + [SMALL_STATE(104)] = 3446, + [SMALL_STATE(105)] = 3554, + [SMALL_STATE(106)] = 3661, + [SMALL_STATE(107)] = 3763, + [SMALL_STATE(108)] = 3865, + [SMALL_STATE(109)] = 3969, + [SMALL_STATE(110)] = 4073, + [SMALL_STATE(111)] = 4175, + [SMALL_STATE(112)] = 4278, + [SMALL_STATE(113)] = 4377, + [SMALL_STATE(114)] = 4476, + [SMALL_STATE(115)] = 4579, + [SMALL_STATE(116)] = 4682, + [SMALL_STATE(117)] = 4738, + [SMALL_STATE(118)] = 4794, + [SMALL_STATE(119)] = 4850, + [SMALL_STATE(120)] = 4906, + [SMALL_STATE(121)] = 4962, + [SMALL_STATE(122)] = 5018, + [SMALL_STATE(123)] = 5074, + [SMALL_STATE(124)] = 5130, + [SMALL_STATE(125)] = 5186, + [SMALL_STATE(126)] = 5242, + [SMALL_STATE(127)] = 5298, + [SMALL_STATE(128)] = 5354, + [SMALL_STATE(129)] = 5410, + [SMALL_STATE(130)] = 5466, + [SMALL_STATE(131)] = 5522, + [SMALL_STATE(132)] = 5578, + [SMALL_STATE(133)] = 5674, + [SMALL_STATE(134)] = 5730, + [SMALL_STATE(135)] = 5786, + [SMALL_STATE(136)] = 5842, + [SMALL_STATE(137)] = 5898, + [SMALL_STATE(138)] = 5954, + [SMALL_STATE(139)] = 6010, + [SMALL_STATE(140)] = 6066, + [SMALL_STATE(141)] = 6122, + [SMALL_STATE(142)] = 6178, + [SMALL_STATE(143)] = 6234, + [SMALL_STATE(144)] = 6290, + [SMALL_STATE(145)] = 6346, + [SMALL_STATE(146)] = 6402, + [SMALL_STATE(147)] = 6458, + [SMALL_STATE(148)] = 6514, + [SMALL_STATE(149)] = 6570, + [SMALL_STATE(150)] = 6668, + [SMALL_STATE(151)] = 6724, + [SMALL_STATE(152)] = 6780, + [SMALL_STATE(153)] = 6876, + [SMALL_STATE(154)] = 6972, + [SMALL_STATE(155)] = 7028, + [SMALL_STATE(156)] = 7084, + [SMALL_STATE(157)] = 7140, + [SMALL_STATE(158)] = 7196, + [SMALL_STATE(159)] = 7252, + [SMALL_STATE(160)] = 7308, + [SMALL_STATE(161)] = 7364, + [SMALL_STATE(162)] = 7420, + [SMALL_STATE(163)] = 7476, + [SMALL_STATE(164)] = 7572, + [SMALL_STATE(165)] = 7628, + [SMALL_STATE(166)] = 7724, + [SMALL_STATE(167)] = 7820, + [SMALL_STATE(168)] = 7916, + [SMALL_STATE(169)] = 7972, + [SMALL_STATE(170)] = 8068, + [SMALL_STATE(171)] = 8124, + [SMALL_STATE(172)] = 8180, + [SMALL_STATE(173)] = 8236, + [SMALL_STATE(174)] = 8292, + [SMALL_STATE(175)] = 8348, + [SMALL_STATE(176)] = 8404, + [SMALL_STATE(177)] = 8460, + [SMALL_STATE(178)] = 8516, + [SMALL_STATE(179)] = 8572, + [SMALL_STATE(180)] = 8668, + [SMALL_STATE(181)] = 8724, + [SMALL_STATE(182)] = 8780, + [SMALL_STATE(183)] = 8836, + [SMALL_STATE(184)] = 8892, + [SMALL_STATE(185)] = 8948, + [SMALL_STATE(186)] = 9004, + [SMALL_STATE(187)] = 9060, + [SMALL_STATE(188)] = 9156, + [SMALL_STATE(189)] = 9252, + [SMALL_STATE(190)] = 9308, + [SMALL_STATE(191)] = 9404, + [SMALL_STATE(192)] = 9497, + [SMALL_STATE(193)] = 9590, + [SMALL_STATE(194)] = 9683, + [SMALL_STATE(195)] = 9776, + [SMALL_STATE(196)] = 9869, + [SMALL_STATE(197)] = 9962, + [SMALL_STATE(198)] = 10055, + [SMALL_STATE(199)] = 10148, + [SMALL_STATE(200)] = 10241, + [SMALL_STATE(201)] = 10334, + [SMALL_STATE(202)] = 10427, + [SMALL_STATE(203)] = 10520, + [SMALL_STATE(204)] = 10613, + [SMALL_STATE(205)] = 10706, + [SMALL_STATE(206)] = 10799, + [SMALL_STATE(207)] = 10892, + [SMALL_STATE(208)] = 10985, + [SMALL_STATE(209)] = 11082, + [SMALL_STATE(210)] = 11175, + [SMALL_STATE(211)] = 11268, + [SMALL_STATE(212)] = 11361, + [SMALL_STATE(213)] = 11454, + [SMALL_STATE(214)] = 11547, + [SMALL_STATE(215)] = 11640, + [SMALL_STATE(216)] = 11733, + [SMALL_STATE(217)] = 11826, + [SMALL_STATE(218)] = 11919, + [SMALL_STATE(219)] = 12012, + [SMALL_STATE(220)] = 12105, + [SMALL_STATE(221)] = 12198, + [SMALL_STATE(222)] = 12291, + [SMALL_STATE(223)] = 12384, + [SMALL_STATE(224)] = 12477, + [SMALL_STATE(225)] = 12570, + [SMALL_STATE(226)] = 12663, + [SMALL_STATE(227)] = 12756, + [SMALL_STATE(228)] = 12849, + [SMALL_STATE(229)] = 12942, + [SMALL_STATE(230)] = 13035, + [SMALL_STATE(231)] = 13128, + [SMALL_STATE(232)] = 13221, + [SMALL_STATE(233)] = 13314, + [SMALL_STATE(234)] = 13407, + [SMALL_STATE(235)] = 13461, + [SMALL_STATE(236)] = 13515, + [SMALL_STATE(237)] = 13569, + [SMALL_STATE(238)] = 13663, + [SMALL_STATE(239)] = 13717, + [SMALL_STATE(240)] = 13811, + [SMALL_STATE(241)] = 13905, + [SMALL_STATE(242)] = 13959, + [SMALL_STATE(243)] = 14049, + [SMALL_STATE(244)] = 14103, + [SMALL_STATE(245)] = 14197, + [SMALL_STATE(246)] = 14291, + [SMALL_STATE(247)] = 14345, + [SMALL_STATE(248)] = 14399, + [SMALL_STATE(249)] = 14453, + [SMALL_STATE(250)] = 14507, + [SMALL_STATE(251)] = 14561, + [SMALL_STATE(252)] = 14615, + [SMALL_STATE(253)] = 14669, + [SMALL_STATE(254)] = 14723, + [SMALL_STATE(255)] = 14777, + [SMALL_STATE(256)] = 14867, + [SMALL_STATE(257)] = 14921, + [SMALL_STATE(258)] = 14975, + [SMALL_STATE(259)] = 15065, + [SMALL_STATE(260)] = 15119, + [SMALL_STATE(261)] = 15173, + [SMALL_STATE(262)] = 15227, + [SMALL_STATE(263)] = 15280, + [SMALL_STATE(264)] = 15347, + [SMALL_STATE(265)] = 15400, + [SMALL_STATE(266)] = 15489, + [SMALL_STATE(267)] = 15578, + [SMALL_STATE(268)] = 15631, + [SMALL_STATE(269)] = 15693, + [SMALL_STATE(270)] = 15779, + [SMALL_STATE(271)] = 15841, + [SMALL_STATE(272)] = 15892, + [SMALL_STATE(273)] = 15943, + [SMALL_STATE(274)] = 15994, + [SMALL_STATE(275)] = 16045, + [SMALL_STATE(276)] = 16104, + [SMALL_STATE(277)] = 16155, + [SMALL_STATE(278)] = 16206, + [SMALL_STATE(279)] = 16291, + [SMALL_STATE(280)] = 16376, + [SMALL_STATE(281)] = 16427, + [SMALL_STATE(282)] = 16478, + [SMALL_STATE(283)] = 16529, + [SMALL_STATE(284)] = 16579, + [SMALL_STATE(285)] = 16629, + [SMALL_STATE(286)] = 16711, + [SMALL_STATE(287)] = 16761, + [SMALL_STATE(288)] = 16811, + [SMALL_STATE(289)] = 16861, + [SMALL_STATE(290)] = 16911, + [SMALL_STATE(291)] = 16961, + [SMALL_STATE(292)] = 17011, + [SMALL_STATE(293)] = 17061, + [SMALL_STATE(294)] = 17111, + [SMALL_STATE(295)] = 17161, + [SMALL_STATE(296)] = 17211, + [SMALL_STATE(297)] = 17261, + [SMALL_STATE(298)] = 17311, + [SMALL_STATE(299)] = 17361, + [SMALL_STATE(300)] = 17411, + [SMALL_STATE(301)] = 17461, + [SMALL_STATE(302)] = 17511, + [SMALL_STATE(303)] = 17561, + [SMALL_STATE(304)] = 17611, + [SMALL_STATE(305)] = 17693, + [SMALL_STATE(306)] = 17743, + [SMALL_STATE(307)] = 17793, + [SMALL_STATE(308)] = 17843, + [SMALL_STATE(309)] = 17893, + [SMALL_STATE(310)] = 17943, + [SMALL_STATE(311)] = 17993, + [SMALL_STATE(312)] = 18043, + [SMALL_STATE(313)] = 18093, + [SMALL_STATE(314)] = 18143, + [SMALL_STATE(315)] = 18193, + [SMALL_STATE(316)] = 18243, + [SMALL_STATE(317)] = 18293, + [SMALL_STATE(318)] = 18375, + [SMALL_STATE(319)] = 18425, + [SMALL_STATE(320)] = 18507, + [SMALL_STATE(321)] = 18557, + [SMALL_STATE(322)] = 18639, + [SMALL_STATE(323)] = 18689, + [SMALL_STATE(324)] = 18739, + [SMALL_STATE(325)] = 18789, + [SMALL_STATE(326)] = 18839, + [SMALL_STATE(327)] = 18889, + [SMALL_STATE(328)] = 18939, + [SMALL_STATE(329)] = 18989, + [SMALL_STATE(330)] = 19039, + [SMALL_STATE(331)] = 19089, + [SMALL_STATE(332)] = 19139, + [SMALL_STATE(333)] = 19189, + [SMALL_STATE(334)] = 19239, + [SMALL_STATE(335)] = 19289, + [SMALL_STATE(336)] = 19339, + [SMALL_STATE(337)] = 19389, + [SMALL_STATE(338)] = 19439, + [SMALL_STATE(339)] = 19489, + [SMALL_STATE(340)] = 19571, + [SMALL_STATE(341)] = 19621, + [SMALL_STATE(342)] = 19671, + [SMALL_STATE(343)] = 19721, + [SMALL_STATE(344)] = 19771, + [SMALL_STATE(345)] = 19821, + [SMALL_STATE(346)] = 19871, + [SMALL_STATE(347)] = 19921, + [SMALL_STATE(348)] = 19971, + [SMALL_STATE(349)] = 20021, + [SMALL_STATE(350)] = 20071, + [SMALL_STATE(351)] = 20121, + [SMALL_STATE(352)] = 20171, + [SMALL_STATE(353)] = 20221, + [SMALL_STATE(354)] = 20271, + [SMALL_STATE(355)] = 20321, + [SMALL_STATE(356)] = 20371, + [SMALL_STATE(357)] = 20421, + [SMALL_STATE(358)] = 20471, + [SMALL_STATE(359)] = 20521, + [SMALL_STATE(360)] = 20571, + [SMALL_STATE(361)] = 20621, + [SMALL_STATE(362)] = 20671, + [SMALL_STATE(363)] = 20721, + [SMALL_STATE(364)] = 20771, + [SMALL_STATE(365)] = 20821, + [SMALL_STATE(366)] = 20871, + [SMALL_STATE(367)] = 20921, + [SMALL_STATE(368)] = 20971, + [SMALL_STATE(369)] = 21021, + [SMALL_STATE(370)] = 21071, + [SMALL_STATE(371)] = 21121, + [SMALL_STATE(372)] = 21171, + [SMALL_STATE(373)] = 21221, + [SMALL_STATE(374)] = 21271, + [SMALL_STATE(375)] = 21321, + [SMALL_STATE(376)] = 21371, + [SMALL_STATE(377)] = 21421, + [SMALL_STATE(378)] = 21471, + [SMALL_STATE(379)] = 21521, + [SMALL_STATE(380)] = 21571, + [SMALL_STATE(381)] = 21621, + [SMALL_STATE(382)] = 21671, + [SMALL_STATE(383)] = 21721, + [SMALL_STATE(384)] = 21771, + [SMALL_STATE(385)] = 21821, + [SMALL_STATE(386)] = 21871, + [SMALL_STATE(387)] = 21921, + [SMALL_STATE(388)] = 21971, + [SMALL_STATE(389)] = 22021, + [SMALL_STATE(390)] = 22071, + [SMALL_STATE(391)] = 22121, + [SMALL_STATE(392)] = 22171, + [SMALL_STATE(393)] = 22253, + [SMALL_STATE(394)] = 22303, + [SMALL_STATE(395)] = 22353, + [SMALL_STATE(396)] = 22403, + [SMALL_STATE(397)] = 22453, + [SMALL_STATE(398)] = 22503, + [SMALL_STATE(399)] = 22553, + [SMALL_STATE(400)] = 22603, + [SMALL_STATE(401)] = 22653, + [SMALL_STATE(402)] = 22703, + [SMALL_STATE(403)] = 22753, + [SMALL_STATE(404)] = 22803, + [SMALL_STATE(405)] = 22853, + [SMALL_STATE(406)] = 22903, + [SMALL_STATE(407)] = 22953, + [SMALL_STATE(408)] = 23003, + [SMALL_STATE(409)] = 23053, + [SMALL_STATE(410)] = 23103, + [SMALL_STATE(411)] = 23153, + [SMALL_STATE(412)] = 23203, + [SMALL_STATE(413)] = 23253, + [SMALL_STATE(414)] = 23303, + [SMALL_STATE(415)] = 23353, + [SMALL_STATE(416)] = 23403, + [SMALL_STATE(417)] = 23453, + [SMALL_STATE(418)] = 23503, + [SMALL_STATE(419)] = 23553, + [SMALL_STATE(420)] = 23603, + [SMALL_STATE(421)] = 23653, + [SMALL_STATE(422)] = 23703, + [SMALL_STATE(423)] = 23753, + [SMALL_STATE(424)] = 23803, + [SMALL_STATE(425)] = 23853, + [SMALL_STATE(426)] = 23903, + [SMALL_STATE(427)] = 23953, + [SMALL_STATE(428)] = 24003, + [SMALL_STATE(429)] = 24053, + [SMALL_STATE(430)] = 24103, + [SMALL_STATE(431)] = 24153, + [SMALL_STATE(432)] = 24203, + [SMALL_STATE(433)] = 24253, + [SMALL_STATE(434)] = 24303, + [SMALL_STATE(435)] = 24353, + [SMALL_STATE(436)] = 24403, + [SMALL_STATE(437)] = 24453, + [SMALL_STATE(438)] = 24503, + [SMALL_STATE(439)] = 24553, + [SMALL_STATE(440)] = 24603, + [SMALL_STATE(441)] = 24653, + [SMALL_STATE(442)] = 24703, + [SMALL_STATE(443)] = 24753, + [SMALL_STATE(444)] = 24803, + [SMALL_STATE(445)] = 24853, + [SMALL_STATE(446)] = 24903, + [SMALL_STATE(447)] = 24953, + [SMALL_STATE(448)] = 25003, + [SMALL_STATE(449)] = 25085, + [SMALL_STATE(450)] = 25135, + [SMALL_STATE(451)] = 25185, + [SMALL_STATE(452)] = 25267, + [SMALL_STATE(453)] = 25317, + [SMALL_STATE(454)] = 25367, + [SMALL_STATE(455)] = 25417, + [SMALL_STATE(456)] = 25467, + [SMALL_STATE(457)] = 25517, + [SMALL_STATE(458)] = 25567, + [SMALL_STATE(459)] = 25617, + [SMALL_STATE(460)] = 25667, + [SMALL_STATE(461)] = 25717, + [SMALL_STATE(462)] = 25767, + [SMALL_STATE(463)] = 25817, + [SMALL_STATE(464)] = 25867, + [SMALL_STATE(465)] = 25917, + [SMALL_STATE(466)] = 25967, + [SMALL_STATE(467)] = 26017, + [SMALL_STATE(468)] = 26067, + [SMALL_STATE(469)] = 26117, + [SMALL_STATE(470)] = 26167, + [SMALL_STATE(471)] = 26217, + [SMALL_STATE(472)] = 26299, + [SMALL_STATE(473)] = 26349, + [SMALL_STATE(474)] = 26399, + [SMALL_STATE(475)] = 26449, + [SMALL_STATE(476)] = 26499, + [SMALL_STATE(477)] = 26581, + [SMALL_STATE(478)] = 26631, + [SMALL_STATE(479)] = 26681, + [SMALL_STATE(480)] = 26731, + [SMALL_STATE(481)] = 26780, + [SMALL_STATE(482)] = 26829, + [SMALL_STATE(483)] = 26878, + [SMALL_STATE(484)] = 26927, + [SMALL_STATE(485)] = 26976, + [SMALL_STATE(486)] = 27025, + [SMALL_STATE(487)] = 27082, + [SMALL_STATE(488)] = 27131, + [SMALL_STATE(489)] = 27187, + [SMALL_STATE(490)] = 27243, + [SMALL_STATE(491)] = 27299, + [SMALL_STATE(492)] = 27346, + [SMALL_STATE(493)] = 27393, + [SMALL_STATE(494)] = 27456, + [SMALL_STATE(495)] = 27503, + [SMALL_STATE(496)] = 27550, + [SMALL_STATE(497)] = 27597, + [SMALL_STATE(498)] = 27646, + [SMALL_STATE(499)] = 27693, + [SMALL_STATE(500)] = 27740, + [SMALL_STATE(501)] = 27787, + [SMALL_STATE(502)] = 27851, + [SMALL_STATE(503)] = 27897, + [SMALL_STATE(504)] = 27943, + [SMALL_STATE(505)] = 28013, + [SMALL_STATE(506)] = 28077, + [SMALL_STATE(507)] = 28123, + [SMALL_STATE(508)] = 28207, + [SMALL_STATE(509)] = 28277, + [SMALL_STATE(510)] = 28323, + [SMALL_STATE(511)] = 28402, + [SMALL_STATE(512)] = 28469, + [SMALL_STATE(513)] = 28521, + [SMALL_STATE(514)] = 28573, + [SMALL_STATE(515)] = 28625, + [SMALL_STATE(516)] = 28677, + [SMALL_STATE(517)] = 28729, + [SMALL_STATE(518)] = 28810, + [SMALL_STATE(519)] = 28891, + [SMALL_STATE(520)] = 28946, + [SMALL_STATE(521)] = 28988, + [SMALL_STATE(522)] = 29033, + [SMALL_STATE(523)] = 29088, + [SMALL_STATE(524)] = 29143, + [SMALL_STATE(525)] = 29198, + [SMALL_STATE(526)] = 29253, + [SMALL_STATE(527)] = 29292, + [SMALL_STATE(528)] = 29343, + [SMALL_STATE(529)] = 29393, + [SMALL_STATE(530)] = 29435, + [SMALL_STATE(531)] = 29504, + [SMALL_STATE(532)] = 29549, + [SMALL_STATE(533)] = 29591, + [SMALL_STATE(534)] = 29637, + [SMALL_STATE(535)] = 29678, + [SMALL_STATE(536)] = 29718, + [SMALL_STATE(537)] = 29774, + [SMALL_STATE(538)] = 29810, + [SMALL_STATE(539)] = 29866, + [SMALL_STATE(540)] = 29922, + [SMALL_STATE(541)] = 29978, + [SMALL_STATE(542)] = 30030, + [SMALL_STATE(543)] = 30086, + [SMALL_STATE(544)] = 30143, + [SMALL_STATE(545)] = 30200, + [SMALL_STATE(546)] = 30257, + [SMALL_STATE(547)] = 30314, + [SMALL_STATE(548)] = 30351, + [SMALL_STATE(549)] = 30408, + [SMALL_STATE(550)] = 30462, + [SMALL_STATE(551)] = 30516, + [SMALL_STATE(552)] = 30570, + [SMALL_STATE(553)] = 30624, + [SMALL_STATE(554)] = 30678, + [SMALL_STATE(555)] = 30710, + [SMALL_STATE(556)] = 30744, + [SMALL_STATE(557)] = 30788, + [SMALL_STATE(558)] = 30828, + [SMALL_STATE(559)] = 30882, + [SMALL_STATE(560)] = 30931, + [SMALL_STATE(561)] = 30982, + [SMALL_STATE(562)] = 31031, + [SMALL_STATE(563)] = 31082, + [SMALL_STATE(564)] = 31133, + [SMALL_STATE(565)] = 31190, + [SMALL_STATE(566)] = 31219, + [SMALL_STATE(567)] = 31260, + [SMALL_STATE(568)] = 31311, + [SMALL_STATE(569)] = 31362, + [SMALL_STATE(570)] = 31413, + [SMALL_STATE(571)] = 31442, + [SMALL_STATE(572)] = 31471, + [SMALL_STATE(573)] = 31525, + [SMALL_STATE(574)] = 31579, + [SMALL_STATE(575)] = 31633, + [SMALL_STATE(576)] = 31664, + [SMALL_STATE(577)] = 31695, + [SMALL_STATE(578)] = 31738, + [SMALL_STATE(579)] = 31769, + [SMALL_STATE(580)] = 31812, + [SMALL_STATE(581)] = 31863, + [SMALL_STATE(582)] = 31914, + [SMALL_STATE(583)] = 31965, + [SMALL_STATE(584)] = 32012, + [SMALL_STATE(585)] = 32041, + [SMALL_STATE(586)] = 32091, + [SMALL_STATE(587)] = 32131, + [SMALL_STATE(588)] = 32179, + [SMALL_STATE(589)] = 32227, + [SMALL_STATE(590)] = 32253, + [SMALL_STATE(591)] = 32303, + [SMALL_STATE(592)] = 32351, + [SMALL_STATE(593)] = 32377, + [SMALL_STATE(594)] = 32403, + [SMALL_STATE(595)] = 32429, + [SMALL_STATE(596)] = 32477, + [SMALL_STATE(597)] = 32527, + [SMALL_STATE(598)] = 32553, + [SMALL_STATE(599)] = 32582, + [SMALL_STATE(600)] = 32627, + [SMALL_STATE(601)] = 32672, + [SMALL_STATE(602)] = 32717, + [SMALL_STATE(603)] = 32746, + [SMALL_STATE(604)] = 32775, + [SMALL_STATE(605)] = 32812, + [SMALL_STATE(606)] = 32841, + [SMALL_STATE(607)] = 32884, + [SMALL_STATE(608)] = 32913, + [SMALL_STATE(609)] = 32942, + [SMALL_STATE(610)] = 32966, + [SMALL_STATE(611)] = 32990, + [SMALL_STATE(612)] = 33030, + [SMALL_STATE(613)] = 33070, + [SMALL_STATE(614)] = 33112, + [SMALL_STATE(615)] = 33136, + [SMALL_STATE(616)] = 33176, + [SMALL_STATE(617)] = 33218, + [SMALL_STATE(618)] = 33242, + [SMALL_STATE(619)] = 33276, + [SMALL_STATE(620)] = 33320, + [SMALL_STATE(621)] = 33362, + [SMALL_STATE(622)] = 33396, + [SMALL_STATE(623)] = 33420, + [SMALL_STATE(624)] = 33459, + [SMALL_STATE(625)] = 33498, + [SMALL_STATE(626)] = 33525, + [SMALL_STATE(627)] = 33564, + [SMALL_STATE(628)] = 33601, + [SMALL_STATE(629)] = 33628, + [SMALL_STATE(630)] = 33667, + [SMALL_STATE(631)] = 33706, + [SMALL_STATE(632)] = 33745, + [SMALL_STATE(633)] = 33784, + [SMALL_STATE(634)] = 33822, + [SMALL_STATE(635)] = 33860, + [SMALL_STATE(636)] = 33894, + [SMALL_STATE(637)] = 33928, + [SMALL_STATE(638)] = 33966, + [SMALL_STATE(639)] = 34002, + [SMALL_STATE(640)] = 34040, + [SMALL_STATE(641)] = 34078, + [SMALL_STATE(642)] = 34114, + [SMALL_STATE(643)] = 34150, + [SMALL_STATE(644)] = 34188, + [SMALL_STATE(645)] = 34222, + [SMALL_STATE(646)] = 34262, + [SMALL_STATE(647)] = 34300, + [SMALL_STATE(648)] = 34338, + [SMALL_STATE(649)] = 34372, + [SMALL_STATE(650)] = 34410, + [SMALL_STATE(651)] = 34448, + [SMALL_STATE(652)] = 34486, + [SMALL_STATE(653)] = 34519, + [SMALL_STATE(654)] = 34552, + [SMALL_STATE(655)] = 34573, + [SMALL_STATE(656)] = 34608, + [SMALL_STATE(657)] = 34643, + [SMALL_STATE(658)] = 34678, + [SMALL_STATE(659)] = 34711, + [SMALL_STATE(660)] = 34746, + [SMALL_STATE(661)] = 34767, + [SMALL_STATE(662)] = 34802, + [SMALL_STATE(663)] = 34837, + [SMALL_STATE(664)] = 34868, + [SMALL_STATE(665)] = 34901, + [SMALL_STATE(666)] = 34936, + [SMALL_STATE(667)] = 34969, + [SMALL_STATE(668)] = 34990, + [SMALL_STATE(669)] = 35023, + [SMALL_STATE(670)] = 35044, + [SMALL_STATE(671)] = 35065, + [SMALL_STATE(672)] = 35086, + [SMALL_STATE(673)] = 35107, + [SMALL_STATE(674)] = 35142, + [SMALL_STATE(675)] = 35170, + [SMALL_STATE(676)] = 35198, + [SMALL_STATE(677)] = 35226, + [SMALL_STATE(678)] = 35254, + [SMALL_STATE(679)] = 35282, + [SMALL_STATE(680)] = 35310, + [SMALL_STATE(681)] = 35338, + [SMALL_STATE(682)] = 35370, + [SMALL_STATE(683)] = 35398, + [SMALL_STATE(684)] = 35426, + [SMALL_STATE(685)] = 35458, + [SMALL_STATE(686)] = 35486, + [SMALL_STATE(687)] = 35514, + [SMALL_STATE(688)] = 35542, + [SMALL_STATE(689)] = 35570, + [SMALL_STATE(690)] = 35600, + [SMALL_STATE(691)] = 35632, + [SMALL_STATE(692)] = 35662, + [SMALL_STATE(693)] = 35690, + [SMALL_STATE(694)] = 35718, + [SMALL_STATE(695)] = 35746, + [SMALL_STATE(696)] = 35778, + [SMALL_STATE(697)] = 35806, + [SMALL_STATE(698)] = 35838, + [SMALL_STATE(699)] = 35866, + [SMALL_STATE(700)] = 35894, + [SMALL_STATE(701)] = 35922, + [SMALL_STATE(702)] = 35950, + [SMALL_STATE(703)] = 35978, + [SMALL_STATE(704)] = 36010, + [SMALL_STATE(705)] = 36038, + [SMALL_STATE(706)] = 36066, + [SMALL_STATE(707)] = 36094, + [SMALL_STATE(708)] = 36126, + [SMALL_STATE(709)] = 36156, + [SMALL_STATE(710)] = 36184, + [SMALL_STATE(711)] = 36212, + [SMALL_STATE(712)] = 36244, + [SMALL_STATE(713)] = 36272, + [SMALL_STATE(714)] = 36300, + [SMALL_STATE(715)] = 36328, + [SMALL_STATE(716)] = 36356, + [SMALL_STATE(717)] = 36384, + [SMALL_STATE(718)] = 36412, + [SMALL_STATE(719)] = 36442, + [SMALL_STATE(720)] = 36472, + [SMALL_STATE(721)] = 36500, + [SMALL_STATE(722)] = 36528, + [SMALL_STATE(723)] = 36556, + [SMALL_STATE(724)] = 36584, + [SMALL_STATE(725)] = 36612, + [SMALL_STATE(726)] = 36640, + [SMALL_STATE(727)] = 36668, + [SMALL_STATE(728)] = 36696, + [SMALL_STATE(729)] = 36726, + [SMALL_STATE(730)] = 36754, + [SMALL_STATE(731)] = 36782, + [SMALL_STATE(732)] = 36810, + [SMALL_STATE(733)] = 36838, + [SMALL_STATE(734)] = 36866, + [SMALL_STATE(735)] = 36894, + [SMALL_STATE(736)] = 36922, + [SMALL_STATE(737)] = 36952, + [SMALL_STATE(738)] = 36980, + [SMALL_STATE(739)] = 37008, + [SMALL_STATE(740)] = 37036, + [SMALL_STATE(741)] = 37064, + [SMALL_STATE(742)] = 37092, + [SMALL_STATE(743)] = 37122, + [SMALL_STATE(744)] = 37150, + [SMALL_STATE(745)] = 37178, + [SMALL_STATE(746)] = 37208, + [SMALL_STATE(747)] = 37236, + [SMALL_STATE(748)] = 37264, + [SMALL_STATE(749)] = 37294, + [SMALL_STATE(750)] = 37319, + [SMALL_STATE(751)] = 37344, + [SMALL_STATE(752)] = 37367, + [SMALL_STATE(753)] = 37392, + [SMALL_STATE(754)] = 37417, + [SMALL_STATE(755)] = 37442, + [SMALL_STATE(756)] = 37467, + [SMALL_STATE(757)] = 37492, + [SMALL_STATE(758)] = 37517, + [SMALL_STATE(759)] = 37542, + [SMALL_STATE(760)] = 37567, + [SMALL_STATE(761)] = 37588, + [SMALL_STATE(762)] = 37613, + [SMALL_STATE(763)] = 37638, + [SMALL_STATE(764)] = 37663, + [SMALL_STATE(765)] = 37688, + [SMALL_STATE(766)] = 37713, + [SMALL_STATE(767)] = 37738, + [SMALL_STATE(768)] = 37763, + [SMALL_STATE(769)] = 37788, + [SMALL_STATE(770)] = 37813, + [SMALL_STATE(771)] = 37838, + [SMALL_STATE(772)] = 37863, + [SMALL_STATE(773)] = 37888, + [SMALL_STATE(774)] = 37913, + [SMALL_STATE(775)] = 37938, + [SMALL_STATE(776)] = 37963, + [SMALL_STATE(777)] = 37988, + [SMALL_STATE(778)] = 38013, + [SMALL_STATE(779)] = 38038, + [SMALL_STATE(780)] = 38063, + [SMALL_STATE(781)] = 38090, + [SMALL_STATE(782)] = 38115, + [SMALL_STATE(783)] = 38140, + [SMALL_STATE(784)] = 38163, + [SMALL_STATE(785)] = 38188, + [SMALL_STATE(786)] = 38213, + [SMALL_STATE(787)] = 38238, + [SMALL_STATE(788)] = 38263, + [SMALL_STATE(789)] = 38288, + [SMALL_STATE(790)] = 38313, + [SMALL_STATE(791)] = 38338, + [SMALL_STATE(792)] = 38363, + [SMALL_STATE(793)] = 38388, + [SMALL_STATE(794)] = 38413, + [SMALL_STATE(795)] = 38440, + [SMALL_STATE(796)] = 38465, + [SMALL_STATE(797)] = 38500, + [SMALL_STATE(798)] = 38525, + [SMALL_STATE(799)] = 38550, + [SMALL_STATE(800)] = 38573, + [SMALL_STATE(801)] = 38602, + [SMALL_STATE(802)] = 38627, + [SMALL_STATE(803)] = 38652, + [SMALL_STATE(804)] = 38677, + [SMALL_STATE(805)] = 38700, + [SMALL_STATE(806)] = 38727, + [SMALL_STATE(807)] = 38752, + [SMALL_STATE(808)] = 38777, + [SMALL_STATE(809)] = 38802, + [SMALL_STATE(810)] = 38827, + [SMALL_STATE(811)] = 38849, + [SMALL_STATE(812)] = 38871, + [SMALL_STATE(813)] = 38891, + [SMALL_STATE(814)] = 38911, + [SMALL_STATE(815)] = 38929, + [SMALL_STATE(816)] = 38951, + [SMALL_STATE(817)] = 38970, + [SMALL_STATE(818)] = 38999, + [SMALL_STATE(819)] = 39018, + [SMALL_STATE(820)] = 39047, + [SMALL_STATE(821)] = 39066, + [SMALL_STATE(822)] = 39085, + [SMALL_STATE(823)] = 39114, + [SMALL_STATE(824)] = 39133, + [SMALL_STATE(825)] = 39152, + [SMALL_STATE(826)] = 39181, + [SMALL_STATE(827)] = 39210, + [SMALL_STATE(828)] = 39226, + [SMALL_STATE(829)] = 39258, + [SMALL_STATE(830)] = 39290, + [SMALL_STATE(831)] = 39322, + [SMALL_STATE(832)] = 39338, + [SMALL_STATE(833)] = 39354, + [SMALL_STATE(834)] = 39370, + [SMALL_STATE(835)] = 39402, + [SMALL_STATE(836)] = 39418, + [SMALL_STATE(837)] = 39436, + [SMALL_STATE(838)] = 39463, + [SMALL_STATE(839)] = 39488, + [SMALL_STATE(840)] = 39519, + [SMALL_STATE(841)] = 39550, + [SMALL_STATE(842)] = 39577, + [SMALL_STATE(843)] = 39604, + [SMALL_STATE(844)] = 39631, + [SMALL_STATE(845)] = 39658, + [SMALL_STATE(846)] = 39685, + [SMALL_STATE(847)] = 39712, + [SMALL_STATE(848)] = 39741, + [SMALL_STATE(849)] = 39768, + [SMALL_STATE(850)] = 39797, + [SMALL_STATE(851)] = 39824, + [SMALL_STATE(852)] = 39855, + [SMALL_STATE(853)] = 39871, + [SMALL_STATE(854)] = 39887, + [SMALL_STATE(855)] = 39913, + [SMALL_STATE(856)] = 39929, + [SMALL_STATE(857)] = 39945, + [SMALL_STATE(858)] = 39961, + [SMALL_STATE(859)] = 39977, + [SMALL_STATE(860)] = 39993, + [SMALL_STATE(861)] = 40009, + [SMALL_STATE(862)] = 40025, + [SMALL_STATE(863)] = 40041, + [SMALL_STATE(864)] = 40057, + [SMALL_STATE(865)] = 40073, + [SMALL_STATE(866)] = 40089, + [SMALL_STATE(867)] = 40115, + [SMALL_STATE(868)] = 40139, + [SMALL_STATE(869)] = 40155, + [SMALL_STATE(870)] = 40181, + [SMALL_STATE(871)] = 40197, + [SMALL_STATE(872)] = 40213, + [SMALL_STATE(873)] = 40241, + [SMALL_STATE(874)] = 40257, + [SMALL_STATE(875)] = 40273, + [SMALL_STATE(876)] = 40289, + [SMALL_STATE(877)] = 40305, + [SMALL_STATE(878)] = 40321, + [SMALL_STATE(879)] = 40337, + [SMALL_STATE(880)] = 40353, + [SMALL_STATE(881)] = 40369, + [SMALL_STATE(882)] = 40391, + [SMALL_STATE(883)] = 40407, + [SMALL_STATE(884)] = 40433, + [SMALL_STATE(885)] = 40449, + [SMALL_STATE(886)] = 40465, + [SMALL_STATE(887)] = 40481, + [SMALL_STATE(888)] = 40497, + [SMALL_STATE(889)] = 40513, + [SMALL_STATE(890)] = 40529, + [SMALL_STATE(891)] = 40545, + [SMALL_STATE(892)] = 40561, + [SMALL_STATE(893)] = 40577, + [SMALL_STATE(894)] = 40593, + [SMALL_STATE(895)] = 40615, + [SMALL_STATE(896)] = 40641, + [SMALL_STATE(897)] = 40667, + [SMALL_STATE(898)] = 40683, + [SMALL_STATE(899)] = 40699, + [SMALL_STATE(900)] = 40715, + [SMALL_STATE(901)] = 40738, + [SMALL_STATE(902)] = 40759, + [SMALL_STATE(903)] = 40784, + [SMALL_STATE(904)] = 40809, + [SMALL_STATE(905)] = 40834, + [SMALL_STATE(906)] = 40859, + [SMALL_STATE(907)] = 40880, + [SMALL_STATE(908)] = 40905, + [SMALL_STATE(909)] = 40930, + [SMALL_STATE(910)] = 40955, + [SMALL_STATE(911)] = 40980, + [SMALL_STATE(912)] = 41005, + [SMALL_STATE(913)] = 41030, + [SMALL_STATE(914)] = 41055, + [SMALL_STATE(915)] = 41080, + [SMALL_STATE(916)] = 41105, + [SMALL_STATE(917)] = 41126, + [SMALL_STATE(918)] = 41151, + [SMALL_STATE(919)] = 41176, + [SMALL_STATE(920)] = 41189, + [SMALL_STATE(921)] = 41214, + [SMALL_STATE(922)] = 41227, + [SMALL_STATE(923)] = 41252, + [SMALL_STATE(924)] = 41265, + [SMALL_STATE(925)] = 41290, + [SMALL_STATE(926)] = 41303, + [SMALL_STATE(927)] = 41316, + [SMALL_STATE(928)] = 41341, + [SMALL_STATE(929)] = 41366, + [SMALL_STATE(930)] = 41391, + [SMALL_STATE(931)] = 41412, + [SMALL_STATE(932)] = 41427, + [SMALL_STATE(933)] = 41449, + [SMALL_STATE(934)] = 41471, + [SMALL_STATE(935)] = 41487, + [SMALL_STATE(936)] = 41501, + [SMALL_STATE(937)] = 41515, + [SMALL_STATE(938)] = 41527, + [SMALL_STATE(939)] = 41549, + [SMALL_STATE(940)] = 41563, + [SMALL_STATE(941)] = 41585, + [SMALL_STATE(942)] = 41603, + [SMALL_STATE(943)] = 41615, + [SMALL_STATE(944)] = 41631, + [SMALL_STATE(945)] = 41653, + [SMALL_STATE(946)] = 41667, + [SMALL_STATE(947)] = 41689, + [SMALL_STATE(948)] = 41711, + [SMALL_STATE(949)] = 41725, + [SMALL_STATE(950)] = 41747, + [SMALL_STATE(951)] = 41765, + [SMALL_STATE(952)] = 41785, + [SMALL_STATE(953)] = 41801, + [SMALL_STATE(954)] = 41821, + [SMALL_STATE(955)] = 41841, + [SMALL_STATE(956)] = 41859, + [SMALL_STATE(957)] = 41881, + [SMALL_STATE(958)] = 41897, + [SMALL_STATE(959)] = 41919, + [SMALL_STATE(960)] = 41933, + [SMALL_STATE(961)] = 41955, + [SMALL_STATE(962)] = 41973, + [SMALL_STATE(963)] = 41987, + [SMALL_STATE(964)] = 42005, + [SMALL_STATE(965)] = 42025, + [SMALL_STATE(966)] = 42045, + [SMALL_STATE(967)] = 42067, + [SMALL_STATE(968)] = 42087, + [SMALL_STATE(969)] = 42107, + [SMALL_STATE(970)] = 42126, + [SMALL_STATE(971)] = 42145, + [SMALL_STATE(972)] = 42164, + [SMALL_STATE(973)] = 42183, + [SMALL_STATE(974)] = 42202, + [SMALL_STATE(975)] = 42221, + [SMALL_STATE(976)] = 42240, + [SMALL_STATE(977)] = 42259, + [SMALL_STATE(978)] = 42278, + [SMALL_STATE(979)] = 42297, + [SMALL_STATE(980)] = 42316, + [SMALL_STATE(981)] = 42327, + [SMALL_STATE(982)] = 42342, + [SMALL_STATE(983)] = 42361, + [SMALL_STATE(984)] = 42380, + [SMALL_STATE(985)] = 42399, + [SMALL_STATE(986)] = 42418, + [SMALL_STATE(987)] = 42437, + [SMALL_STATE(988)] = 42456, + [SMALL_STATE(989)] = 42475, + [SMALL_STATE(990)] = 42494, + [SMALL_STATE(991)] = 42509, + [SMALL_STATE(992)] = 42526, + [SMALL_STATE(993)] = 42545, + [SMALL_STATE(994)] = 42564, + [SMALL_STATE(995)] = 42579, + [SMALL_STATE(996)] = 42596, + [SMALL_STATE(997)] = 42615, + [SMALL_STATE(998)] = 42634, + [SMALL_STATE(999)] = 42653, + [SMALL_STATE(1000)] = 42672, + [SMALL_STATE(1001)] = 42687, + [SMALL_STATE(1002)] = 42698, + [SMALL_STATE(1003)] = 42717, + [SMALL_STATE(1004)] = 42736, + [SMALL_STATE(1005)] = 42753, + [SMALL_STATE(1006)] = 42772, + [SMALL_STATE(1007)] = 42785, + [SMALL_STATE(1008)] = 42802, + [SMALL_STATE(1009)] = 42819, + [SMALL_STATE(1010)] = 42838, + [SMALL_STATE(1011)] = 42857, + [SMALL_STATE(1012)] = 42872, + [SMALL_STATE(1013)] = 42883, + [SMALL_STATE(1014)] = 42900, + [SMALL_STATE(1015)] = 42919, + [SMALL_STATE(1016)] = 42938, + [SMALL_STATE(1017)] = 42957, + [SMALL_STATE(1018)] = 42976, + [SMALL_STATE(1019)] = 42995, + [SMALL_STATE(1020)] = 43014, + [SMALL_STATE(1021)] = 43029, + [SMALL_STATE(1022)] = 43048, + [SMALL_STATE(1023)] = 43067, + [SMALL_STATE(1024)] = 43086, + [SMALL_STATE(1025)] = 43105, + [SMALL_STATE(1026)] = 43124, + [SMALL_STATE(1027)] = 43139, + [SMALL_STATE(1028)] = 43156, + [SMALL_STATE(1029)] = 43173, + [SMALL_STATE(1030)] = 43188, + [SMALL_STATE(1031)] = 43207, + [SMALL_STATE(1032)] = 43220, + [SMALL_STATE(1033)] = 43239, + [SMALL_STATE(1034)] = 43258, + [SMALL_STATE(1035)] = 43277, + [SMALL_STATE(1036)] = 43296, + [SMALL_STATE(1037)] = 43315, + [SMALL_STATE(1038)] = 43330, + [SMALL_STATE(1039)] = 43349, + [SMALL_STATE(1040)] = 43368, + [SMALL_STATE(1041)] = 43387, + [SMALL_STATE(1042)] = 43406, + [SMALL_STATE(1043)] = 43425, + [SMALL_STATE(1044)] = 43442, + [SMALL_STATE(1045)] = 43461, + [SMALL_STATE(1046)] = 43476, + [SMALL_STATE(1047)] = 43495, + [SMALL_STATE(1048)] = 43514, + [SMALL_STATE(1049)] = 43525, + [SMALL_STATE(1050)] = 43536, + [SMALL_STATE(1051)] = 43555, + [SMALL_STATE(1052)] = 43572, + [SMALL_STATE(1053)] = 43583, + [SMALL_STATE(1054)] = 43598, + [SMALL_STATE(1055)] = 43611, + [SMALL_STATE(1056)] = 43630, + [SMALL_STATE(1057)] = 43649, + [SMALL_STATE(1058)] = 43668, + [SMALL_STATE(1059)] = 43678, + [SMALL_STATE(1060)] = 43688, + [SMALL_STATE(1061)] = 43698, + [SMALL_STATE(1062)] = 43712, + [SMALL_STATE(1063)] = 43724, + [SMALL_STATE(1064)] = 43738, + [SMALL_STATE(1065)] = 43754, + [SMALL_STATE(1066)] = 43768, + [SMALL_STATE(1067)] = 43782, + [SMALL_STATE(1068)] = 43798, + [SMALL_STATE(1069)] = 43812, + [SMALL_STATE(1070)] = 43828, + [SMALL_STATE(1071)] = 43844, + [SMALL_STATE(1072)] = 43860, + [SMALL_STATE(1073)] = 43872, + [SMALL_STATE(1074)] = 43888, + [SMALL_STATE(1075)] = 43904, + [SMALL_STATE(1076)] = 43914, + [SMALL_STATE(1077)] = 43924, + [SMALL_STATE(1078)] = 43938, + [SMALL_STATE(1079)] = 43954, + [SMALL_STATE(1080)] = 43968, + [SMALL_STATE(1081)] = 43984, + [SMALL_STATE(1082)] = 44000, + [SMALL_STATE(1083)] = 44016, + [SMALL_STATE(1084)] = 44032, + [SMALL_STATE(1085)] = 44042, + [SMALL_STATE(1086)] = 44058, + [SMALL_STATE(1087)] = 44072, + [SMALL_STATE(1088)] = 44088, + [SMALL_STATE(1089)] = 44102, + [SMALL_STATE(1090)] = 44118, + [SMALL_STATE(1091)] = 44132, + [SMALL_STATE(1092)] = 44148, + [SMALL_STATE(1093)] = 44162, + [SMALL_STATE(1094)] = 44174, + [SMALL_STATE(1095)] = 44188, + [SMALL_STATE(1096)] = 44204, + [SMALL_STATE(1097)] = 44218, + [SMALL_STATE(1098)] = 44234, + [SMALL_STATE(1099)] = 44250, + [SMALL_STATE(1100)] = 44266, + [SMALL_STATE(1101)] = 44282, + [SMALL_STATE(1102)] = 44296, + [SMALL_STATE(1103)] = 44312, + [SMALL_STATE(1104)] = 44324, + [SMALL_STATE(1105)] = 44340, + [SMALL_STATE(1106)] = 44352, + [SMALL_STATE(1107)] = 44368, + [SMALL_STATE(1108)] = 44382, + [SMALL_STATE(1109)] = 44398, + [SMALL_STATE(1110)] = 44412, + [SMALL_STATE(1111)] = 44426, + [SMALL_STATE(1112)] = 44436, + [SMALL_STATE(1113)] = 44446, + [SMALL_STATE(1114)] = 44460, + [SMALL_STATE(1115)] = 44476, + [SMALL_STATE(1116)] = 44492, + [SMALL_STATE(1117)] = 44508, + [SMALL_STATE(1118)] = 44524, + [SMALL_STATE(1119)] = 44540, + [SMALL_STATE(1120)] = 44556, + [SMALL_STATE(1121)] = 44570, + [SMALL_STATE(1122)] = 44582, + [SMALL_STATE(1123)] = 44596, + [SMALL_STATE(1124)] = 44610, + [SMALL_STATE(1125)] = 44622, + [SMALL_STATE(1126)] = 44636, + [SMALL_STATE(1127)] = 44650, + [SMALL_STATE(1128)] = 44664, + [SMALL_STATE(1129)] = 44674, + [SMALL_STATE(1130)] = 44684, + [SMALL_STATE(1131)] = 44698, + [SMALL_STATE(1132)] = 44708, + [SMALL_STATE(1133)] = 44720, + [SMALL_STATE(1134)] = 44736, + [SMALL_STATE(1135)] = 44752, + [SMALL_STATE(1136)] = 44766, + [SMALL_STATE(1137)] = 44782, + [SMALL_STATE(1138)] = 44798, + [SMALL_STATE(1139)] = 44812, + [SMALL_STATE(1140)] = 44824, + [SMALL_STATE(1141)] = 44840, + [SMALL_STATE(1142)] = 44856, + [SMALL_STATE(1143)] = 44872, + [SMALL_STATE(1144)] = 44888, + [SMALL_STATE(1145)] = 44904, + [SMALL_STATE(1146)] = 44920, + [SMALL_STATE(1147)] = 44936, + [SMALL_STATE(1148)] = 44950, + [SMALL_STATE(1149)] = 44966, + [SMALL_STATE(1150)] = 44978, + [SMALL_STATE(1151)] = 44987, + [SMALL_STATE(1152)] = 44996, + [SMALL_STATE(1153)] = 45009, + [SMALL_STATE(1154)] = 45022, + [SMALL_STATE(1155)] = 45031, + [SMALL_STATE(1156)] = 45044, + [SMALL_STATE(1157)] = 45053, + [SMALL_STATE(1158)] = 45066, + [SMALL_STATE(1159)] = 45079, + [SMALL_STATE(1160)] = 45092, + [SMALL_STATE(1161)] = 45103, + [SMALL_STATE(1162)] = 45114, + [SMALL_STATE(1163)] = 45127, + [SMALL_STATE(1164)] = 45136, + [SMALL_STATE(1165)] = 45149, + [SMALL_STATE(1166)] = 45162, + [SMALL_STATE(1167)] = 45175, + [SMALL_STATE(1168)] = 45188, + [SMALL_STATE(1169)] = 45197, + [SMALL_STATE(1170)] = 45210, + [SMALL_STATE(1171)] = 45223, + [SMALL_STATE(1172)] = 45232, + [SMALL_STATE(1173)] = 45245, + [SMALL_STATE(1174)] = 45258, + [SMALL_STATE(1175)] = 45271, + [SMALL_STATE(1176)] = 45284, + [SMALL_STATE(1177)] = 45297, + [SMALL_STATE(1178)] = 45306, + [SMALL_STATE(1179)] = 45319, + [SMALL_STATE(1180)] = 45332, + [SMALL_STATE(1181)] = 45345, + [SMALL_STATE(1182)] = 45358, + [SMALL_STATE(1183)] = 45371, + [SMALL_STATE(1184)] = 45384, + [SMALL_STATE(1185)] = 45397, + [SMALL_STATE(1186)] = 45410, + [SMALL_STATE(1187)] = 45423, + [SMALL_STATE(1188)] = 45436, + [SMALL_STATE(1189)] = 45449, + [SMALL_STATE(1190)] = 45462, + [SMALL_STATE(1191)] = 45475, + [SMALL_STATE(1192)] = 45488, + [SMALL_STATE(1193)] = 45501, + [SMALL_STATE(1194)] = 45514, + [SMALL_STATE(1195)] = 45523, + [SMALL_STATE(1196)] = 45532, + [SMALL_STATE(1197)] = 45545, + [SMALL_STATE(1198)] = 45554, + [SMALL_STATE(1199)] = 45567, + [SMALL_STATE(1200)] = 45580, + [SMALL_STATE(1201)] = 45589, + [SMALL_STATE(1202)] = 45598, + [SMALL_STATE(1203)] = 45611, + [SMALL_STATE(1204)] = 45624, + [SMALL_STATE(1205)] = 45637, + [SMALL_STATE(1206)] = 45650, + [SMALL_STATE(1207)] = 45663, + [SMALL_STATE(1208)] = 45672, + [SMALL_STATE(1209)] = 45685, + [SMALL_STATE(1210)] = 45698, + [SMALL_STATE(1211)] = 45711, + [SMALL_STATE(1212)] = 45724, + [SMALL_STATE(1213)] = 45737, + [SMALL_STATE(1214)] = 45750, + [SMALL_STATE(1215)] = 45763, + [SMALL_STATE(1216)] = 45776, + [SMALL_STATE(1217)] = 45789, + [SMALL_STATE(1218)] = 45798, + [SMALL_STATE(1219)] = 45811, + [SMALL_STATE(1220)] = 45824, + [SMALL_STATE(1221)] = 45837, + [SMALL_STATE(1222)] = 45846, + [SMALL_STATE(1223)] = 45859, + [SMALL_STATE(1224)] = 45872, + [SMALL_STATE(1225)] = 45881, + [SMALL_STATE(1226)] = 45894, + [SMALL_STATE(1227)] = 45907, + [SMALL_STATE(1228)] = 45920, + [SMALL_STATE(1229)] = 45933, + [SMALL_STATE(1230)] = 45946, + [SMALL_STATE(1231)] = 45959, + [SMALL_STATE(1232)] = 45972, + [SMALL_STATE(1233)] = 45985, + [SMALL_STATE(1234)] = 45998, + [SMALL_STATE(1235)] = 46007, + [SMALL_STATE(1236)] = 46020, + [SMALL_STATE(1237)] = 46033, + [SMALL_STATE(1238)] = 46046, + [SMALL_STATE(1239)] = 46059, + [SMALL_STATE(1240)] = 46070, + [SMALL_STATE(1241)] = 46083, + [SMALL_STATE(1242)] = 46094, + [SMALL_STATE(1243)] = 46107, + [SMALL_STATE(1244)] = 46120, + [SMALL_STATE(1245)] = 46133, + [SMALL_STATE(1246)] = 46142, + [SMALL_STATE(1247)] = 46151, + [SMALL_STATE(1248)] = 46164, + [SMALL_STATE(1249)] = 46173, + [SMALL_STATE(1250)] = 46182, + [SMALL_STATE(1251)] = 46191, + [SMALL_STATE(1252)] = 46204, + [SMALL_STATE(1253)] = 46217, + [SMALL_STATE(1254)] = 46226, + [SMALL_STATE(1255)] = 46237, + [SMALL_STATE(1256)] = 46250, + [SMALL_STATE(1257)] = 46259, + [SMALL_STATE(1258)] = 46268, + [SMALL_STATE(1259)] = 46281, + [SMALL_STATE(1260)] = 46292, + [SMALL_STATE(1261)] = 46305, + [SMALL_STATE(1262)] = 46314, + [SMALL_STATE(1263)] = 46327, + [SMALL_STATE(1264)] = 46340, + [SMALL_STATE(1265)] = 46349, + [SMALL_STATE(1266)] = 46362, + [SMALL_STATE(1267)] = 46375, + [SMALL_STATE(1268)] = 46388, + [SMALL_STATE(1269)] = 46401, + [SMALL_STATE(1270)] = 46414, + [SMALL_STATE(1271)] = 46427, + [SMALL_STATE(1272)] = 46440, + [SMALL_STATE(1273)] = 46453, + [SMALL_STATE(1274)] = 46466, + [SMALL_STATE(1275)] = 46479, + [SMALL_STATE(1276)] = 46492, + [SMALL_STATE(1277)] = 46501, + [SMALL_STATE(1278)] = 46510, + [SMALL_STATE(1279)] = 46519, + [SMALL_STATE(1280)] = 46528, + [SMALL_STATE(1281)] = 46537, + [SMALL_STATE(1282)] = 46550, + [SMALL_STATE(1283)] = 46563, + [SMALL_STATE(1284)] = 46576, + [SMALL_STATE(1285)] = 46585, + [SMALL_STATE(1286)] = 46594, + [SMALL_STATE(1287)] = 46607, + [SMALL_STATE(1288)] = 46620, + [SMALL_STATE(1289)] = 46629, + [SMALL_STATE(1290)] = 46640, + [SMALL_STATE(1291)] = 46653, + [SMALL_STATE(1292)] = 46662, + [SMALL_STATE(1293)] = 46675, + [SMALL_STATE(1294)] = 46684, + [SMALL_STATE(1295)] = 46693, + [SMALL_STATE(1296)] = 46706, + [SMALL_STATE(1297)] = 46715, + [SMALL_STATE(1298)] = 46728, + [SMALL_STATE(1299)] = 46739, + [SMALL_STATE(1300)] = 46752, + [SMALL_STATE(1301)] = 46763, + [SMALL_STATE(1302)] = 46776, + [SMALL_STATE(1303)] = 46785, + [SMALL_STATE(1304)] = 46794, + [SMALL_STATE(1305)] = 46807, + [SMALL_STATE(1306)] = 46820, + [SMALL_STATE(1307)] = 46833, + [SMALL_STATE(1308)] = 46846, + [SMALL_STATE(1309)] = 46859, + [SMALL_STATE(1310)] = 46868, + [SMALL_STATE(1311)] = 46881, + [SMALL_STATE(1312)] = 46892, + [SMALL_STATE(1313)] = 46905, + [SMALL_STATE(1314)] = 46918, + [SMALL_STATE(1315)] = 46927, + [SMALL_STATE(1316)] = 46940, + [SMALL_STATE(1317)] = 46949, + [SMALL_STATE(1318)] = 46962, + [SMALL_STATE(1319)] = 46975, + [SMALL_STATE(1320)] = 46988, + [SMALL_STATE(1321)] = 47001, + [SMALL_STATE(1322)] = 47014, + [SMALL_STATE(1323)] = 47027, + [SMALL_STATE(1324)] = 47040, + [SMALL_STATE(1325)] = 47049, + [SMALL_STATE(1326)] = 47058, + [SMALL_STATE(1327)] = 47067, + [SMALL_STATE(1328)] = 47080, + [SMALL_STATE(1329)] = 47089, + [SMALL_STATE(1330)] = 47098, + [SMALL_STATE(1331)] = 47111, + [SMALL_STATE(1332)] = 47124, + [SMALL_STATE(1333)] = 47133, + [SMALL_STATE(1334)] = 47146, + [SMALL_STATE(1335)] = 47159, + [SMALL_STATE(1336)] = 47168, + [SMALL_STATE(1337)] = 47177, + [SMALL_STATE(1338)] = 47190, + [SMALL_STATE(1339)] = 47203, + [SMALL_STATE(1340)] = 47216, + [SMALL_STATE(1341)] = 47229, + [SMALL_STATE(1342)] = 47238, + [SMALL_STATE(1343)] = 47251, + [SMALL_STATE(1344)] = 47264, + [SMALL_STATE(1345)] = 47277, + [SMALL_STATE(1346)] = 47290, + [SMALL_STATE(1347)] = 47303, + [SMALL_STATE(1348)] = 47312, + [SMALL_STATE(1349)] = 47321, + [SMALL_STATE(1350)] = 47331, + [SMALL_STATE(1351)] = 47339, + [SMALL_STATE(1352)] = 47347, + [SMALL_STATE(1353)] = 47355, + [SMALL_STATE(1354)] = 47363, + [SMALL_STATE(1355)] = 47371, + [SMALL_STATE(1356)] = 47381, + [SMALL_STATE(1357)] = 47391, + [SMALL_STATE(1358)] = 47401, + [SMALL_STATE(1359)] = 47411, + [SMALL_STATE(1360)] = 47419, + [SMALL_STATE(1361)] = 47429, + [SMALL_STATE(1362)] = 47437, + [SMALL_STATE(1363)] = 47447, + [SMALL_STATE(1364)] = 47457, + [SMALL_STATE(1365)] = 47467, + [SMALL_STATE(1366)] = 47475, + [SMALL_STATE(1367)] = 47483, + [SMALL_STATE(1368)] = 47493, + [SMALL_STATE(1369)] = 47501, + [SMALL_STATE(1370)] = 47511, + [SMALL_STATE(1371)] = 47519, + [SMALL_STATE(1372)] = 47527, + [SMALL_STATE(1373)] = 47537, + [SMALL_STATE(1374)] = 47547, + [SMALL_STATE(1375)] = 47555, + [SMALL_STATE(1376)] = 47563, + [SMALL_STATE(1377)] = 47571, + [SMALL_STATE(1378)] = 47579, + [SMALL_STATE(1379)] = 47589, + [SMALL_STATE(1380)] = 47597, + [SMALL_STATE(1381)] = 47605, + [SMALL_STATE(1382)] = 47615, + [SMALL_STATE(1383)] = 47623, + [SMALL_STATE(1384)] = 47633, + [SMALL_STATE(1385)] = 47643, + [SMALL_STATE(1386)] = 47651, + [SMALL_STATE(1387)] = 47661, + [SMALL_STATE(1388)] = 47671, + [SMALL_STATE(1389)] = 47681, + [SMALL_STATE(1390)] = 47689, + [SMALL_STATE(1391)] = 47699, + [SMALL_STATE(1392)] = 47707, + [SMALL_STATE(1393)] = 47715, + [SMALL_STATE(1394)] = 47725, + [SMALL_STATE(1395)] = 47733, + [SMALL_STATE(1396)] = 47743, + [SMALL_STATE(1397)] = 47753, + [SMALL_STATE(1398)] = 47761, + [SMALL_STATE(1399)] = 47771, + [SMALL_STATE(1400)] = 47779, + [SMALL_STATE(1401)] = 47789, + [SMALL_STATE(1402)] = 47797, + [SMALL_STATE(1403)] = 47805, + [SMALL_STATE(1404)] = 47813, + [SMALL_STATE(1405)] = 47821, + [SMALL_STATE(1406)] = 47829, + [SMALL_STATE(1407)] = 47837, + [SMALL_STATE(1408)] = 47847, + [SMALL_STATE(1409)] = 47855, + [SMALL_STATE(1410)] = 47863, + [SMALL_STATE(1411)] = 47871, + [SMALL_STATE(1412)] = 47879, + [SMALL_STATE(1413)] = 47889, + [SMALL_STATE(1414)] = 47899, + [SMALL_STATE(1415)] = 47907, + [SMALL_STATE(1416)] = 47915, + [SMALL_STATE(1417)] = 47923, + [SMALL_STATE(1418)] = 47933, + [SMALL_STATE(1419)] = 47943, + [SMALL_STATE(1420)] = 47953, + [SMALL_STATE(1421)] = 47963, + [SMALL_STATE(1422)] = 47973, + [SMALL_STATE(1423)] = 47981, + [SMALL_STATE(1424)] = 47991, + [SMALL_STATE(1425)] = 47999, + [SMALL_STATE(1426)] = 48009, + [SMALL_STATE(1427)] = 48017, + [SMALL_STATE(1428)] = 48027, + [SMALL_STATE(1429)] = 48035, + [SMALL_STATE(1430)] = 48043, + [SMALL_STATE(1431)] = 48051, + [SMALL_STATE(1432)] = 48061, + [SMALL_STATE(1433)] = 48071, + [SMALL_STATE(1434)] = 48081, + [SMALL_STATE(1435)] = 48089, + [SMALL_STATE(1436)] = 48099, + [SMALL_STATE(1437)] = 48109, + [SMALL_STATE(1438)] = 48117, + [SMALL_STATE(1439)] = 48127, + [SMALL_STATE(1440)] = 48137, + [SMALL_STATE(1441)] = 48147, + [SMALL_STATE(1442)] = 48155, + [SMALL_STATE(1443)] = 48163, + [SMALL_STATE(1444)] = 48173, + [SMALL_STATE(1445)] = 48181, + [SMALL_STATE(1446)] = 48191, + [SMALL_STATE(1447)] = 48199, + [SMALL_STATE(1448)] = 48207, + [SMALL_STATE(1449)] = 48215, + [SMALL_STATE(1450)] = 48225, + [SMALL_STATE(1451)] = 48235, + [SMALL_STATE(1452)] = 48245, + [SMALL_STATE(1453)] = 48253, + [SMALL_STATE(1454)] = 48261, + [SMALL_STATE(1455)] = 48269, + [SMALL_STATE(1456)] = 48277, + [SMALL_STATE(1457)] = 48287, + [SMALL_STATE(1458)] = 48295, + [SMALL_STATE(1459)] = 48305, + [SMALL_STATE(1460)] = 48315, + [SMALL_STATE(1461)] = 48325, + [SMALL_STATE(1462)] = 48333, + [SMALL_STATE(1463)] = 48341, + [SMALL_STATE(1464)] = 48351, + [SMALL_STATE(1465)] = 48359, + [SMALL_STATE(1466)] = 48367, + [SMALL_STATE(1467)] = 48375, + [SMALL_STATE(1468)] = 48385, + [SMALL_STATE(1469)] = 48395, + [SMALL_STATE(1470)] = 48403, + [SMALL_STATE(1471)] = 48411, + [SMALL_STATE(1472)] = 48419, + [SMALL_STATE(1473)] = 48429, + [SMALL_STATE(1474)] = 48437, + [SMALL_STATE(1475)] = 48447, + [SMALL_STATE(1476)] = 48455, + [SMALL_STATE(1477)] = 48465, + [SMALL_STATE(1478)] = 48475, + [SMALL_STATE(1479)] = 48483, + [SMALL_STATE(1480)] = 48493, + [SMALL_STATE(1481)] = 48501, + [SMALL_STATE(1482)] = 48511, + [SMALL_STATE(1483)] = 48519, + [SMALL_STATE(1484)] = 48529, + [SMALL_STATE(1485)] = 48537, + [SMALL_STATE(1486)] = 48545, + [SMALL_STATE(1487)] = 48553, + [SMALL_STATE(1488)] = 48563, + [SMALL_STATE(1489)] = 48571, + [SMALL_STATE(1490)] = 48579, + [SMALL_STATE(1491)] = 48589, + [SMALL_STATE(1492)] = 48599, + [SMALL_STATE(1493)] = 48607, + [SMALL_STATE(1494)] = 48617, + [SMALL_STATE(1495)] = 48627, + [SMALL_STATE(1496)] = 48637, + [SMALL_STATE(1497)] = 48647, + [SMALL_STATE(1498)] = 48657, + [SMALL_STATE(1499)] = 48665, + [SMALL_STATE(1500)] = 48675, + [SMALL_STATE(1501)] = 48685, + [SMALL_STATE(1502)] = 48695, + [SMALL_STATE(1503)] = 48705, + [SMALL_STATE(1504)] = 48715, + [SMALL_STATE(1505)] = 48723, + [SMALL_STATE(1506)] = 48731, + [SMALL_STATE(1507)] = 48738, + [SMALL_STATE(1508)] = 48745, + [SMALL_STATE(1509)] = 48752, + [SMALL_STATE(1510)] = 48759, + [SMALL_STATE(1511)] = 48766, + [SMALL_STATE(1512)] = 48773, + [SMALL_STATE(1513)] = 48780, + [SMALL_STATE(1514)] = 48787, + [SMALL_STATE(1515)] = 48794, + [SMALL_STATE(1516)] = 48801, + [SMALL_STATE(1517)] = 48808, + [SMALL_STATE(1518)] = 48815, + [SMALL_STATE(1519)] = 48822, + [SMALL_STATE(1520)] = 48829, + [SMALL_STATE(1521)] = 48836, + [SMALL_STATE(1522)] = 48843, + [SMALL_STATE(1523)] = 48850, + [SMALL_STATE(1524)] = 48857, + [SMALL_STATE(1525)] = 48864, + [SMALL_STATE(1526)] = 48871, + [SMALL_STATE(1527)] = 48878, + [SMALL_STATE(1528)] = 48885, + [SMALL_STATE(1529)] = 48892, + [SMALL_STATE(1530)] = 48899, + [SMALL_STATE(1531)] = 48906, + [SMALL_STATE(1532)] = 48913, + [SMALL_STATE(1533)] = 48920, + [SMALL_STATE(1534)] = 48927, + [SMALL_STATE(1535)] = 48934, + [SMALL_STATE(1536)] = 48941, + [SMALL_STATE(1537)] = 48948, + [SMALL_STATE(1538)] = 48955, + [SMALL_STATE(1539)] = 48962, + [SMALL_STATE(1540)] = 48969, + [SMALL_STATE(1541)] = 48976, + [SMALL_STATE(1542)] = 48983, + [SMALL_STATE(1543)] = 48990, + [SMALL_STATE(1544)] = 48997, + [SMALL_STATE(1545)] = 49004, + [SMALL_STATE(1546)] = 49011, + [SMALL_STATE(1547)] = 49018, + [SMALL_STATE(1548)] = 49025, + [SMALL_STATE(1549)] = 49032, + [SMALL_STATE(1550)] = 49039, + [SMALL_STATE(1551)] = 49046, + [SMALL_STATE(1552)] = 49053, + [SMALL_STATE(1553)] = 49060, + [SMALL_STATE(1554)] = 49067, + [SMALL_STATE(1555)] = 49074, + [SMALL_STATE(1556)] = 49081, + [SMALL_STATE(1557)] = 49088, + [SMALL_STATE(1558)] = 49095, + [SMALL_STATE(1559)] = 49102, + [SMALL_STATE(1560)] = 49109, + [SMALL_STATE(1561)] = 49116, + [SMALL_STATE(1562)] = 49123, + [SMALL_STATE(1563)] = 49130, + [SMALL_STATE(1564)] = 49137, + [SMALL_STATE(1565)] = 49144, + [SMALL_STATE(1566)] = 49151, + [SMALL_STATE(1567)] = 49158, + [SMALL_STATE(1568)] = 49165, + [SMALL_STATE(1569)] = 49172, + [SMALL_STATE(1570)] = 49179, + [SMALL_STATE(1571)] = 49186, + [SMALL_STATE(1572)] = 49193, + [SMALL_STATE(1573)] = 49200, + [SMALL_STATE(1574)] = 49207, + [SMALL_STATE(1575)] = 49214, + [SMALL_STATE(1576)] = 49221, + [SMALL_STATE(1577)] = 49228, + [SMALL_STATE(1578)] = 49235, + [SMALL_STATE(1579)] = 49242, + [SMALL_STATE(1580)] = 49249, + [SMALL_STATE(1581)] = 49256, + [SMALL_STATE(1582)] = 49263, + [SMALL_STATE(1583)] = 49270, + [SMALL_STATE(1584)] = 49277, + [SMALL_STATE(1585)] = 49284, + [SMALL_STATE(1586)] = 49291, + [SMALL_STATE(1587)] = 49298, + [SMALL_STATE(1588)] = 49305, + [SMALL_STATE(1589)] = 49312, + [SMALL_STATE(1590)] = 49319, + [SMALL_STATE(1591)] = 49326, + [SMALL_STATE(1592)] = 49333, + [SMALL_STATE(1593)] = 49340, + [SMALL_STATE(1594)] = 49347, + [SMALL_STATE(1595)] = 49354, + [SMALL_STATE(1596)] = 49361, + [SMALL_STATE(1597)] = 49368, + [SMALL_STATE(1598)] = 49375, + [SMALL_STATE(1599)] = 49382, + [SMALL_STATE(1600)] = 49389, + [SMALL_STATE(1601)] = 49396, + [SMALL_STATE(1602)] = 49403, + [SMALL_STATE(1603)] = 49410, + [SMALL_STATE(1604)] = 49417, + [SMALL_STATE(1605)] = 49424, + [SMALL_STATE(1606)] = 49431, + [SMALL_STATE(1607)] = 49438, + [SMALL_STATE(1608)] = 49445, + [SMALL_STATE(1609)] = 49452, + [SMALL_STATE(1610)] = 49459, + [SMALL_STATE(1611)] = 49466, + [SMALL_STATE(1612)] = 49473, + [SMALL_STATE(1613)] = 49480, + [SMALL_STATE(1614)] = 49487, + [SMALL_STATE(1615)] = 49494, + [SMALL_STATE(1616)] = 49501, + [SMALL_STATE(1617)] = 49508, + [SMALL_STATE(1618)] = 49515, + [SMALL_STATE(1619)] = 49522, + [SMALL_STATE(1620)] = 49529, + [SMALL_STATE(1621)] = 49536, + [SMALL_STATE(1622)] = 49543, + [SMALL_STATE(1623)] = 49550, + [SMALL_STATE(1624)] = 49557, + [SMALL_STATE(1625)] = 49564, + [SMALL_STATE(1626)] = 49571, + [SMALL_STATE(1627)] = 49578, + [SMALL_STATE(1628)] = 49585, + [SMALL_STATE(1629)] = 49592, + [SMALL_STATE(1630)] = 49599, + [SMALL_STATE(1631)] = 49606, + [SMALL_STATE(1632)] = 49613, + [SMALL_STATE(1633)] = 49620, + [SMALL_STATE(1634)] = 49627, + [SMALL_STATE(1635)] = 49634, + [SMALL_STATE(1636)] = 49641, + [SMALL_STATE(1637)] = 49648, + [SMALL_STATE(1638)] = 49655, + [SMALL_STATE(1639)] = 49662, + [SMALL_STATE(1640)] = 49669, + [SMALL_STATE(1641)] = 49676, + [SMALL_STATE(1642)] = 49683, + [SMALL_STATE(1643)] = 49690, + [SMALL_STATE(1644)] = 49697, + [SMALL_STATE(1645)] = 49704, + [SMALL_STATE(1646)] = 49711, + [SMALL_STATE(1647)] = 49718, + [SMALL_STATE(1648)] = 49725, + [SMALL_STATE(1649)] = 49732, + [SMALL_STATE(1650)] = 49739, + [SMALL_STATE(1651)] = 49746, + [SMALL_STATE(1652)] = 49753, + [SMALL_STATE(1653)] = 49760, + [SMALL_STATE(1654)] = 49767, + [SMALL_STATE(1655)] = 49774, + [SMALL_STATE(1656)] = 49781, + [SMALL_STATE(1657)] = 49788, + [SMALL_STATE(1658)] = 49795, + [SMALL_STATE(1659)] = 49802, + [SMALL_STATE(1660)] = 49809, + [SMALL_STATE(1661)] = 49816, + [SMALL_STATE(1662)] = 49823, + [SMALL_STATE(1663)] = 49830, + [SMALL_STATE(1664)] = 49837, + [SMALL_STATE(1665)] = 49844, + [SMALL_STATE(1666)] = 49851, + [SMALL_STATE(1667)] = 49858, + [SMALL_STATE(1668)] = 49865, + [SMALL_STATE(1669)] = 49872, + [SMALL_STATE(1670)] = 49879, + [SMALL_STATE(1671)] = 49886, + [SMALL_STATE(1672)] = 49893, + [SMALL_STATE(1673)] = 49900, + [SMALL_STATE(1674)] = 49907, + [SMALL_STATE(1675)] = 49914, + [SMALL_STATE(1676)] = 49921, + [SMALL_STATE(1677)] = 49928, + [SMALL_STATE(1678)] = 49935, + [SMALL_STATE(1679)] = 49942, + [SMALL_STATE(1680)] = 49949, + [SMALL_STATE(1681)] = 49956, + [SMALL_STATE(1682)] = 49963, + [SMALL_STATE(1683)] = 49970, + [SMALL_STATE(1684)] = 49977, + [SMALL_STATE(1685)] = 49984, + [SMALL_STATE(1686)] = 49991, + [SMALL_STATE(1687)] = 49998, + [SMALL_STATE(1688)] = 50005, + [SMALL_STATE(1689)] = 50012, + [SMALL_STATE(1690)] = 50019, + [SMALL_STATE(1691)] = 50026, + [SMALL_STATE(1692)] = 50033, + [SMALL_STATE(1693)] = 50040, + [SMALL_STATE(1694)] = 50047, + [SMALL_STATE(1695)] = 50054, + [SMALL_STATE(1696)] = 50061, + [SMALL_STATE(1697)] = 50068, + [SMALL_STATE(1698)] = 50075, + [SMALL_STATE(1699)] = 50082, + [SMALL_STATE(1700)] = 50089, + [SMALL_STATE(1701)] = 50096, + [SMALL_STATE(1702)] = 50103, + [SMALL_STATE(1703)] = 50110, + [SMALL_STATE(1704)] = 50117, + [SMALL_STATE(1705)] = 50124, + [SMALL_STATE(1706)] = 50131, + [SMALL_STATE(1707)] = 50138, + [SMALL_STATE(1708)] = 50145, + [SMALL_STATE(1709)] = 50152, + [SMALL_STATE(1710)] = 50159, + [SMALL_STATE(1711)] = 50166, + [SMALL_STATE(1712)] = 50173, + [SMALL_STATE(1713)] = 50180, + [SMALL_STATE(1714)] = 50187, + [SMALL_STATE(1715)] = 50194, + [SMALL_STATE(1716)] = 50201, + [SMALL_STATE(1717)] = 50208, + [SMALL_STATE(1718)] = 50215, + [SMALL_STATE(1719)] = 50222, + [SMALL_STATE(1720)] = 50229, + [SMALL_STATE(1721)] = 50236, + [SMALL_STATE(1722)] = 50243, + [SMALL_STATE(1723)] = 50250, + [SMALL_STATE(1724)] = 50257, + [SMALL_STATE(1725)] = 50264, + [SMALL_STATE(1726)] = 50271, + [SMALL_STATE(1727)] = 50278, + [SMALL_STATE(1728)] = 50285, + [SMALL_STATE(1729)] = 50292, + [SMALL_STATE(1730)] = 50299, + [SMALL_STATE(1731)] = 50306, + [SMALL_STATE(1732)] = 50313, + [SMALL_STATE(1733)] = 50320, + [SMALL_STATE(1734)] = 50327, + [SMALL_STATE(1735)] = 50334, + [SMALL_STATE(1736)] = 50341, + [SMALL_STATE(1737)] = 50348, + [SMALL_STATE(1738)] = 50355, + [SMALL_STATE(1739)] = 50362, + [SMALL_STATE(1740)] = 50369, + [SMALL_STATE(1741)] = 50376, + [SMALL_STATE(1742)] = 50383, + [SMALL_STATE(1743)] = 50390, + [SMALL_STATE(1744)] = 50397, + [SMALL_STATE(1745)] = 50404, + [SMALL_STATE(1746)] = 50411, + [SMALL_STATE(1747)] = 50418, + [SMALL_STATE(1748)] = 50425, + [SMALL_STATE(1749)] = 50432, + [SMALL_STATE(1750)] = 50439, + [SMALL_STATE(1751)] = 50446, + [SMALL_STATE(1752)] = 50453, + [SMALL_STATE(1753)] = 50460, + [SMALL_STATE(1754)] = 50467, + [SMALL_STATE(1755)] = 50474, + [SMALL_STATE(1756)] = 50481, + [SMALL_STATE(1757)] = 50488, + [SMALL_STATE(1758)] = 50495, + [SMALL_STATE(1759)] = 50502, + [SMALL_STATE(1760)] = 50509, + [SMALL_STATE(1761)] = 50516, + [SMALL_STATE(1762)] = 50523, + [SMALL_STATE(1763)] = 50530, + [SMALL_STATE(1764)] = 50537, + [SMALL_STATE(1765)] = 50544, + [SMALL_STATE(1766)] = 50551, + [SMALL_STATE(1767)] = 50558, + [SMALL_STATE(1768)] = 50565, + [SMALL_STATE(1769)] = 50572, + [SMALL_STATE(1770)] = 50579, + [SMALL_STATE(1771)] = 50586, + [SMALL_STATE(1772)] = 50593, + [SMALL_STATE(1773)] = 50600, + [SMALL_STATE(1774)] = 50607, + [SMALL_STATE(1775)] = 50614, + [SMALL_STATE(1776)] = 50621, + [SMALL_STATE(1777)] = 50628, + [SMALL_STATE(1778)] = 50635, + [SMALL_STATE(1779)] = 50642, + [SMALL_STATE(1780)] = 50649, + [SMALL_STATE(1781)] = 50656, + [SMALL_STATE(1782)] = 50663, + [SMALL_STATE(1783)] = 50670, + [SMALL_STATE(1784)] = 50677, + [SMALL_STATE(1785)] = 50684, + [SMALL_STATE(1786)] = 50691, + [SMALL_STATE(1787)] = 50698, + [SMALL_STATE(1788)] = 50705, + [SMALL_STATE(1789)] = 50712, + [SMALL_STATE(1790)] = 50719, + [SMALL_STATE(1791)] = 50726, + [SMALL_STATE(1792)] = 50733, + [SMALL_STATE(1793)] = 50740, + [SMALL_STATE(1794)] = 50747, + [SMALL_STATE(1795)] = 50754, + [SMALL_STATE(1796)] = 50761, + [SMALL_STATE(1797)] = 50768, + [SMALL_STATE(1798)] = 50775, + [SMALL_STATE(1799)] = 50782, + [SMALL_STATE(1800)] = 50789, + [SMALL_STATE(1801)] = 50796, + [SMALL_STATE(1802)] = 50803, + [SMALL_STATE(1803)] = 50810, + [SMALL_STATE(1804)] = 50817, + [SMALL_STATE(1805)] = 50824, + [SMALL_STATE(1806)] = 50831, + [SMALL_STATE(1807)] = 50838, + [SMALL_STATE(1808)] = 50845, + [SMALL_STATE(1809)] = 50852, + [SMALL_STATE(1810)] = 50859, + [SMALL_STATE(1811)] = 50866, + [SMALL_STATE(1812)] = 50873, + [SMALL_STATE(1813)] = 50880, + [SMALL_STATE(1814)] = 50887, + [SMALL_STATE(1815)] = 50894, + [SMALL_STATE(1816)] = 50901, + [SMALL_STATE(1817)] = 50908, + [SMALL_STATE(1818)] = 50915, + [SMALL_STATE(1819)] = 50922, + [SMALL_STATE(1820)] = 50929, + [SMALL_STATE(1821)] = 50936, + [SMALL_STATE(1822)] = 50943, + [SMALL_STATE(1823)] = 50950, + [SMALL_STATE(1824)] = 50957, + [SMALL_STATE(1825)] = 50964, + [SMALL_STATE(1826)] = 50971, + [SMALL_STATE(1827)] = 50978, + [SMALL_STATE(1828)] = 50985, + [SMALL_STATE(1829)] = 50992, + [SMALL_STATE(1830)] = 50999, + [SMALL_STATE(1831)] = 51006, + [SMALL_STATE(1832)] = 51013, + [SMALL_STATE(1833)] = 51020, + [SMALL_STATE(1834)] = 51027, + [SMALL_STATE(1835)] = 51034, + [SMALL_STATE(1836)] = 51041, + [SMALL_STATE(1837)] = 51048, + [SMALL_STATE(1838)] = 51055, + [SMALL_STATE(1839)] = 51062, + [SMALL_STATE(1840)] = 51069, + [SMALL_STATE(1841)] = 51076, + [SMALL_STATE(1842)] = 51083, + [SMALL_STATE(1843)] = 51090, + [SMALL_STATE(1844)] = 51097, + [SMALL_STATE(1845)] = 51104, + [SMALL_STATE(1846)] = 51111, + [SMALL_STATE(1847)] = 51118, + [SMALL_STATE(1848)] = 51125, + [SMALL_STATE(1849)] = 51132, + [SMALL_STATE(1850)] = 51139, + [SMALL_STATE(1851)] = 51146, + [SMALL_STATE(1852)] = 51153, + [SMALL_STATE(1853)] = 51160, + [SMALL_STATE(1854)] = 51167, + [SMALL_STATE(1855)] = 51174, + [SMALL_STATE(1856)] = 51181, + [SMALL_STATE(1857)] = 51188, + [SMALL_STATE(1858)] = 51195, + [SMALL_STATE(1859)] = 51202, + [SMALL_STATE(1860)] = 51209, + [SMALL_STATE(1861)] = 51216, + [SMALL_STATE(1862)] = 51223, + [SMALL_STATE(1863)] = 51230, + [SMALL_STATE(1864)] = 51237, + [SMALL_STATE(1865)] = 51244, + [SMALL_STATE(1866)] = 51251, + [SMALL_STATE(1867)] = 51258, + [SMALL_STATE(1868)] = 51265, + [SMALL_STATE(1869)] = 51272, + [SMALL_STATE(1870)] = 51279, + [SMALL_STATE(1871)] = 51286, + [SMALL_STATE(1872)] = 51293, + [SMALL_STATE(1873)] = 51300, + [SMALL_STATE(1874)] = 51307, + [SMALL_STATE(1875)] = 51314, + [SMALL_STATE(1876)] = 51321, + [SMALL_STATE(1877)] = 51328, + [SMALL_STATE(1878)] = 51335, + [SMALL_STATE(1879)] = 51342, + [SMALL_STATE(1880)] = 51349, + [SMALL_STATE(1881)] = 51356, + [SMALL_STATE(1882)] = 51363, + [SMALL_STATE(1883)] = 51370, + [SMALL_STATE(1884)] = 51377, + [SMALL_STATE(1885)] = 51384, + [SMALL_STATE(1886)] = 51391, + [SMALL_STATE(1887)] = 51398, + [SMALL_STATE(1888)] = 51405, + [SMALL_STATE(1889)] = 51412, + [SMALL_STATE(1890)] = 51419, + [SMALL_STATE(1891)] = 51426, + [SMALL_STATE(1892)] = 51433, + [SMALL_STATE(1893)] = 51440, + [SMALL_STATE(1894)] = 51447, + [SMALL_STATE(1895)] = 51454, + [SMALL_STATE(1896)] = 51461, + [SMALL_STATE(1897)] = 51468, + [SMALL_STATE(1898)] = 51475, + [SMALL_STATE(1899)] = 51482, + [SMALL_STATE(1900)] = 51489, + [SMALL_STATE(1901)] = 51496, + [SMALL_STATE(1902)] = 51503, + [SMALL_STATE(1903)] = 51510, + [SMALL_STATE(1904)] = 51517, + [SMALL_STATE(1905)] = 51524, + [SMALL_STATE(1906)] = 51531, + [SMALL_STATE(1907)] = 51538, + [SMALL_STATE(1908)] = 51545, + [SMALL_STATE(1909)] = 51552, + [SMALL_STATE(1910)] = 51559, + [SMALL_STATE(1911)] = 51566, + [SMALL_STATE(1912)] = 51573, + [SMALL_STATE(1913)] = 51580, + [SMALL_STATE(1914)] = 51587, + [SMALL_STATE(1915)] = 51594, + [SMALL_STATE(1916)] = 51601, + [SMALL_STATE(1917)] = 51608, + [SMALL_STATE(1918)] = 51615, + [SMALL_STATE(1919)] = 51622, + [SMALL_STATE(1920)] = 51629, + [SMALL_STATE(1921)] = 51636, + [SMALL_STATE(1922)] = 51643, + [SMALL_STATE(1923)] = 51650, + [SMALL_STATE(1924)] = 51657, + [SMALL_STATE(1925)] = 51664, + [SMALL_STATE(1926)] = 51671, + [SMALL_STATE(1927)] = 51678, + [SMALL_STATE(1928)] = 51685, + [SMALL_STATE(1929)] = 51692, + [SMALL_STATE(1930)] = 51699, + [SMALL_STATE(1931)] = 51706, + [SMALL_STATE(1932)] = 51713, + [SMALL_STATE(1933)] = 51720, + [SMALL_STATE(1934)] = 51727, + [SMALL_STATE(1935)] = 51734, + [SMALL_STATE(1936)] = 51741, + [SMALL_STATE(1937)] = 51748, + [SMALL_STATE(1938)] = 51755, + [SMALL_STATE(1939)] = 51762, + [SMALL_STATE(1940)] = 51769, + [SMALL_STATE(1941)] = 51776, + [SMALL_STATE(1942)] = 51783, + [SMALL_STATE(1943)] = 51790, + [SMALL_STATE(1944)] = 51797, + [SMALL_STATE(1945)] = 51804, + [SMALL_STATE(1946)] = 51811, + [SMALL_STATE(1947)] = 51818, + [SMALL_STATE(1948)] = 51825, + [SMALL_STATE(1949)] = 51832, + [SMALL_STATE(1950)] = 51839, + [SMALL_STATE(1951)] = 51846, + [SMALL_STATE(1952)] = 51853, + [SMALL_STATE(1953)] = 51860, + [SMALL_STATE(1954)] = 51867, + [SMALL_STATE(1955)] = 51874, + [SMALL_STATE(1956)] = 51881, + [SMALL_STATE(1957)] = 51888, + [SMALL_STATE(1958)] = 51895, + [SMALL_STATE(1959)] = 51902, + [SMALL_STATE(1960)] = 51909, + [SMALL_STATE(1961)] = 51916, + [SMALL_STATE(1962)] = 51923, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -58538,2482 +58991,2499 @@ 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(841), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(841), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1028), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1332), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(651), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(641), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(838), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1054), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1153), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(663), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(642), [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(32), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(715), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1366), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(697), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1875), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1858), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(55), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1855), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(687), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1827), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1261), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(796), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(803), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(16), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(195), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1248), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1794), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(577), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1244), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1745), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1744), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(111), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(526), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(750), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(748), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1721), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(664), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(767), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(166), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(70), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(198), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1681), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(691), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1499), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(702), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1960), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1959), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(47), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1958), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(715), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1956), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1175), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(778), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(750), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(17), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(218), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1182), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1952), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(583), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1207), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1948), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1945), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(224), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(113), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(530), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(782), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(754), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1942), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(653), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(803), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(169), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(63), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1941), [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1104), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(762), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(641), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(715), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1136), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(805), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(642), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(691), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1875), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1855), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1261), - [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(796), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(803), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1248), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(577), - [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1244), - [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1744), - [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1681), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1960), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1958), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1175), + [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(778), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(750), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1182), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(583), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1207), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1945), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1941), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(962), - [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1028), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1332), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1312), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(952), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1054), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1153), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1161), [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(55), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(687), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1827), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(16), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(195), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1745), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1744), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(111), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(526), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(750), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(748), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1721), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(664), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(767), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(166), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(70), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(198), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(47), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(715), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1956), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(17), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(218), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1948), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1945), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(224), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(113), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(530), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(782), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(754), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1942), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(653), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(803), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(169), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(63), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1104), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(762), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(641), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(777), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1875), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1855), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1432), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(796), - [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(803), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1431), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(577), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1244), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1744), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1681), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), - [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), - [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), - [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), - [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), - [683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), - [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), - [695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), - [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), - [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), - [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), - [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), - [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), - [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1136), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(805), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(642), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(757), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1960), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1958), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1483), + [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(778), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(750), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1479), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(583), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1207), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1945), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1941), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), + [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 84), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 49), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 50), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 86), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 72), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 85), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 84), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 69), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 107), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 113), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 83), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 83), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 97), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2), + [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 98), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 69), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 50), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 86), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 72), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 118), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 114), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(241), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 5, .production_id = 15), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), + [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(103), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 109), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), - [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), - [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), - [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 101), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 68), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 111), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), + [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), + [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), + [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 91), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), + [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), + [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), + [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 53), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 91), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(817), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(817), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1813] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), - [1817] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(773), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(812), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(812), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1745), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1555), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1164), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(762), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1855), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(754), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(788), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1794), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1244), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1744), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1899), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(276), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(762), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1855), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(754), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(788), - [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1794), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1244), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1744), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(762), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1855), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(754), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(788), - [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1835), - [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1244), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 52), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 110), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 53), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 54), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 55), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 80), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 60), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), + [1751] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1391), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(824), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(824), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1948), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1919), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1281), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(805), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1958), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(771), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(774), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1952), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1207), + [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1945), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1752), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(279), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(805), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1958), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(771), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(774), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1881), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1207), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(805), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1958), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(771), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(774), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1952), + [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1207), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1945), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(265), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1164), - [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(641), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(953), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1601), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1744), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(793), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(799), - [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(800), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(243), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(193), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(191), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1009), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1009), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1332), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(762), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1855), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1794), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1244), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1164), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(762), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1125), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1494), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1495), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1826), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1769), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(562), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), - [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1808), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1528), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1700), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1510), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1308), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(619), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1744), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(222), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(784), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(207), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1600), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1246), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(765), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(792), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(206), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1123), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1059), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(96), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(613), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(239), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(764), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(100), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1090), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(216), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(620), - [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1761), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1246), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(768), - [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1246), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(101), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1638), - [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(739), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(242), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1326), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1555), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1482), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(104), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(108), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1275), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(234), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(928), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(655), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(103), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(638), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(773), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1161), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), - [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(114), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1513), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(236), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(506), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4701] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(117), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(269), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1281), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(642), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(941), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1845), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1945), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(764), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(766), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(785), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(194), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(242), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(193), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1153), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(805), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1958), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1952), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1207), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1281), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(805), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1091), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1591), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1599), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(559), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1720), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1734), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1716), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1824), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1538), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1749), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1214), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(623), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1945), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(217), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1507), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(762), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(227), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(219), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(808), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1208), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1115), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(102), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(632), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(97), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(799), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1782), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(236), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1143), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1208), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(796), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(616), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(751), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1078), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1208), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(99), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1553), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(110), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(240), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), + [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(149), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(105), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1919), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(933), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(668), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1152), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), + [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1391), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(104), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1259), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1481), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1167), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(245), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(726), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(112), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(976), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1750), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(510), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), + [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(243), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(187), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5159] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), }; #ifdef __cplusplus diff --git a/test/corpus/records.txt b/test/corpus/records.txt index 60c1ac0..db4d09a 100644 --- a/test/corpus/records.txt +++ b/test/corpus/records.txt @@ -507,3 +507,42 @@ end; (primary_null)))))))) (handled_sequence_of_statements (null_statement))))) + +======================== +Record with discr +======================== + +procedure Proc is + type Rec (Len : Natural) is null record; + R : Rec (0); +begin + null; +end; + +-------- + +(compilation + (compilation_unit + (subprogram_body + (procedure_specification + (identifier)) + (non_empty_declarative_part + (full_type_declaration + (identifier) + (known_discriminant_part + (discriminant_specification_list + (discriminant_specification + (identifier) + (identifier)))) + (record_type_definition + (record_definition))) + (object_declaration + (identifier) + (identifier) + (discriminant_constraint + (discriminant_association + (expression + (term + (numeric_literal))))))) + (handled_sequence_of_statements + (null_statement))))) diff --git a/test/corpus/subprograms.txt b/test/corpus/subprograms.txt index efc41bc..5a6c41f 100644 --- a/test/corpus/subprograms.txt +++ b/test/corpus/subprograms.txt @@ -580,3 +580,24 @@ package P is new Pack ("+" => "+", "-" => Imported."+"); (selected_component (identifier) (string_literal)))))))))) + +================================================================================ +Function renaming +================================================================================ + +function F (S : String) return Boolean renames F2; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (subprogram_renaming_declaration + (function_specification + (identifier) + (formal_part + (parameter_specification + (identifier) + (identifier))) + (result_profile + (identifier))) + (identifier))))