tree-sitter-ada/src/parser.c
Emmanuel Briot faa006e5fd Allow if-expression for discriminant constraints
The rule (not visible in the RM grammar) is that
if we have a single positional discriminant, we
can omit the extra pair of parenthesis.
2022-12-14 13:49:02 +01:00

65094 lines
2.0 MiB

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 2018
#define LARGE_STATE_COUNT 82
#define SYMBOL_COUNT 456
#define ALIAS_COUNT 0
#define TOKEN_COUNT 122
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 48
#define MAX_ALIAS_SEQUENCE_LENGTH 14
#define PRODUCTION_ID_COUNT 127
enum {
sym_identifier = 1,
sym_gnatprep_identifier = 2,
sym_comment = 3,
sym_string_literal = 4,
sym_character_literal = 5,
sym_numeric_literal = 6,
aux_sym_git_conflict_mark_token1 = 7,
aux_sym_git_conflict_mark_token2 = 8,
aux_sym_git_conflict_mark_token3 = 9,
anon_sym_EQ = 10,
anon_sym_SLASH_EQ = 11,
anon_sym_LT = 12,
anon_sym_LT_EQ = 13,
anon_sym_GT = 14,
anon_sym_GT_EQ = 15,
anon_sym_PLUS = 16,
anon_sym_DASH = 17,
anon_sym_AMP = 18,
anon_sym_STAR = 19,
anon_sym_SLASH = 20,
anon_sym_mod = 21,
anon_sym_rem = 22,
sym_tick = 23,
anon_sym_DOT = 24,
sym_target_name = 25,
anon_sym_COMMA = 26,
anon_sym_LPAREN = 27,
anon_sym_RPAREN = 28,
anon_sym_LBRACK = 29,
aux_sym_value_sequence_token1 = 30,
anon_sym_RBRACK = 31,
aux_sym_chunk_specification_token1 = 32,
aux_sym_iterated_element_association_token1 = 33,
aux_sym_iterated_element_association_token2 = 34,
anon_sym_EQ_GT = 35,
aux_sym_loop_parameter_specification_token1 = 36,
aux_sym_iterator_filter_token1 = 37,
anon_sym_COLON = 38,
aux_sym_iterator_specification_token1 = 39,
aux_sym_attribute_designator_token1 = 40,
aux_sym_attribute_designator_token2 = 41,
aux_sym_attribute_designator_token3 = 42,
aux_sym_attribute_designator_token4 = 43,
aux_sym_compilation_unit_token1 = 44,
anon_sym_SEMI = 45,
aux_sym_package_specification_token1 = 46,
aux_sym_package_specification_token2 = 47,
aux_sym_package_specification_token3 = 48,
aux_sym_with_clause_token1 = 49,
aux_sym_with_clause_token2 = 50,
aux_sym_use_clause_token1 = 51,
aux_sym_use_clause_token2 = 52,
aux_sym_subunit_token1 = 53,
aux_sym_subprogram_body_token1 = 54,
aux_sym_package_body_token1 = 55,
anon_sym_PIPE = 56,
anon_sym_DOT_DOT = 57,
aux_sym_range_attribute_designator_token1 = 58,
aux_sym_expression_token1 = 59,
aux_sym_expression_token2 = 60,
aux_sym_expression_token3 = 61,
aux_sym_expression_token4 = 62,
aux_sym_expression_token5 = 63,
aux_sym_relation_membership_token1 = 64,
aux_sym_raise_expression_token1 = 65,
anon_sym_STAR_STAR = 66,
aux_sym_factor_abs_token1 = 67,
aux_sym_primary_null_token1 = 68,
aux_sym_allocator_token1 = 69,
aux_sym_access_to_subprogram_definition_token1 = 70,
aux_sym_access_to_subprogram_definition_token2 = 71,
aux_sym_access_to_subprogram_definition_token3 = 72,
aux_sym_general_access_modifier_token1 = 73,
anon_sym_LT_GT = 74,
aux_sym_declare_expression_token1 = 75,
aux_sym_quantifier_token1 = 76,
aux_sym_case_expression_token1 = 77,
aux_sym_component_choice_list_token1 = 78,
aux_sym_record_component_association_list_token1 = 79,
aux_sym_private_type_declaration_token1 = 80,
aux_sym_private_type_declaration_token2 = 81,
aux_sym_private_extension_declaration_token1 = 82,
aux_sym_array_type_definition_token1 = 83,
aux_sym_interface_type_definition_token1 = 84,
aux_sym_interface_type_definition_token2 = 85,
aux_sym_component_list_token1 = 86,
aux_sym_component_definition_token1 = 87,
aux_sym__aspect_mark_token1 = 88,
anon_sym_COLON_EQ = 89,
aux_sym_at_clause_token1 = 90,
aux_sym_entry_declaration_token1 = 91,
aux_sym_exception_declaration_token1 = 92,
aux_sym_generic_formal_part_token1 = 93,
anon_sym_null = 94,
anon_sym_all = 95,
aux_sym_global_mode_token1 = 96,
anon_sym_LT_LT = 97,
anon_sym_GT_GT = 98,
aux_sym_non_empty_mode_token1 = 99,
aux_sym_pragma_g_token1 = 100,
aux_sym_if_expression_token1 = 101,
aux_sym_elsif_expression_item_token1 = 102,
aux_sym_object_renaming_declaration_token1 = 103,
aux_sym_result_profile_token1 = 104,
aux_sym_asynchronous_select_token1 = 105,
aux_sym_asynchronous_select_token2 = 106,
aux_sym_terminate_alternative_token1 = 107,
aux_sym_requeue_statement_token1 = 108,
aux_sym_accept_statement_token1 = 109,
aux_sym_accept_statement_token2 = 110,
aux_sym_gnatprep_declarative_if_statement_token1 = 111,
aux_sym_gnatprep_declarative_if_statement_token2 = 112,
aux_sym_gnatprep_declarative_if_statement_token3 = 113,
aux_sym_gnatprep_declarative_if_statement_token4 = 114,
aux_sym_exit_statement_token1 = 115,
aux_sym_goto_statement_token1 = 116,
aux_sym_delay_until_statement_token1 = 117,
aux_sym_delay_until_statement_token2 = 118,
aux_sym_loop_statement_token1 = 119,
aux_sym_iteration_scheme_token1 = 120,
aux_sym_subtype_declaration_token1 = 121,
sym_compilation = 122,
sym_relational_operator = 123,
sym_binary_adding_operator = 124,
sym_unary_adding_operator = 125,
sym_multiplying_operator = 126,
sym__name = 127,
sym_selected_component = 128,
sym__name_list = 129,
sym__defining_identifier_list = 130,
sym_slice = 131,
sym__attribute_reference = 132,
sym__reduction_attribute_reference = 133,
sym_reduction_attribute_designator = 134,
sym_reduction_specification = 135,
sym_value_sequence = 136,
sym_chunk_specification = 137,
sym_iterated_element_association = 138,
sym__discrete_subtype_definition = 139,
sym_loop_parameter_specification = 140,
sym__loop_parameter_subtype_indication = 141,
sym_iterator_filter = 142,
sym_iterator_specification = 143,
sym_attribute_designator = 144,
sym_qualified_expression = 145,
sym_compilation_unit = 146,
sym__declarative_item = 147,
sym__basic_declarative_item = 148,
sym__basic_declaration = 149,
sym__package_declaration = 150,
sym_package_specification = 151,
sym_with_clause = 152,
sym_use_clause = 153,
sym_subunit = 154,
sym__proper_body = 155,
sym_subprogram_body = 156,
sym_package_body = 157,
sym__subtype_indication = 158,
sym_discriminant_constraint = 159,
sym_discriminant_association = 160,
sym__constraint = 161,
sym__scalar_constraint = 162,
sym_range_g = 163,
sym_range_attribute_designator = 164,
sym_range_constraint = 165,
sym_expression = 166,
sym__relation = 167,
sym_relation_membership = 168,
sym_raise_expression = 169,
sym_membership_choice_list = 170,
sym__membership_choice = 171,
sym__simple_expression = 172,
sym_term = 173,
sym__factor = 174,
sym_factor_power = 175,
sym_factor_abs = 176,
sym_factor_not = 177,
sym__parenthesized_expression = 178,
sym__primary = 179,
sym_primary_null = 180,
sym_allocator = 181,
sym__subtype_indication_paren_constraint = 182,
sym_subpool_specification = 183,
sym__access_type_definition = 184,
sym_access_to_subprogram_definition = 185,
sym_access_to_object_definition = 186,
sym_general_access_modifier = 187,
sym_access_definition = 188,
sym_actual_parameter_part = 189,
sym_parameter_association = 190,
sym__conditional_expression = 191,
sym__conditional_quantified_expression = 192,
sym_quantified_expression = 193,
sym_declare_expression = 194,
sym__declare_item = 195,
sym_quantifier = 196,
sym_case_expression = 197,
sym_case_expression_alternative = 198,
sym_component_choice_list = 199,
sym__aggregate = 200,
sym__delta_aggregate = 201,
sym_extension_aggregate = 202,
sym_record_delta_aggregate = 203,
sym_array_delta_aggregate = 204,
sym_record_aggregate = 205,
sym_record_component_association_list = 206,
sym__record_component_association_list_or_expression = 207,
sym__named_record_component_association = 208,
sym_null_exclusion = 209,
sym_index_constraint = 210,
sym_digits_constraint = 211,
sym_delta_constraint = 212,
sym__basic_declarative_item_pragma = 213,
sym__type_declaration = 214,
sym_full_type_declaration = 215,
sym_private_type_declaration = 216,
sym_private_extension_declaration = 217,
sym__discriminant_part = 218,
sym_unknown_discriminant_part = 219,
sym_known_discriminant_part = 220,
sym_incomplete_type_declaration = 221,
sym_discriminant_specification_list = 222,
sym_discriminant_specification = 223,
sym__type_definition = 224,
sym_array_type_definition = 225,
sym__discrete_subtype_definition_list = 226,
sym__discrete_range = 227,
sym__index_subtype_definition_list = 228,
sym_index_subtype_definition = 229,
sym_enumeration_type_definition = 230,
sym__enumeration_literal_list = 231,
sym__enumeration_literal_specification = 232,
sym__integer_type_definition = 233,
sym_modular_type_definition = 234,
sym__real_type_definition = 235,
sym_floating_point_definition = 236,
sym_real_range_specification = 237,
sym__fixed_point_definition = 238,
sym_decimal_fixed_point_definition = 239,
sym_ordinary_fixed_point_definition = 240,
sym_signed_integer_type_definition = 241,
sym_derived_type_definition = 242,
sym_interface_type_definition = 243,
sym__interface_list = 244,
sym_record_extension_part = 245,
sym_record_type_definition = 246,
sym_record_definition = 247,
sym_component_list = 248,
sym__component_item = 249,
sym_component_declaration = 250,
sym_component_definition = 251,
sym__array_aggregate = 252,
sym_positional_array_aggregate = 253,
sym_null_array_aggregate = 254,
sym_named_array_aggregate = 255,
sym__array_component_association_list = 256,
sym_array_component_association = 257,
sym_discrete_choice_list = 258,
sym_discrete_choice = 259,
sym_aspect_association = 260,
sym__aspect_clause = 261,
sym__aspect_definition = 262,
sym__aspect_mark = 263,
sym_aspect_mark_list = 264,
sym_aspect_specification = 265,
sym__assign_value = 266,
sym_at_clause = 267,
sym_attribute_definition_clause = 268,
sym_body_stub = 269,
sym_subprogram_body_stub = 270,
sym_package_body_stub = 271,
sym_task_body = 272,
sym_task_body_stub = 273,
sym__protected_operation_declaration = 274,
sym__protected_element_declaration = 275,
sym__protected_operation_item = 276,
sym_protected_definition = 277,
sym_protected_type_declaration = 278,
sym_single_protected_declaration = 279,
sym_protected_body = 280,
sym_protected_body_stub = 281,
sym_choice_parameter_specification = 282,
sym_component_clause = 283,
sym__declarative_item_pragma = 284,
sym_non_empty_declarative_part = 285,
sym_entry_declaration = 286,
sym_entry_body = 287,
sym_entry_barrier = 288,
sym_entry_index_specification = 289,
sym_enumeration_aggregate = 290,
sym_enumeration_representation_clause = 291,
sym_exception_choice_list = 292,
sym_exception_choice = 293,
sym_exception_declaration = 294,
sym_exception_handler = 295,
sym_formal_part = 296,
sym_function_specification = 297,
sym__generic_declaration = 298,
sym_generic_formal_part = 299,
sym__generic_formal_parameter_declaration = 300,
sym_generic_subprogram_declaration = 301,
sym_generic_package_declaration = 302,
sym_generic_instantiation = 303,
sym_formal_object_declaration = 304,
sym__formal_type_declaration = 305,
sym_formal_complete_type_declaration = 306,
sym_formal_incomplete_type_declaration = 307,
sym__formal_type_definition = 308,
sym_formal_private_type_definition = 309,
sym_formal_derived_type_definition = 310,
sym_formal_discrete_type_definition = 311,
sym_formal_signed_integer_type_definition = 312,
sym_formal_modular_type_definition = 313,
sym_formal_floating_point_definition = 314,
sym_formal_ordinary_fixed_point_definition = 315,
sym_formal_decimal_fixed_point_definition = 316,
sym_formal_array_type_definition = 317,
sym_formal_access_type_definition = 318,
sym_formal_interface_type_definition = 319,
sym_formal_subprogram_declaration = 320,
sym_formal_concrete_subprogram_declaration = 321,
sym_formal_abstract_subprogram_declaration = 322,
sym_subprogram_default = 323,
sym_formal_package_declaration = 324,
sym_global_aspect_definition = 325,
sym_global_aspect_element = 326,
sym_global_mode = 327,
sym_handled_sequence_of_statements = 328,
sym_loop_label = 329,
sym_label = 330,
sym_mod_clause = 331,
sym_non_empty_mode = 332,
sym_null_procedure_declaration = 333,
sym_null_statement = 334,
sym_number_declaration = 335,
sym_object_declaration = 336,
sym_single_task_declaration = 337,
sym_task_type_declaration = 338,
sym_non_empty_entry_body_formal_part = 339,
sym__task_item = 340,
sym_task_definition = 341,
sym_overriding_indicator = 342,
sym__parameter_and_result_profile = 343,
sym_parameter_specification = 344,
sym__parameter_specification_list = 345,
sym_pragma_g = 346,
sym_pragma_argument_association = 347,
sym_if_expression = 348,
sym_elsif_expression_item = 349,
sym_procedure_specification = 350,
sym_record_representation_clause = 351,
sym__renaming_declaration = 352,
sym_object_renaming_declaration = 353,
sym_exception_renaming_declaration = 354,
sym_package_renaming_declaration = 355,
sym_subprogram_renaming_declaration = 356,
sym_generic_renaming_declaration = 357,
sym_result_profile = 358,
sym__sequence_of_statements = 359,
sym__simple_statement = 360,
sym__statement = 361,
sym__compound_statement = 362,
sym__select_statement = 363,
sym_entry_call_alternative = 364,
sym_asynchronous_select = 365,
sym_triggering_alternative = 366,
sym_conditional_entry_call = 367,
sym_delay_alternative = 368,
sym_timed_entry_call = 369,
sym_guard = 370,
sym_select_alternative = 371,
sym_accept_alternative = 372,
sym_terminate_alternative = 373,
sym_selective_accept = 374,
sym_abort_statement = 375,
sym_requeue_statement = 376,
sym_accept_statement = 377,
sym_case_statement_alternative = 378,
sym_case_statement = 379,
sym_block_statement = 380,
sym_if_statement = 381,
sym_elsif_statement_item = 382,
sym_gnatprep_declarative_if_statement = 383,
sym_gnatprep_if_statement = 384,
sym_exit_statement = 385,
sym_goto_statement = 386,
sym__delay_statement = 387,
sym_delay_until_statement = 388,
sym_delay_relative_statement = 389,
sym_simple_return_statement = 390,
sym_extended_return_statement = 391,
sym_extended_return_object_declaration = 392,
sym__return_subtype_indication = 393,
sym_procedure_call_statement = 394,
sym_function_call = 395,
sym_raise_statement = 396,
sym_loop_statement = 397,
sym_iteration_scheme = 398,
sym_assignment_statement = 399,
sym_subprogram_declaration = 400,
sym_expression_function_declaration = 401,
sym__subprogram_specification = 402,
sym_subtype_declaration = 403,
sym_variant_part = 404,
sym_variant_list = 405,
sym_variant = 406,
aux_sym_compilation_repeat1 = 407,
aux_sym__name_list_repeat1 = 408,
aux_sym__defining_identifier_list_repeat1 = 409,
aux_sym_package_specification_repeat1 = 410,
aux_sym_discriminant_constraint_repeat1 = 411,
aux_sym_discriminant_association_repeat1 = 412,
aux_sym_expression_repeat1 = 413,
aux_sym_expression_repeat2 = 414,
aux_sym_expression_repeat3 = 415,
aux_sym_membership_choice_list_repeat1 = 416,
aux_sym__simple_expression_repeat1 = 417,
aux_sym_term_repeat1 = 418,
aux_sym_actual_parameter_part_repeat1 = 419,
aux_sym_declare_expression_repeat1 = 420,
aux_sym_case_expression_repeat1 = 421,
aux_sym_record_component_association_list_repeat1 = 422,
aux_sym_record_component_association_list_repeat2 = 423,
aux_sym_index_constraint_repeat1 = 424,
aux_sym_discriminant_specification_list_repeat1 = 425,
aux_sym__discrete_subtype_definition_list_repeat1 = 426,
aux_sym__index_subtype_definition_list_repeat1 = 427,
aux_sym__enumeration_literal_list_repeat1 = 428,
aux_sym__interface_list_repeat1 = 429,
aux_sym_component_list_repeat1 = 430,
aux_sym_positional_array_aggregate_repeat1 = 431,
aux_sym__array_component_association_list_repeat1 = 432,
aux_sym_discrete_choice_list_repeat1 = 433,
aux_sym_aspect_mark_list_repeat1 = 434,
aux_sym_protected_definition_repeat1 = 435,
aux_sym_protected_definition_repeat2 = 436,
aux_sym_protected_body_repeat1 = 437,
aux_sym_non_empty_declarative_part_repeat1 = 438,
aux_sym_exception_choice_list_repeat1 = 439,
aux_sym_generic_formal_part_repeat1 = 440,
aux_sym_global_aspect_definition_repeat1 = 441,
aux_sym_handled_sequence_of_statements_repeat1 = 442,
aux_sym_task_definition_repeat1 = 443,
aux_sym__parameter_specification_list_repeat1 = 444,
aux_sym_pragma_g_repeat1 = 445,
aux_sym_if_expression_repeat1 = 446,
aux_sym_record_representation_clause_repeat1 = 447,
aux_sym__sequence_of_statements_repeat1 = 448,
aux_sym__sequence_of_statements_repeat2 = 449,
aux_sym_selective_accept_repeat1 = 450,
aux_sym_case_statement_repeat1 = 451,
aux_sym_if_statement_repeat1 = 452,
aux_sym_gnatprep_declarative_if_statement_repeat1 = 453,
aux_sym_gnatprep_if_statement_repeat1 = 454,
aux_sym_variant_list_repeat1 = 455,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[sym_gnatprep_identifier] = "gnatprep_identifier",
[sym_comment] = "comment",
[sym_string_literal] = "string_literal",
[sym_character_literal] = "character_literal",
[sym_numeric_literal] = "numeric_literal",
[aux_sym_git_conflict_mark_token1] = "git_conflict_mark_token1",
[aux_sym_git_conflict_mark_token2] = "git_conflict_mark_token2",
[aux_sym_git_conflict_mark_token3] = "git_conflict_mark_token3",
[anon_sym_EQ] = "=",
[anon_sym_SLASH_EQ] = "/=",
[anon_sym_LT] = "<",
[anon_sym_LT_EQ] = "<=",
[anon_sym_GT] = ">",
[anon_sym_GT_EQ] = ">=",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_AMP] = "&",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_mod] = "mod",
[anon_sym_rem] = "rem",
[sym_tick] = "tick",
[anon_sym_DOT] = ".",
[sym_target_name] = "target_name",
[anon_sym_COMMA] = ",",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[anon_sym_LBRACK] = "[",
[aux_sym_value_sequence_token1] = "parallel",
[anon_sym_RBRACK] = "]",
[aux_sym_chunk_specification_token1] = "in",
[aux_sym_iterated_element_association_token1] = "for",
[aux_sym_iterated_element_association_token2] = "use",
[anon_sym_EQ_GT] = "=>",
[aux_sym_loop_parameter_specification_token1] = "reverse",
[aux_sym_iterator_filter_token1] = "when",
[anon_sym_COLON] = ":",
[aux_sym_iterator_specification_token1] = "of",
[aux_sym_attribute_designator_token1] = "access",
[aux_sym_attribute_designator_token2] = "delta",
[aux_sym_attribute_designator_token3] = "digits",
[aux_sym_attribute_designator_token4] = "mod",
[aux_sym_compilation_unit_token1] = "private",
[anon_sym_SEMI] = ";",
[aux_sym_package_specification_token1] = "package",
[aux_sym_package_specification_token2] = "is",
[aux_sym_package_specification_token3] = "end",
[aux_sym_with_clause_token1] = "limited",
[aux_sym_with_clause_token2] = "with",
[aux_sym_use_clause_token1] = "all",
[aux_sym_use_clause_token2] = "type",
[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",
[aux_sym_expression_token2] = "then",
[aux_sym_expression_token3] = "or",
[aux_sym_expression_token4] = "else",
[aux_sym_expression_token5] = "xor",
[aux_sym_relation_membership_token1] = "not",
[aux_sym_raise_expression_token1] = "raise",
[anon_sym_STAR_STAR] = "**",
[aux_sym_factor_abs_token1] = "abs",
[aux_sym_primary_null_token1] = "null",
[aux_sym_allocator_token1] = "new",
[aux_sym_access_to_subprogram_definition_token1] = "protected",
[aux_sym_access_to_subprogram_definition_token2] = "procedure",
[aux_sym_access_to_subprogram_definition_token3] = "function",
[aux_sym_general_access_modifier_token1] = "constant",
[anon_sym_LT_GT] = "<>",
[aux_sym_declare_expression_token1] = "declare",
[aux_sym_quantifier_token1] = "some",
[aux_sym_case_expression_token1] = "case",
[aux_sym_component_choice_list_token1] = "others",
[aux_sym_record_component_association_list_token1] = "record",
[aux_sym_private_type_declaration_token1] = "abstract",
[aux_sym_private_type_declaration_token2] = "tagged",
[aux_sym_private_extension_declaration_token1] = "synchronized",
[aux_sym_array_type_definition_token1] = "array",
[aux_sym_interface_type_definition_token1] = "task",
[aux_sym_interface_type_definition_token2] = "interface",
[aux_sym_component_list_token1] = ";",
[aux_sym_component_definition_token1] = "aliased",
[aux_sym__aspect_mark_token1] = "Class",
[anon_sym_COLON_EQ] = ":=",
[aux_sym_at_clause_token1] = "at",
[aux_sym_entry_declaration_token1] = "entry",
[aux_sym_exception_declaration_token1] = "exception",
[aux_sym_generic_formal_part_token1] = "generic",
[anon_sym_null] = "null",
[anon_sym_all] = "all",
[aux_sym_global_mode_token1] = "overriding",
[anon_sym_LT_LT] = "<<",
[anon_sym_GT_GT] = ">>",
[aux_sym_non_empty_mode_token1] = "out",
[aux_sym_pragma_g_token1] = "pragma",
[aux_sym_if_expression_token1] = "if",
[aux_sym_elsif_expression_item_token1] = "elsif",
[aux_sym_object_renaming_declaration_token1] = "renames",
[aux_sym_result_profile_token1] = "return",
[aux_sym_asynchronous_select_token1] = "select",
[aux_sym_asynchronous_select_token2] = "abort",
[aux_sym_terminate_alternative_token1] = "terminate",
[aux_sym_requeue_statement_token1] = "requeue",
[aux_sym_accept_statement_token1] = "accept",
[aux_sym_accept_statement_token2] = "do",
[aux_sym_gnatprep_declarative_if_statement_token1] = "#if",
[aux_sym_gnatprep_declarative_if_statement_token2] = "#elsif",
[aux_sym_gnatprep_declarative_if_statement_token3] = "#else",
[aux_sym_gnatprep_declarative_if_statement_token4] = "#end",
[aux_sym_exit_statement_token1] = "exit",
[aux_sym_goto_statement_token1] = "goto",
[aux_sym_delay_until_statement_token1] = "delay",
[aux_sym_delay_until_statement_token2] = "until",
[aux_sym_loop_statement_token1] = "loop",
[aux_sym_iteration_scheme_token1] = "while",
[aux_sym_subtype_declaration_token1] = "subtype",
[sym_compilation] = "compilation",
[sym_relational_operator] = "relational_operator",
[sym_binary_adding_operator] = "binary_adding_operator",
[sym_unary_adding_operator] = "unary_adding_operator",
[sym_multiplying_operator] = "multiplying_operator",
[sym__name] = "_name",
[sym_selected_component] = "selected_component",
[sym__name_list] = "_name_list",
[sym__defining_identifier_list] = "_defining_identifier_list",
[sym_slice] = "slice",
[sym__attribute_reference] = "_attribute_reference",
[sym__reduction_attribute_reference] = "_reduction_attribute_reference",
[sym_reduction_attribute_designator] = "reduction_attribute_designator",
[sym_reduction_specification] = "reduction_specification",
[sym_value_sequence] = "value_sequence",
[sym_chunk_specification] = "chunk_specification",
[sym_iterated_element_association] = "iterated_element_association",
[sym__discrete_subtype_definition] = "_discrete_subtype_definition",
[sym_loop_parameter_specification] = "loop_parameter_specification",
[sym__loop_parameter_subtype_indication] = "_loop_parameter_subtype_indication",
[sym_iterator_filter] = "iterator_filter",
[sym_iterator_specification] = "iterator_specification",
[sym_attribute_designator] = "attribute_designator",
[sym_qualified_expression] = "qualified_expression",
[sym_compilation_unit] = "compilation_unit",
[sym__declarative_item] = "_declarative_item",
[sym__basic_declarative_item] = "_basic_declarative_item",
[sym__basic_declaration] = "_basic_declaration",
[sym__package_declaration] = "_package_declaration",
[sym_package_specification] = "package_specification",
[sym_with_clause] = "with_clause",
[sym_use_clause] = "use_clause",
[sym_subunit] = "subunit",
[sym__proper_body] = "_proper_body",
[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",
[sym_range_attribute_designator] = "range_attribute_designator",
[sym_range_constraint] = "range_constraint",
[sym_expression] = "expression",
[sym__relation] = "_relation",
[sym_relation_membership] = "relation_membership",
[sym_raise_expression] = "raise_expression",
[sym_membership_choice_list] = "membership_choice_list",
[sym__membership_choice] = "_membership_choice",
[sym__simple_expression] = "_simple_expression",
[sym_term] = "term",
[sym__factor] = "_factor",
[sym_factor_power] = "factor_power",
[sym_factor_abs] = "factor_abs",
[sym_factor_not] = "factor_not",
[sym__parenthesized_expression] = "_parenthesized_expression",
[sym__primary] = "_primary",
[sym_primary_null] = "primary_null",
[sym_allocator] = "allocator",
[sym__subtype_indication_paren_constraint] = "_subtype_indication_paren_constraint",
[sym_subpool_specification] = "subpool_specification",
[sym__access_type_definition] = "_access_type_definition",
[sym_access_to_subprogram_definition] = "access_to_subprogram_definition",
[sym_access_to_object_definition] = "access_to_object_definition",
[sym_general_access_modifier] = "general_access_modifier",
[sym_access_definition] = "access_definition",
[sym_actual_parameter_part] = "actual_parameter_part",
[sym_parameter_association] = "parameter_association",
[sym__conditional_expression] = "_conditional_expression",
[sym__conditional_quantified_expression] = "_conditional_quantified_expression",
[sym_quantified_expression] = "quantified_expression",
[sym_declare_expression] = "declare_expression",
[sym__declare_item] = "_declare_item",
[sym_quantifier] = "quantifier",
[sym_case_expression] = "case_expression",
[sym_case_expression_alternative] = "case_expression_alternative",
[sym_component_choice_list] = "component_choice_list",
[sym__aggregate] = "_aggregate",
[sym__delta_aggregate] = "_delta_aggregate",
[sym_extension_aggregate] = "extension_aggregate",
[sym_record_delta_aggregate] = "record_delta_aggregate",
[sym_array_delta_aggregate] = "array_delta_aggregate",
[sym_record_aggregate] = "record_aggregate",
[sym_record_component_association_list] = "record_component_association_list",
[sym__record_component_association_list_or_expression] = "_record_component_association_list_or_expression",
[sym__named_record_component_association] = "_named_record_component_association",
[sym_null_exclusion] = "null_exclusion",
[sym_index_constraint] = "index_constraint",
[sym_digits_constraint] = "digits_constraint",
[sym_delta_constraint] = "delta_constraint",
[sym__basic_declarative_item_pragma] = "_basic_declarative_item_pragma",
[sym__type_declaration] = "_type_declaration",
[sym_full_type_declaration] = "full_type_declaration",
[sym_private_type_declaration] = "private_type_declaration",
[sym_private_extension_declaration] = "private_extension_declaration",
[sym__discriminant_part] = "_discriminant_part",
[sym_unknown_discriminant_part] = "unknown_discriminant_part",
[sym_known_discriminant_part] = "known_discriminant_part",
[sym_incomplete_type_declaration] = "incomplete_type_declaration",
[sym_discriminant_specification_list] = "discriminant_specification_list",
[sym_discriminant_specification] = "discriminant_specification",
[sym__type_definition] = "_type_definition",
[sym_array_type_definition] = "array_type_definition",
[sym__discrete_subtype_definition_list] = "_discrete_subtype_definition_list",
[sym__discrete_range] = "_discrete_range",
[sym__index_subtype_definition_list] = "_index_subtype_definition_list",
[sym_index_subtype_definition] = "index_subtype_definition",
[sym_enumeration_type_definition] = "enumeration_type_definition",
[sym__enumeration_literal_list] = "_enumeration_literal_list",
[sym__enumeration_literal_specification] = "_enumeration_literal_specification",
[sym__integer_type_definition] = "_integer_type_definition",
[sym_modular_type_definition] = "modular_type_definition",
[sym__real_type_definition] = "_real_type_definition",
[sym_floating_point_definition] = "floating_point_definition",
[sym_real_range_specification] = "real_range_specification",
[sym__fixed_point_definition] = "_fixed_point_definition",
[sym_decimal_fixed_point_definition] = "decimal_fixed_point_definition",
[sym_ordinary_fixed_point_definition] = "ordinary_fixed_point_definition",
[sym_signed_integer_type_definition] = "signed_integer_type_definition",
[sym_derived_type_definition] = "derived_type_definition",
[sym_interface_type_definition] = "interface_type_definition",
[sym__interface_list] = "_interface_list",
[sym_record_extension_part] = "record_extension_part",
[sym_record_type_definition] = "record_type_definition",
[sym_record_definition] = "record_definition",
[sym_component_list] = "component_list",
[sym__component_item] = "_component_item",
[sym_component_declaration] = "component_declaration",
[sym_component_definition] = "component_definition",
[sym__array_aggregate] = "_array_aggregate",
[sym_positional_array_aggregate] = "positional_array_aggregate",
[sym_null_array_aggregate] = "null_array_aggregate",
[sym_named_array_aggregate] = "named_array_aggregate",
[sym__array_component_association_list] = "_array_component_association_list",
[sym_array_component_association] = "array_component_association",
[sym_discrete_choice_list] = "discrete_choice_list",
[sym_discrete_choice] = "discrete_choice",
[sym_aspect_association] = "aspect_association",
[sym__aspect_clause] = "_aspect_clause",
[sym__aspect_definition] = "_aspect_definition",
[sym__aspect_mark] = "_aspect_mark",
[sym_aspect_mark_list] = "aspect_mark_list",
[sym_aspect_specification] = "aspect_specification",
[sym__assign_value] = "_assign_value",
[sym_at_clause] = "at_clause",
[sym_attribute_definition_clause] = "attribute_definition_clause",
[sym_body_stub] = "body_stub",
[sym_subprogram_body_stub] = "subprogram_body_stub",
[sym_package_body_stub] = "package_body_stub",
[sym_task_body] = "task_body",
[sym_task_body_stub] = "task_body_stub",
[sym__protected_operation_declaration] = "_protected_operation_declaration",
[sym__protected_element_declaration] = "_protected_element_declaration",
[sym__protected_operation_item] = "_protected_operation_item",
[sym_protected_definition] = "protected_definition",
[sym_protected_type_declaration] = "protected_type_declaration",
[sym_single_protected_declaration] = "single_protected_declaration",
[sym_protected_body] = "protected_body",
[sym_protected_body_stub] = "protected_body_stub",
[sym_choice_parameter_specification] = "choice_parameter_specification",
[sym_component_clause] = "component_clause",
[sym__declarative_item_pragma] = "_declarative_item_pragma",
[sym_non_empty_declarative_part] = "non_empty_declarative_part",
[sym_entry_declaration] = "entry_declaration",
[sym_entry_body] = "entry_body",
[sym_entry_barrier] = "entry_barrier",
[sym_entry_index_specification] = "entry_index_specification",
[sym_enumeration_aggregate] = "enumeration_aggregate",
[sym_enumeration_representation_clause] = "enumeration_representation_clause",
[sym_exception_choice_list] = "exception_choice_list",
[sym_exception_choice] = "exception_choice",
[sym_exception_declaration] = "exception_declaration",
[sym_exception_handler] = "exception_handler",
[sym_formal_part] = "formal_part",
[sym_function_specification] = "function_specification",
[sym__generic_declaration] = "_generic_declaration",
[sym_generic_formal_part] = "generic_formal_part",
[sym__generic_formal_parameter_declaration] = "_generic_formal_parameter_declaration",
[sym_generic_subprogram_declaration] = "generic_subprogram_declaration",
[sym_generic_package_declaration] = "generic_package_declaration",
[sym_generic_instantiation] = "generic_instantiation",
[sym_formal_object_declaration] = "formal_object_declaration",
[sym__formal_type_declaration] = "_formal_type_declaration",
[sym_formal_complete_type_declaration] = "formal_complete_type_declaration",
[sym_formal_incomplete_type_declaration] = "formal_incomplete_type_declaration",
[sym__formal_type_definition] = "_formal_type_definition",
[sym_formal_private_type_definition] = "formal_private_type_definition",
[sym_formal_derived_type_definition] = "formal_derived_type_definition",
[sym_formal_discrete_type_definition] = "formal_discrete_type_definition",
[sym_formal_signed_integer_type_definition] = "formal_signed_integer_type_definition",
[sym_formal_modular_type_definition] = "formal_modular_type_definition",
[sym_formal_floating_point_definition] = "formal_floating_point_definition",
[sym_formal_ordinary_fixed_point_definition] = "formal_ordinary_fixed_point_definition",
[sym_formal_decimal_fixed_point_definition] = "formal_decimal_fixed_point_definition",
[sym_formal_array_type_definition] = "formal_array_type_definition",
[sym_formal_access_type_definition] = "formal_access_type_definition",
[sym_formal_interface_type_definition] = "formal_interface_type_definition",
[sym_formal_subprogram_declaration] = "formal_subprogram_declaration",
[sym_formal_concrete_subprogram_declaration] = "formal_concrete_subprogram_declaration",
[sym_formal_abstract_subprogram_declaration] = "formal_abstract_subprogram_declaration",
[sym_subprogram_default] = "subprogram_default",
[sym_formal_package_declaration] = "formal_package_declaration",
[sym_global_aspect_definition] = "global_aspect_definition",
[sym_global_aspect_element] = "global_aspect_element",
[sym_global_mode] = "global_mode",
[sym_handled_sequence_of_statements] = "handled_sequence_of_statements",
[sym_loop_label] = "loop_label",
[sym_label] = "label",
[sym_mod_clause] = "mod_clause",
[sym_non_empty_mode] = "non_empty_mode",
[sym_null_procedure_declaration] = "null_procedure_declaration",
[sym_null_statement] = "null_statement",
[sym_number_declaration] = "number_declaration",
[sym_object_declaration] = "object_declaration",
[sym_single_task_declaration] = "single_task_declaration",
[sym_task_type_declaration] = "task_type_declaration",
[sym_non_empty_entry_body_formal_part] = "non_empty_entry_body_formal_part",
[sym__task_item] = "_task_item",
[sym_task_definition] = "task_definition",
[sym_overriding_indicator] = "overriding_indicator",
[sym__parameter_and_result_profile] = "_parameter_and_result_profile",
[sym_parameter_specification] = "parameter_specification",
[sym__parameter_specification_list] = "_parameter_specification_list",
[sym_pragma_g] = "pragma_g",
[sym_pragma_argument_association] = "pragma_argument_association",
[sym_if_expression] = "if_expression",
[sym_elsif_expression_item] = "elsif_expression_item",
[sym_procedure_specification] = "procedure_specification",
[sym_record_representation_clause] = "record_representation_clause",
[sym__renaming_declaration] = "_renaming_declaration",
[sym_object_renaming_declaration] = "object_renaming_declaration",
[sym_exception_renaming_declaration] = "exception_renaming_declaration",
[sym_package_renaming_declaration] = "package_renaming_declaration",
[sym_subprogram_renaming_declaration] = "subprogram_renaming_declaration",
[sym_generic_renaming_declaration] = "generic_renaming_declaration",
[sym_result_profile] = "result_profile",
[sym__sequence_of_statements] = "_sequence_of_statements",
[sym__simple_statement] = "_simple_statement",
[sym__statement] = "_statement",
[sym__compound_statement] = "_compound_statement",
[sym__select_statement] = "_select_statement",
[sym_entry_call_alternative] = "entry_call_alternative",
[sym_asynchronous_select] = "asynchronous_select",
[sym_triggering_alternative] = "triggering_alternative",
[sym_conditional_entry_call] = "conditional_entry_call",
[sym_delay_alternative] = "delay_alternative",
[sym_timed_entry_call] = "timed_entry_call",
[sym_guard] = "guard",
[sym_select_alternative] = "select_alternative",
[sym_accept_alternative] = "accept_alternative",
[sym_terminate_alternative] = "terminate_alternative",
[sym_selective_accept] = "selective_accept",
[sym_abort_statement] = "abort_statement",
[sym_requeue_statement] = "requeue_statement",
[sym_accept_statement] = "accept_statement",
[sym_case_statement_alternative] = "case_statement_alternative",
[sym_case_statement] = "case_statement",
[sym_block_statement] = "block_statement",
[sym_if_statement] = "if_statement",
[sym_elsif_statement_item] = "elsif_statement_item",
[sym_gnatprep_declarative_if_statement] = "gnatprep_declarative_if_statement",
[sym_gnatprep_if_statement] = "gnatprep_if_statement",
[sym_exit_statement] = "exit_statement",
[sym_goto_statement] = "goto_statement",
[sym__delay_statement] = "_delay_statement",
[sym_delay_until_statement] = "delay_until_statement",
[sym_delay_relative_statement] = "delay_relative_statement",
[sym_simple_return_statement] = "simple_return_statement",
[sym_extended_return_statement] = "extended_return_statement",
[sym_extended_return_object_declaration] = "extended_return_object_declaration",
[sym__return_subtype_indication] = "_return_subtype_indication",
[sym_procedure_call_statement] = "procedure_call_statement",
[sym_function_call] = "function_call",
[sym_raise_statement] = "raise_statement",
[sym_loop_statement] = "loop_statement",
[sym_iteration_scheme] = "iteration_scheme",
[sym_assignment_statement] = "assignment_statement",
[sym_subprogram_declaration] = "subprogram_declaration",
[sym_expression_function_declaration] = "expression_function_declaration",
[sym__subprogram_specification] = "_subprogram_specification",
[sym_subtype_declaration] = "subtype_declaration",
[sym_variant_part] = "variant_part",
[sym_variant_list] = "variant_list",
[sym_variant] = "variant",
[aux_sym_compilation_repeat1] = "compilation_repeat1",
[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",
[aux_sym_membership_choice_list_repeat1] = "membership_choice_list_repeat1",
[aux_sym__simple_expression_repeat1] = "_simple_expression_repeat1",
[aux_sym_term_repeat1] = "term_repeat1",
[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_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",
[aux_sym_discriminant_specification_list_repeat1] = "discriminant_specification_list_repeat1",
[aux_sym__discrete_subtype_definition_list_repeat1] = "_discrete_subtype_definition_list_repeat1",
[aux_sym__index_subtype_definition_list_repeat1] = "_index_subtype_definition_list_repeat1",
[aux_sym__enumeration_literal_list_repeat1] = "_enumeration_literal_list_repeat1",
[aux_sym__interface_list_repeat1] = "_interface_list_repeat1",
[aux_sym_component_list_repeat1] = "component_list_repeat1",
[aux_sym_positional_array_aggregate_repeat1] = "positional_array_aggregate_repeat1",
[aux_sym__array_component_association_list_repeat1] = "_array_component_association_list_repeat1",
[aux_sym_discrete_choice_list_repeat1] = "discrete_choice_list_repeat1",
[aux_sym_aspect_mark_list_repeat1] = "aspect_mark_list_repeat1",
[aux_sym_protected_definition_repeat1] = "protected_definition_repeat1",
[aux_sym_protected_definition_repeat2] = "protected_definition_repeat2",
[aux_sym_protected_body_repeat1] = "protected_body_repeat1",
[aux_sym_non_empty_declarative_part_repeat1] = "non_empty_declarative_part_repeat1",
[aux_sym_exception_choice_list_repeat1] = "exception_choice_list_repeat1",
[aux_sym_generic_formal_part_repeat1] = "generic_formal_part_repeat1",
[aux_sym_global_aspect_definition_repeat1] = "global_aspect_definition_repeat1",
[aux_sym_handled_sequence_of_statements_repeat1] = "handled_sequence_of_statements_repeat1",
[aux_sym_task_definition_repeat1] = "task_definition_repeat1",
[aux_sym__parameter_specification_list_repeat1] = "_parameter_specification_list_repeat1",
[aux_sym_pragma_g_repeat1] = "pragma_g_repeat1",
[aux_sym_if_expression_repeat1] = "if_expression_repeat1",
[aux_sym_record_representation_clause_repeat1] = "record_representation_clause_repeat1",
[aux_sym__sequence_of_statements_repeat1] = "_sequence_of_statements_repeat1",
[aux_sym__sequence_of_statements_repeat2] = "_sequence_of_statements_repeat2",
[aux_sym_selective_accept_repeat1] = "selective_accept_repeat1",
[aux_sym_case_statement_repeat1] = "case_statement_repeat1",
[aux_sym_if_statement_repeat1] = "if_statement_repeat1",
[aux_sym_gnatprep_declarative_if_statement_repeat1] = "gnatprep_declarative_if_statement_repeat1",
[aux_sym_gnatprep_if_statement_repeat1] = "gnatprep_if_statement_repeat1",
[aux_sym_variant_list_repeat1] = "variant_list_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym_gnatprep_identifier] = sym_gnatprep_identifier,
[sym_comment] = sym_comment,
[sym_string_literal] = sym_string_literal,
[sym_character_literal] = sym_character_literal,
[sym_numeric_literal] = sym_numeric_literal,
[aux_sym_git_conflict_mark_token1] = aux_sym_git_conflict_mark_token1,
[aux_sym_git_conflict_mark_token2] = aux_sym_git_conflict_mark_token2,
[aux_sym_git_conflict_mark_token3] = aux_sym_git_conflict_mark_token3,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_AMP] = anon_sym_AMP,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_mod] = anon_sym_mod,
[anon_sym_rem] = anon_sym_rem,
[sym_tick] = sym_tick,
[anon_sym_DOT] = anon_sym_DOT,
[sym_target_name] = sym_target_name,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[aux_sym_value_sequence_token1] = aux_sym_value_sequence_token1,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[aux_sym_chunk_specification_token1] = aux_sym_chunk_specification_token1,
[aux_sym_iterated_element_association_token1] = aux_sym_iterated_element_association_token1,
[aux_sym_iterated_element_association_token2] = aux_sym_iterated_element_association_token2,
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
[aux_sym_loop_parameter_specification_token1] = aux_sym_loop_parameter_specification_token1,
[aux_sym_iterator_filter_token1] = aux_sym_iterator_filter_token1,
[anon_sym_COLON] = anon_sym_COLON,
[aux_sym_iterator_specification_token1] = aux_sym_iterator_specification_token1,
[aux_sym_attribute_designator_token1] = aux_sym_attribute_designator_token1,
[aux_sym_attribute_designator_token2] = aux_sym_attribute_designator_token2,
[aux_sym_attribute_designator_token3] = aux_sym_attribute_designator_token3,
[aux_sym_attribute_designator_token4] = anon_sym_mod,
[aux_sym_compilation_unit_token1] = aux_sym_compilation_unit_token1,
[anon_sym_SEMI] = anon_sym_SEMI,
[aux_sym_package_specification_token1] = aux_sym_package_specification_token1,
[aux_sym_package_specification_token2] = aux_sym_package_specification_token2,
[aux_sym_package_specification_token3] = aux_sym_package_specification_token3,
[aux_sym_with_clause_token1] = aux_sym_with_clause_token1,
[aux_sym_with_clause_token2] = aux_sym_with_clause_token2,
[aux_sym_use_clause_token1] = anon_sym_all,
[aux_sym_use_clause_token2] = aux_sym_use_clause_token2,
[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,
[aux_sym_expression_token2] = aux_sym_expression_token2,
[aux_sym_expression_token3] = aux_sym_expression_token3,
[aux_sym_expression_token4] = aux_sym_expression_token4,
[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_STAR_STAR] = anon_sym_STAR_STAR,
[aux_sym_factor_abs_token1] = aux_sym_factor_abs_token1,
[aux_sym_primary_null_token1] = anon_sym_null,
[aux_sym_allocator_token1] = aux_sym_allocator_token1,
[aux_sym_access_to_subprogram_definition_token1] = aux_sym_access_to_subprogram_definition_token1,
[aux_sym_access_to_subprogram_definition_token2] = aux_sym_access_to_subprogram_definition_token2,
[aux_sym_access_to_subprogram_definition_token3] = aux_sym_access_to_subprogram_definition_token3,
[aux_sym_general_access_modifier_token1] = aux_sym_general_access_modifier_token1,
[anon_sym_LT_GT] = anon_sym_LT_GT,
[aux_sym_declare_expression_token1] = aux_sym_declare_expression_token1,
[aux_sym_quantifier_token1] = aux_sym_quantifier_token1,
[aux_sym_case_expression_token1] = aux_sym_case_expression_token1,
[aux_sym_component_choice_list_token1] = aux_sym_component_choice_list_token1,
[aux_sym_record_component_association_list_token1] = aux_sym_record_component_association_list_token1,
[aux_sym_private_type_declaration_token1] = aux_sym_private_type_declaration_token1,
[aux_sym_private_type_declaration_token2] = aux_sym_private_type_declaration_token2,
[aux_sym_private_extension_declaration_token1] = aux_sym_private_extension_declaration_token1,
[aux_sym_array_type_definition_token1] = aux_sym_array_type_definition_token1,
[aux_sym_interface_type_definition_token1] = aux_sym_interface_type_definition_token1,
[aux_sym_interface_type_definition_token2] = aux_sym_interface_type_definition_token2,
[aux_sym_component_list_token1] = anon_sym_SEMI,
[aux_sym_component_definition_token1] = aux_sym_component_definition_token1,
[aux_sym__aspect_mark_token1] = aux_sym__aspect_mark_token1,
[anon_sym_COLON_EQ] = anon_sym_COLON_EQ,
[aux_sym_at_clause_token1] = aux_sym_at_clause_token1,
[aux_sym_entry_declaration_token1] = aux_sym_entry_declaration_token1,
[aux_sym_exception_declaration_token1] = aux_sym_exception_declaration_token1,
[aux_sym_generic_formal_part_token1] = aux_sym_generic_formal_part_token1,
[anon_sym_null] = anon_sym_null,
[anon_sym_all] = anon_sym_all,
[aux_sym_global_mode_token1] = aux_sym_global_mode_token1,
[anon_sym_LT_LT] = anon_sym_LT_LT,
[anon_sym_GT_GT] = anon_sym_GT_GT,
[aux_sym_non_empty_mode_token1] = aux_sym_non_empty_mode_token1,
[aux_sym_pragma_g_token1] = aux_sym_pragma_g_token1,
[aux_sym_if_expression_token1] = aux_sym_if_expression_token1,
[aux_sym_elsif_expression_item_token1] = aux_sym_elsif_expression_item_token1,
[aux_sym_object_renaming_declaration_token1] = aux_sym_object_renaming_declaration_token1,
[aux_sym_result_profile_token1] = aux_sym_result_profile_token1,
[aux_sym_asynchronous_select_token1] = aux_sym_asynchronous_select_token1,
[aux_sym_asynchronous_select_token2] = aux_sym_asynchronous_select_token2,
[aux_sym_terminate_alternative_token1] = aux_sym_terminate_alternative_token1,
[aux_sym_requeue_statement_token1] = aux_sym_requeue_statement_token1,
[aux_sym_accept_statement_token1] = aux_sym_accept_statement_token1,
[aux_sym_accept_statement_token2] = aux_sym_accept_statement_token2,
[aux_sym_gnatprep_declarative_if_statement_token1] = aux_sym_gnatprep_declarative_if_statement_token1,
[aux_sym_gnatprep_declarative_if_statement_token2] = aux_sym_gnatprep_declarative_if_statement_token2,
[aux_sym_gnatprep_declarative_if_statement_token3] = aux_sym_gnatprep_declarative_if_statement_token3,
[aux_sym_gnatprep_declarative_if_statement_token4] = aux_sym_gnatprep_declarative_if_statement_token4,
[aux_sym_exit_statement_token1] = aux_sym_exit_statement_token1,
[aux_sym_goto_statement_token1] = aux_sym_goto_statement_token1,
[aux_sym_delay_until_statement_token1] = aux_sym_delay_until_statement_token1,
[aux_sym_delay_until_statement_token2] = aux_sym_delay_until_statement_token2,
[aux_sym_loop_statement_token1] = aux_sym_loop_statement_token1,
[aux_sym_iteration_scheme_token1] = aux_sym_iteration_scheme_token1,
[aux_sym_subtype_declaration_token1] = aux_sym_subtype_declaration_token1,
[sym_compilation] = sym_compilation,
[sym_relational_operator] = sym_relational_operator,
[sym_binary_adding_operator] = sym_binary_adding_operator,
[sym_unary_adding_operator] = sym_unary_adding_operator,
[sym_multiplying_operator] = sym_multiplying_operator,
[sym__name] = sym__name,
[sym_selected_component] = sym_selected_component,
[sym__name_list] = sym__name_list,
[sym__defining_identifier_list] = sym__defining_identifier_list,
[sym_slice] = sym_slice,
[sym__attribute_reference] = sym__attribute_reference,
[sym__reduction_attribute_reference] = sym__reduction_attribute_reference,
[sym_reduction_attribute_designator] = sym_reduction_attribute_designator,
[sym_reduction_specification] = sym_reduction_specification,
[sym_value_sequence] = sym_value_sequence,
[sym_chunk_specification] = sym_chunk_specification,
[sym_iterated_element_association] = sym_iterated_element_association,
[sym__discrete_subtype_definition] = sym__discrete_subtype_definition,
[sym_loop_parameter_specification] = sym_loop_parameter_specification,
[sym__loop_parameter_subtype_indication] = sym__loop_parameter_subtype_indication,
[sym_iterator_filter] = sym_iterator_filter,
[sym_iterator_specification] = sym_iterator_specification,
[sym_attribute_designator] = sym_attribute_designator,
[sym_qualified_expression] = sym_qualified_expression,
[sym_compilation_unit] = sym_compilation_unit,
[sym__declarative_item] = sym__declarative_item,
[sym__basic_declarative_item] = sym__basic_declarative_item,
[sym__basic_declaration] = sym__basic_declaration,
[sym__package_declaration] = sym__package_declaration,
[sym_package_specification] = sym_package_specification,
[sym_with_clause] = sym_with_clause,
[sym_use_clause] = sym_use_clause,
[sym_subunit] = sym_subunit,
[sym__proper_body] = sym__proper_body,
[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,
[sym_range_attribute_designator] = sym_range_attribute_designator,
[sym_range_constraint] = sym_range_constraint,
[sym_expression] = sym_expression,
[sym__relation] = sym__relation,
[sym_relation_membership] = sym_relation_membership,
[sym_raise_expression] = sym_raise_expression,
[sym_membership_choice_list] = sym_membership_choice_list,
[sym__membership_choice] = sym__membership_choice,
[sym__simple_expression] = sym__simple_expression,
[sym_term] = sym_term,
[sym__factor] = sym__factor,
[sym_factor_power] = sym_factor_power,
[sym_factor_abs] = sym_factor_abs,
[sym_factor_not] = sym_factor_not,
[sym__parenthesized_expression] = sym__parenthesized_expression,
[sym__primary] = sym__primary,
[sym_primary_null] = sym_primary_null,
[sym_allocator] = sym_allocator,
[sym__subtype_indication_paren_constraint] = sym__subtype_indication_paren_constraint,
[sym_subpool_specification] = sym_subpool_specification,
[sym__access_type_definition] = sym__access_type_definition,
[sym_access_to_subprogram_definition] = sym_access_to_subprogram_definition,
[sym_access_to_object_definition] = sym_access_to_object_definition,
[sym_general_access_modifier] = sym_general_access_modifier,
[sym_access_definition] = sym_access_definition,
[sym_actual_parameter_part] = sym_actual_parameter_part,
[sym_parameter_association] = sym_parameter_association,
[sym__conditional_expression] = sym__conditional_expression,
[sym__conditional_quantified_expression] = sym__conditional_quantified_expression,
[sym_quantified_expression] = sym_quantified_expression,
[sym_declare_expression] = sym_declare_expression,
[sym__declare_item] = sym__declare_item,
[sym_quantifier] = sym_quantifier,
[sym_case_expression] = sym_case_expression,
[sym_case_expression_alternative] = sym_case_expression_alternative,
[sym_component_choice_list] = sym_component_choice_list,
[sym__aggregate] = sym__aggregate,
[sym__delta_aggregate] = sym__delta_aggregate,
[sym_extension_aggregate] = sym_extension_aggregate,
[sym_record_delta_aggregate] = sym_record_delta_aggregate,
[sym_array_delta_aggregate] = sym_array_delta_aggregate,
[sym_record_aggregate] = sym_record_aggregate,
[sym_record_component_association_list] = sym_record_component_association_list,
[sym__record_component_association_list_or_expression] = sym__record_component_association_list_or_expression,
[sym__named_record_component_association] = sym__named_record_component_association,
[sym_null_exclusion] = sym_null_exclusion,
[sym_index_constraint] = sym_index_constraint,
[sym_digits_constraint] = sym_digits_constraint,
[sym_delta_constraint] = sym_delta_constraint,
[sym__basic_declarative_item_pragma] = sym__basic_declarative_item_pragma,
[sym__type_declaration] = sym__type_declaration,
[sym_full_type_declaration] = sym_full_type_declaration,
[sym_private_type_declaration] = sym_private_type_declaration,
[sym_private_extension_declaration] = sym_private_extension_declaration,
[sym__discriminant_part] = sym__discriminant_part,
[sym_unknown_discriminant_part] = sym_unknown_discriminant_part,
[sym_known_discriminant_part] = sym_known_discriminant_part,
[sym_incomplete_type_declaration] = sym_incomplete_type_declaration,
[sym_discriminant_specification_list] = sym_discriminant_specification_list,
[sym_discriminant_specification] = sym_discriminant_specification,
[sym__type_definition] = sym__type_definition,
[sym_array_type_definition] = sym_array_type_definition,
[sym__discrete_subtype_definition_list] = sym__discrete_subtype_definition_list,
[sym__discrete_range] = sym__discrete_range,
[sym__index_subtype_definition_list] = sym__index_subtype_definition_list,
[sym_index_subtype_definition] = sym_index_subtype_definition,
[sym_enumeration_type_definition] = sym_enumeration_type_definition,
[sym__enumeration_literal_list] = sym__enumeration_literal_list,
[sym__enumeration_literal_specification] = sym__enumeration_literal_specification,
[sym__integer_type_definition] = sym__integer_type_definition,
[sym_modular_type_definition] = sym_modular_type_definition,
[sym__real_type_definition] = sym__real_type_definition,
[sym_floating_point_definition] = sym_floating_point_definition,
[sym_real_range_specification] = sym_real_range_specification,
[sym__fixed_point_definition] = sym__fixed_point_definition,
[sym_decimal_fixed_point_definition] = sym_decimal_fixed_point_definition,
[sym_ordinary_fixed_point_definition] = sym_ordinary_fixed_point_definition,
[sym_signed_integer_type_definition] = sym_signed_integer_type_definition,
[sym_derived_type_definition] = sym_derived_type_definition,
[sym_interface_type_definition] = sym_interface_type_definition,
[sym__interface_list] = sym__interface_list,
[sym_record_extension_part] = sym_record_extension_part,
[sym_record_type_definition] = sym_record_type_definition,
[sym_record_definition] = sym_record_definition,
[sym_component_list] = sym_component_list,
[sym__component_item] = sym__component_item,
[sym_component_declaration] = sym_component_declaration,
[sym_component_definition] = sym_component_definition,
[sym__array_aggregate] = sym__array_aggregate,
[sym_positional_array_aggregate] = sym_positional_array_aggregate,
[sym_null_array_aggregate] = sym_null_array_aggregate,
[sym_named_array_aggregate] = sym_named_array_aggregate,
[sym__array_component_association_list] = sym__array_component_association_list,
[sym_array_component_association] = sym_array_component_association,
[sym_discrete_choice_list] = sym_discrete_choice_list,
[sym_discrete_choice] = sym_discrete_choice,
[sym_aspect_association] = sym_aspect_association,
[sym__aspect_clause] = sym__aspect_clause,
[sym__aspect_definition] = sym__aspect_definition,
[sym__aspect_mark] = sym__aspect_mark,
[sym_aspect_mark_list] = sym_aspect_mark_list,
[sym_aspect_specification] = sym_aspect_specification,
[sym__assign_value] = sym__assign_value,
[sym_at_clause] = sym_at_clause,
[sym_attribute_definition_clause] = sym_attribute_definition_clause,
[sym_body_stub] = sym_body_stub,
[sym_subprogram_body_stub] = sym_subprogram_body_stub,
[sym_package_body_stub] = sym_package_body_stub,
[sym_task_body] = sym_task_body,
[sym_task_body_stub] = sym_task_body_stub,
[sym__protected_operation_declaration] = sym__protected_operation_declaration,
[sym__protected_element_declaration] = sym__protected_element_declaration,
[sym__protected_operation_item] = sym__protected_operation_item,
[sym_protected_definition] = sym_protected_definition,
[sym_protected_type_declaration] = sym_protected_type_declaration,
[sym_single_protected_declaration] = sym_single_protected_declaration,
[sym_protected_body] = sym_protected_body,
[sym_protected_body_stub] = sym_protected_body_stub,
[sym_choice_parameter_specification] = sym_choice_parameter_specification,
[sym_component_clause] = sym_component_clause,
[sym__declarative_item_pragma] = sym__declarative_item_pragma,
[sym_non_empty_declarative_part] = sym_non_empty_declarative_part,
[sym_entry_declaration] = sym_entry_declaration,
[sym_entry_body] = sym_entry_body,
[sym_entry_barrier] = sym_entry_barrier,
[sym_entry_index_specification] = sym_entry_index_specification,
[sym_enumeration_aggregate] = sym_enumeration_aggregate,
[sym_enumeration_representation_clause] = sym_enumeration_representation_clause,
[sym_exception_choice_list] = sym_exception_choice_list,
[sym_exception_choice] = sym_exception_choice,
[sym_exception_declaration] = sym_exception_declaration,
[sym_exception_handler] = sym_exception_handler,
[sym_formal_part] = sym_formal_part,
[sym_function_specification] = sym_function_specification,
[sym__generic_declaration] = sym__generic_declaration,
[sym_generic_formal_part] = sym_generic_formal_part,
[sym__generic_formal_parameter_declaration] = sym__generic_formal_parameter_declaration,
[sym_generic_subprogram_declaration] = sym_generic_subprogram_declaration,
[sym_generic_package_declaration] = sym_generic_package_declaration,
[sym_generic_instantiation] = sym_generic_instantiation,
[sym_formal_object_declaration] = sym_formal_object_declaration,
[sym__formal_type_declaration] = sym__formal_type_declaration,
[sym_formal_complete_type_declaration] = sym_formal_complete_type_declaration,
[sym_formal_incomplete_type_declaration] = sym_formal_incomplete_type_declaration,
[sym__formal_type_definition] = sym__formal_type_definition,
[sym_formal_private_type_definition] = sym_formal_private_type_definition,
[sym_formal_derived_type_definition] = sym_formal_derived_type_definition,
[sym_formal_discrete_type_definition] = sym_formal_discrete_type_definition,
[sym_formal_signed_integer_type_definition] = sym_formal_signed_integer_type_definition,
[sym_formal_modular_type_definition] = sym_formal_modular_type_definition,
[sym_formal_floating_point_definition] = sym_formal_floating_point_definition,
[sym_formal_ordinary_fixed_point_definition] = sym_formal_ordinary_fixed_point_definition,
[sym_formal_decimal_fixed_point_definition] = sym_formal_decimal_fixed_point_definition,
[sym_formal_array_type_definition] = sym_formal_array_type_definition,
[sym_formal_access_type_definition] = sym_formal_access_type_definition,
[sym_formal_interface_type_definition] = sym_formal_interface_type_definition,
[sym_formal_subprogram_declaration] = sym_formal_subprogram_declaration,
[sym_formal_concrete_subprogram_declaration] = sym_formal_concrete_subprogram_declaration,
[sym_formal_abstract_subprogram_declaration] = sym_formal_abstract_subprogram_declaration,
[sym_subprogram_default] = sym_subprogram_default,
[sym_formal_package_declaration] = sym_formal_package_declaration,
[sym_global_aspect_definition] = sym_global_aspect_definition,
[sym_global_aspect_element] = sym_global_aspect_element,
[sym_global_mode] = sym_global_mode,
[sym_handled_sequence_of_statements] = sym_handled_sequence_of_statements,
[sym_loop_label] = sym_loop_label,
[sym_label] = sym_label,
[sym_mod_clause] = sym_mod_clause,
[sym_non_empty_mode] = sym_non_empty_mode,
[sym_null_procedure_declaration] = sym_null_procedure_declaration,
[sym_null_statement] = sym_null_statement,
[sym_number_declaration] = sym_number_declaration,
[sym_object_declaration] = sym_object_declaration,
[sym_single_task_declaration] = sym_single_task_declaration,
[sym_task_type_declaration] = sym_task_type_declaration,
[sym_non_empty_entry_body_formal_part] = sym_non_empty_entry_body_formal_part,
[sym__task_item] = sym__task_item,
[sym_task_definition] = sym_task_definition,
[sym_overriding_indicator] = sym_overriding_indicator,
[sym__parameter_and_result_profile] = sym__parameter_and_result_profile,
[sym_parameter_specification] = sym_parameter_specification,
[sym__parameter_specification_list] = sym__parameter_specification_list,
[sym_pragma_g] = sym_pragma_g,
[sym_pragma_argument_association] = sym_pragma_argument_association,
[sym_if_expression] = sym_if_expression,
[sym_elsif_expression_item] = sym_elsif_expression_item,
[sym_procedure_specification] = sym_procedure_specification,
[sym_record_representation_clause] = sym_record_representation_clause,
[sym__renaming_declaration] = sym__renaming_declaration,
[sym_object_renaming_declaration] = sym_object_renaming_declaration,
[sym_exception_renaming_declaration] = sym_exception_renaming_declaration,
[sym_package_renaming_declaration] = sym_package_renaming_declaration,
[sym_subprogram_renaming_declaration] = sym_subprogram_renaming_declaration,
[sym_generic_renaming_declaration] = sym_generic_renaming_declaration,
[sym_result_profile] = sym_result_profile,
[sym__sequence_of_statements] = sym__sequence_of_statements,
[sym__simple_statement] = sym__simple_statement,
[sym__statement] = sym__statement,
[sym__compound_statement] = sym__compound_statement,
[sym__select_statement] = sym__select_statement,
[sym_entry_call_alternative] = sym_entry_call_alternative,
[sym_asynchronous_select] = sym_asynchronous_select,
[sym_triggering_alternative] = sym_triggering_alternative,
[sym_conditional_entry_call] = sym_conditional_entry_call,
[sym_delay_alternative] = sym_delay_alternative,
[sym_timed_entry_call] = sym_timed_entry_call,
[sym_guard] = sym_guard,
[sym_select_alternative] = sym_select_alternative,
[sym_accept_alternative] = sym_accept_alternative,
[sym_terminate_alternative] = sym_terminate_alternative,
[sym_selective_accept] = sym_selective_accept,
[sym_abort_statement] = sym_abort_statement,
[sym_requeue_statement] = sym_requeue_statement,
[sym_accept_statement] = sym_accept_statement,
[sym_case_statement_alternative] = sym_case_statement_alternative,
[sym_case_statement] = sym_case_statement,
[sym_block_statement] = sym_block_statement,
[sym_if_statement] = sym_if_statement,
[sym_elsif_statement_item] = sym_elsif_statement_item,
[sym_gnatprep_declarative_if_statement] = sym_gnatprep_declarative_if_statement,
[sym_gnatprep_if_statement] = sym_gnatprep_if_statement,
[sym_exit_statement] = sym_exit_statement,
[sym_goto_statement] = sym_goto_statement,
[sym__delay_statement] = sym__delay_statement,
[sym_delay_until_statement] = sym_delay_until_statement,
[sym_delay_relative_statement] = sym_delay_relative_statement,
[sym_simple_return_statement] = sym_simple_return_statement,
[sym_extended_return_statement] = sym_extended_return_statement,
[sym_extended_return_object_declaration] = sym_extended_return_object_declaration,
[sym__return_subtype_indication] = sym__return_subtype_indication,
[sym_procedure_call_statement] = sym_procedure_call_statement,
[sym_function_call] = sym_function_call,
[sym_raise_statement] = sym_raise_statement,
[sym_loop_statement] = sym_loop_statement,
[sym_iteration_scheme] = sym_iteration_scheme,
[sym_assignment_statement] = sym_assignment_statement,
[sym_subprogram_declaration] = sym_subprogram_declaration,
[sym_expression_function_declaration] = sym_expression_function_declaration,
[sym__subprogram_specification] = sym__subprogram_specification,
[sym_subtype_declaration] = sym_subtype_declaration,
[sym_variant_part] = sym_variant_part,
[sym_variant_list] = sym_variant_list,
[sym_variant] = sym_variant,
[aux_sym_compilation_repeat1] = aux_sym_compilation_repeat1,
[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,
[aux_sym_membership_choice_list_repeat1] = aux_sym_membership_choice_list_repeat1,
[aux_sym__simple_expression_repeat1] = aux_sym__simple_expression_repeat1,
[aux_sym_term_repeat1] = aux_sym_term_repeat1,
[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_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,
[aux_sym_discriminant_specification_list_repeat1] = aux_sym_discriminant_specification_list_repeat1,
[aux_sym__discrete_subtype_definition_list_repeat1] = aux_sym__discrete_subtype_definition_list_repeat1,
[aux_sym__index_subtype_definition_list_repeat1] = aux_sym__index_subtype_definition_list_repeat1,
[aux_sym__enumeration_literal_list_repeat1] = aux_sym__enumeration_literal_list_repeat1,
[aux_sym__interface_list_repeat1] = aux_sym__interface_list_repeat1,
[aux_sym_component_list_repeat1] = aux_sym_component_list_repeat1,
[aux_sym_positional_array_aggregate_repeat1] = aux_sym_positional_array_aggregate_repeat1,
[aux_sym__array_component_association_list_repeat1] = aux_sym__array_component_association_list_repeat1,
[aux_sym_discrete_choice_list_repeat1] = aux_sym_discrete_choice_list_repeat1,
[aux_sym_aspect_mark_list_repeat1] = aux_sym_aspect_mark_list_repeat1,
[aux_sym_protected_definition_repeat1] = aux_sym_protected_definition_repeat1,
[aux_sym_protected_definition_repeat2] = aux_sym_protected_definition_repeat2,
[aux_sym_protected_body_repeat1] = aux_sym_protected_body_repeat1,
[aux_sym_non_empty_declarative_part_repeat1] = aux_sym_non_empty_declarative_part_repeat1,
[aux_sym_exception_choice_list_repeat1] = aux_sym_exception_choice_list_repeat1,
[aux_sym_generic_formal_part_repeat1] = aux_sym_generic_formal_part_repeat1,
[aux_sym_global_aspect_definition_repeat1] = aux_sym_global_aspect_definition_repeat1,
[aux_sym_handled_sequence_of_statements_repeat1] = aux_sym_handled_sequence_of_statements_repeat1,
[aux_sym_task_definition_repeat1] = aux_sym_task_definition_repeat1,
[aux_sym__parameter_specification_list_repeat1] = aux_sym__parameter_specification_list_repeat1,
[aux_sym_pragma_g_repeat1] = aux_sym_pragma_g_repeat1,
[aux_sym_if_expression_repeat1] = aux_sym_if_expression_repeat1,
[aux_sym_record_representation_clause_repeat1] = aux_sym_record_representation_clause_repeat1,
[aux_sym__sequence_of_statements_repeat1] = aux_sym__sequence_of_statements_repeat1,
[aux_sym__sequence_of_statements_repeat2] = aux_sym__sequence_of_statements_repeat2,
[aux_sym_selective_accept_repeat1] = aux_sym_selective_accept_repeat1,
[aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1,
[aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1,
[aux_sym_gnatprep_declarative_if_statement_repeat1] = aux_sym_gnatprep_declarative_if_statement_repeat1,
[aux_sym_gnatprep_if_statement_repeat1] = aux_sym_gnatprep_if_statement_repeat1,
[aux_sym_variant_list_repeat1] = aux_sym_variant_list_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym_gnatprep_identifier] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_string_literal] = {
.visible = true,
.named = true,
},
[sym_character_literal] = {
.visible = true,
.named = true,
},
[sym_numeric_literal] = {
.visible = true,
.named = true,
},
[aux_sym_git_conflict_mark_token1] = {
.visible = false,
.named = false,
},
[aux_sym_git_conflict_mark_token2] = {
.visible = false,
.named = false,
},
[aux_sym_git_conflict_mark_token3] = {
.visible = false,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_mod] = {
.visible = true,
.named = false,
},
[anon_sym_rem] = {
.visible = true,
.named = false,
},
[sym_tick] = {
.visible = true,
.named = true,
},
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[sym_target_name] = {
.visible = true,
.named = true,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[aux_sym_value_sequence_token1] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[aux_sym_chunk_specification_token1] = {
.visible = true,
.named = false,
},
[aux_sym_iterated_element_association_token1] = {
.visible = true,
.named = false,
},
[aux_sym_iterated_element_association_token2] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_GT] = {
.visible = true,
.named = false,
},
[aux_sym_loop_parameter_specification_token1] = {
.visible = true,
.named = false,
},
[aux_sym_iterator_filter_token1] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[aux_sym_iterator_specification_token1] = {
.visible = true,
.named = false,
},
[aux_sym_attribute_designator_token1] = {
.visible = true,
.named = false,
},
[aux_sym_attribute_designator_token2] = {
.visible = true,
.named = false,
},
[aux_sym_attribute_designator_token3] = {
.visible = true,
.named = false,
},
[aux_sym_attribute_designator_token4] = {
.visible = true,
.named = false,
},
[aux_sym_compilation_unit_token1] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[aux_sym_package_specification_token1] = {
.visible = true,
.named = false,
},
[aux_sym_package_specification_token2] = {
.visible = true,
.named = false,
},
[aux_sym_package_specification_token3] = {
.visible = true,
.named = false,
},
[aux_sym_with_clause_token1] = {
.visible = true,
.named = false,
},
[aux_sym_with_clause_token2] = {
.visible = true,
.named = false,
},
[aux_sym_use_clause_token1] = {
.visible = true,
.named = false,
},
[aux_sym_use_clause_token2] = {
.visible = true,
.named = false,
},
[aux_sym_subunit_token1] = {
.visible = true,
.named = false,
},
[aux_sym_subprogram_body_token1] = {
.visible = true,
.named = false,
},
[aux_sym_package_body_token1] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
[aux_sym_range_attribute_designator_token1] = {
.visible = true,
.named = false,
},
[aux_sym_expression_token1] = {
.visible = true,
.named = false,
},
[aux_sym_expression_token2] = {
.visible = true,
.named = false,
},
[aux_sym_expression_token3] = {
.visible = true,
.named = false,
},
[aux_sym_expression_token4] = {
.visible = true,
.named = false,
},
[aux_sym_expression_token5] = {
.visible = true,
.named = false,
},
[aux_sym_relation_membership_token1] = {
.visible = true,
.named = false,
},
[aux_sym_raise_expression_token1] = {
.visible = true,
.named = false,
},
[anon_sym_STAR_STAR] = {
.visible = true,
.named = false,
},
[aux_sym_factor_abs_token1] = {
.visible = true,
.named = false,
},
[aux_sym_primary_null_token1] = {
.visible = true,
.named = false,
},
[aux_sym_allocator_token1] = {
.visible = true,
.named = false,
},
[aux_sym_access_to_subprogram_definition_token1] = {
.visible = true,
.named = false,
},
[aux_sym_access_to_subprogram_definition_token2] = {
.visible = true,
.named = false,
},
[aux_sym_access_to_subprogram_definition_token3] = {
.visible = true,
.named = false,
},
[aux_sym_general_access_modifier_token1] = {
.visible = true,
.named = false,
},
[anon_sym_LT_GT] = {
.visible = true,
.named = false,
},
[aux_sym_declare_expression_token1] = {
.visible = true,
.named = false,
},
[aux_sym_quantifier_token1] = {
.visible = true,
.named = false,
},
[aux_sym_case_expression_token1] = {
.visible = true,
.named = false,
},
[aux_sym_component_choice_list_token1] = {
.visible = true,
.named = false,
},
[aux_sym_record_component_association_list_token1] = {
.visible = true,
.named = false,
},
[aux_sym_private_type_declaration_token1] = {
.visible = true,
.named = false,
},
[aux_sym_private_type_declaration_token2] = {
.visible = true,
.named = false,
},
[aux_sym_private_extension_declaration_token1] = {
.visible = true,
.named = false,
},
[aux_sym_array_type_definition_token1] = {
.visible = true,
.named = false,
},
[aux_sym_interface_type_definition_token1] = {
.visible = true,
.named = false,
},
[aux_sym_interface_type_definition_token2] = {
.visible = true,
.named = false,
},
[aux_sym_component_list_token1] = {
.visible = true,
.named = false,
},
[aux_sym_component_definition_token1] = {
.visible = true,
.named = false,
},
[aux_sym__aspect_mark_token1] = {
.visible = true,
.named = false,
},
[anon_sym_COLON_EQ] = {
.visible = true,
.named = false,
},
[aux_sym_at_clause_token1] = {
.visible = true,
.named = false,
},
[aux_sym_entry_declaration_token1] = {
.visible = true,
.named = false,
},
[aux_sym_exception_declaration_token1] = {
.visible = true,
.named = false,
},
[aux_sym_generic_formal_part_token1] = {
.visible = true,
.named = false,
},
[anon_sym_null] = {
.visible = true,
.named = false,
},
[anon_sym_all] = {
.visible = true,
.named = false,
},
[aux_sym_global_mode_token1] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT_GT] = {
.visible = true,
.named = false,
},
[aux_sym_non_empty_mode_token1] = {
.visible = true,
.named = false,
},
[aux_sym_pragma_g_token1] = {
.visible = true,
.named = false,
},
[aux_sym_if_expression_token1] = {
.visible = true,
.named = false,
},
[aux_sym_elsif_expression_item_token1] = {
.visible = true,
.named = false,
},
[aux_sym_object_renaming_declaration_token1] = {
.visible = true,
.named = false,
},
[aux_sym_result_profile_token1] = {
.visible = true,
.named = false,
},
[aux_sym_asynchronous_select_token1] = {
.visible = true,
.named = false,
},
[aux_sym_asynchronous_select_token2] = {
.visible = true,
.named = false,
},
[aux_sym_terminate_alternative_token1] = {
.visible = true,
.named = false,
},
[aux_sym_requeue_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_accept_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_accept_statement_token2] = {
.visible = true,
.named = false,
},
[aux_sym_gnatprep_declarative_if_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_gnatprep_declarative_if_statement_token2] = {
.visible = true,
.named = false,
},
[aux_sym_gnatprep_declarative_if_statement_token3] = {
.visible = true,
.named = false,
},
[aux_sym_gnatprep_declarative_if_statement_token4] = {
.visible = true,
.named = false,
},
[aux_sym_exit_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_goto_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_delay_until_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_delay_until_statement_token2] = {
.visible = true,
.named = false,
},
[aux_sym_loop_statement_token1] = {
.visible = true,
.named = false,
},
[aux_sym_iteration_scheme_token1] = {
.visible = true,
.named = false,
},
[aux_sym_subtype_declaration_token1] = {
.visible = true,
.named = false,
},
[sym_compilation] = {
.visible = true,
.named = true,
},
[sym_relational_operator] = {
.visible = true,
.named = true,
},
[sym_binary_adding_operator] = {
.visible = true,
.named = true,
},
[sym_unary_adding_operator] = {
.visible = true,
.named = true,
},
[sym_multiplying_operator] = {
.visible = true,
.named = true,
},
[sym__name] = {
.visible = false,
.named = true,
},
[sym_selected_component] = {
.visible = true,
.named = true,
},
[sym__name_list] = {
.visible = false,
.named = true,
},
[sym__defining_identifier_list] = {
.visible = false,
.named = true,
},
[sym_slice] = {
.visible = true,
.named = true,
},
[sym__attribute_reference] = {
.visible = false,
.named = true,
},
[sym__reduction_attribute_reference] = {
.visible = false,
.named = true,
},
[sym_reduction_attribute_designator] = {
.visible = true,
.named = true,
},
[sym_reduction_specification] = {
.visible = true,
.named = true,
},
[sym_value_sequence] = {
.visible = true,
.named = true,
},
[sym_chunk_specification] = {
.visible = true,
.named = true,
},
[sym_iterated_element_association] = {
.visible = true,
.named = true,
},
[sym__discrete_subtype_definition] = {
.visible = false,
.named = true,
},
[sym_loop_parameter_specification] = {
.visible = true,
.named = true,
},
[sym__loop_parameter_subtype_indication] = {
.visible = false,
.named = true,
},
[sym_iterator_filter] = {
.visible = true,
.named = true,
},
[sym_iterator_specification] = {
.visible = true,
.named = true,
},
[sym_attribute_designator] = {
.visible = true,
.named = true,
},
[sym_qualified_expression] = {
.visible = true,
.named = true,
},
[sym_compilation_unit] = {
.visible = true,
.named = true,
},
[sym__declarative_item] = {
.visible = false,
.named = true,
},
[sym__basic_declarative_item] = {
.visible = false,
.named = true,
},
[sym__basic_declaration] = {
.visible = false,
.named = true,
},
[sym__package_declaration] = {
.visible = false,
.named = true,
},
[sym_package_specification] = {
.visible = true,
.named = true,
},
[sym_with_clause] = {
.visible = true,
.named = true,
},
[sym_use_clause] = {
.visible = true,
.named = true,
},
[sym_subunit] = {
.visible = true,
.named = true,
},
[sym__proper_body] = {
.visible = false,
.named = true,
},
[sym_subprogram_body] = {
.visible = true,
.named = true,
},
[sym_package_body] = {
.visible = true,
.named = true,
},
[sym__subtype_indication] = {
.visible = false,
.named = true,
},
[sym_discriminant_constraint] = {
.visible = true,
.named = true,
},
[sym_discriminant_association] = {
.visible = true,
.named = true,
},
[sym__constraint] = {
.visible = false,
.named = true,
},
[sym__scalar_constraint] = {
.visible = false,
.named = true,
},
[sym_range_g] = {
.visible = true,
.named = true,
},
[sym_range_attribute_designator] = {
.visible = true,
.named = true,
},
[sym_range_constraint] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__relation] = {
.visible = false,
.named = true,
},
[sym_relation_membership] = {
.visible = true,
.named = true,
},
[sym_raise_expression] = {
.visible = true,
.named = true,
},
[sym_membership_choice_list] = {
.visible = true,
.named = true,
},
[sym__membership_choice] = {
.visible = false,
.named = true,
},
[sym__simple_expression] = {
.visible = false,
.named = true,
},
[sym_term] = {
.visible = true,
.named = true,
},
[sym__factor] = {
.visible = false,
.named = true,
},
[sym_factor_power] = {
.visible = true,
.named = true,
},
[sym_factor_abs] = {
.visible = true,
.named = true,
},
[sym_factor_not] = {
.visible = true,
.named = true,
},
[sym__parenthesized_expression] = {
.visible = false,
.named = true,
},
[sym__primary] = {
.visible = false,
.named = true,
},
[sym_primary_null] = {
.visible = true,
.named = true,
},
[sym_allocator] = {
.visible = true,
.named = true,
},
[sym__subtype_indication_paren_constraint] = {
.visible = false,
.named = true,
},
[sym_subpool_specification] = {
.visible = true,
.named = true,
},
[sym__access_type_definition] = {
.visible = false,
.named = true,
},
[sym_access_to_subprogram_definition] = {
.visible = true,
.named = true,
},
[sym_access_to_object_definition] = {
.visible = true,
.named = true,
},
[sym_general_access_modifier] = {
.visible = true,
.named = true,
},
[sym_access_definition] = {
.visible = true,
.named = true,
},
[sym_actual_parameter_part] = {
.visible = true,
.named = true,
},
[sym_parameter_association] = {
.visible = true,
.named = true,
},
[sym__conditional_expression] = {
.visible = false,
.named = true,
},
[sym__conditional_quantified_expression] = {
.visible = false,
.named = true,
},
[sym_quantified_expression] = {
.visible = true,
.named = true,
},
[sym_declare_expression] = {
.visible = true,
.named = true,
},
[sym__declare_item] = {
.visible = false,
.named = true,
},
[sym_quantifier] = {
.visible = true,
.named = true,
},
[sym_case_expression] = {
.visible = true,
.named = true,
},
[sym_case_expression_alternative] = {
.visible = true,
.named = true,
},
[sym_component_choice_list] = {
.visible = true,
.named = true,
},
[sym__aggregate] = {
.visible = false,
.named = true,
},
[sym__delta_aggregate] = {
.visible = false,
.named = true,
},
[sym_extension_aggregate] = {
.visible = true,
.named = true,
},
[sym_record_delta_aggregate] = {
.visible = true,
.named = true,
},
[sym_array_delta_aggregate] = {
.visible = true,
.named = true,
},
[sym_record_aggregate] = {
.visible = true,
.named = true,
},
[sym_record_component_association_list] = {
.visible = true,
.named = true,
},
[sym__record_component_association_list_or_expression] = {
.visible = false,
.named = true,
},
[sym__named_record_component_association] = {
.visible = false,
.named = true,
},
[sym_null_exclusion] = {
.visible = true,
.named = true,
},
[sym_index_constraint] = {
.visible = true,
.named = true,
},
[sym_digits_constraint] = {
.visible = true,
.named = true,
},
[sym_delta_constraint] = {
.visible = true,
.named = true,
},
[sym__basic_declarative_item_pragma] = {
.visible = false,
.named = true,
},
[sym__type_declaration] = {
.visible = false,
.named = true,
},
[sym_full_type_declaration] = {
.visible = true,
.named = true,
},
[sym_private_type_declaration] = {
.visible = true,
.named = true,
},
[sym_private_extension_declaration] = {
.visible = true,
.named = true,
},
[sym__discriminant_part] = {
.visible = false,
.named = true,
},
[sym_unknown_discriminant_part] = {
.visible = true,
.named = true,
},
[sym_known_discriminant_part] = {
.visible = true,
.named = true,
},
[sym_incomplete_type_declaration] = {
.visible = true,
.named = true,
},
[sym_discriminant_specification_list] = {
.visible = true,
.named = true,
},
[sym_discriminant_specification] = {
.visible = true,
.named = true,
},
[sym__type_definition] = {
.visible = false,
.named = true,
},
[sym_array_type_definition] = {
.visible = true,
.named = true,
},
[sym__discrete_subtype_definition_list] = {
.visible = false,
.named = true,
},
[sym__discrete_range] = {
.visible = false,
.named = true,
},
[sym__index_subtype_definition_list] = {
.visible = false,
.named = true,
},
[sym_index_subtype_definition] = {
.visible = true,
.named = true,
},
[sym_enumeration_type_definition] = {
.visible = true,
.named = true,
},
[sym__enumeration_literal_list] = {
.visible = false,
.named = true,
},
[sym__enumeration_literal_specification] = {
.visible = false,
.named = true,
},
[sym__integer_type_definition] = {
.visible = false,
.named = true,
},
[sym_modular_type_definition] = {
.visible = true,
.named = true,
},
[sym__real_type_definition] = {
.visible = false,
.named = true,
},
[sym_floating_point_definition] = {
.visible = true,
.named = true,
},
[sym_real_range_specification] = {
.visible = true,
.named = true,
},
[sym__fixed_point_definition] = {
.visible = false,
.named = true,
},
[sym_decimal_fixed_point_definition] = {
.visible = true,
.named = true,
},
[sym_ordinary_fixed_point_definition] = {
.visible = true,
.named = true,
},
[sym_signed_integer_type_definition] = {
.visible = true,
.named = true,
},
[sym_derived_type_definition] = {
.visible = true,
.named = true,
},
[sym_interface_type_definition] = {
.visible = true,
.named = true,
},
[sym__interface_list] = {
.visible = false,
.named = true,
},
[sym_record_extension_part] = {
.visible = true,
.named = true,
},
[sym_record_type_definition] = {
.visible = true,
.named = true,
},
[sym_record_definition] = {
.visible = true,
.named = true,
},
[sym_component_list] = {
.visible = true,
.named = true,
},
[sym__component_item] = {
.visible = false,
.named = true,
},
[sym_component_declaration] = {
.visible = true,
.named = true,
},
[sym_component_definition] = {
.visible = true,
.named = true,
},
[sym__array_aggregate] = {
.visible = false,
.named = true,
},
[sym_positional_array_aggregate] = {
.visible = true,
.named = true,
},
[sym_null_array_aggregate] = {
.visible = true,
.named = true,
},
[sym_named_array_aggregate] = {
.visible = true,
.named = true,
},
[sym__array_component_association_list] = {
.visible = false,
.named = true,
},
[sym_array_component_association] = {
.visible = true,
.named = true,
},
[sym_discrete_choice_list] = {
.visible = true,
.named = true,
},
[sym_discrete_choice] = {
.visible = true,
.named = true,
},
[sym_aspect_association] = {
.visible = true,
.named = true,
},
[sym__aspect_clause] = {
.visible = false,
.named = true,
},
[sym__aspect_definition] = {
.visible = false,
.named = true,
},
[sym__aspect_mark] = {
.visible = false,
.named = true,
},
[sym_aspect_mark_list] = {
.visible = true,
.named = true,
},
[sym_aspect_specification] = {
.visible = true,
.named = true,
},
[sym__assign_value] = {
.visible = false,
.named = true,
},
[sym_at_clause] = {
.visible = true,
.named = true,
},
[sym_attribute_definition_clause] = {
.visible = true,
.named = true,
},
[sym_body_stub] = {
.visible = true,
.named = true,
},
[sym_subprogram_body_stub] = {
.visible = true,
.named = true,
},
[sym_package_body_stub] = {
.visible = true,
.named = true,
},
[sym_task_body] = {
.visible = true,
.named = true,
},
[sym_task_body_stub] = {
.visible = true,
.named = true,
},
[sym__protected_operation_declaration] = {
.visible = false,
.named = true,
},
[sym__protected_element_declaration] = {
.visible = false,
.named = true,
},
[sym__protected_operation_item] = {
.visible = false,
.named = true,
},
[sym_protected_definition] = {
.visible = true,
.named = true,
},
[sym_protected_type_declaration] = {
.visible = true,
.named = true,
},
[sym_single_protected_declaration] = {
.visible = true,
.named = true,
},
[sym_protected_body] = {
.visible = true,
.named = true,
},
[sym_protected_body_stub] = {
.visible = true,
.named = true,
},
[sym_choice_parameter_specification] = {
.visible = true,
.named = true,
},
[sym_component_clause] = {
.visible = true,
.named = true,
},
[sym__declarative_item_pragma] = {
.visible = false,
.named = true,
},
[sym_non_empty_declarative_part] = {
.visible = true,
.named = true,
},
[sym_entry_declaration] = {
.visible = true,
.named = true,
},
[sym_entry_body] = {
.visible = true,
.named = true,
},
[sym_entry_barrier] = {
.visible = true,
.named = true,
},
[sym_entry_index_specification] = {
.visible = true,
.named = true,
},
[sym_enumeration_aggregate] = {
.visible = true,
.named = true,
},
[sym_enumeration_representation_clause] = {
.visible = true,
.named = true,
},
[sym_exception_choice_list] = {
.visible = true,
.named = true,
},
[sym_exception_choice] = {
.visible = true,
.named = true,
},
[sym_exception_declaration] = {
.visible = true,
.named = true,
},
[sym_exception_handler] = {
.visible = true,
.named = true,
},
[sym_formal_part] = {
.visible = true,
.named = true,
},
[sym_function_specification] = {
.visible = true,
.named = true,
},
[sym__generic_declaration] = {
.visible = false,
.named = true,
},
[sym_generic_formal_part] = {
.visible = true,
.named = true,
},
[sym__generic_formal_parameter_declaration] = {
.visible = false,
.named = true,
},
[sym_generic_subprogram_declaration] = {
.visible = true,
.named = true,
},
[sym_generic_package_declaration] = {
.visible = true,
.named = true,
},
[sym_generic_instantiation] = {
.visible = true,
.named = true,
},
[sym_formal_object_declaration] = {
.visible = true,
.named = true,
},
[sym__formal_type_declaration] = {
.visible = false,
.named = true,
},
[sym_formal_complete_type_declaration] = {
.visible = true,
.named = true,
},
[sym_formal_incomplete_type_declaration] = {
.visible = true,
.named = true,
},
[sym__formal_type_definition] = {
.visible = false,
.named = true,
},
[sym_formal_private_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_derived_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_discrete_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_signed_integer_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_modular_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_floating_point_definition] = {
.visible = true,
.named = true,
},
[sym_formal_ordinary_fixed_point_definition] = {
.visible = true,
.named = true,
},
[sym_formal_decimal_fixed_point_definition] = {
.visible = true,
.named = true,
},
[sym_formal_array_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_access_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_interface_type_definition] = {
.visible = true,
.named = true,
},
[sym_formal_subprogram_declaration] = {
.visible = true,
.named = true,
},
[sym_formal_concrete_subprogram_declaration] = {
.visible = true,
.named = true,
},
[sym_formal_abstract_subprogram_declaration] = {
.visible = true,
.named = true,
},
[sym_subprogram_default] = {
.visible = true,
.named = true,
},
[sym_formal_package_declaration] = {
.visible = true,
.named = true,
},
[sym_global_aspect_definition] = {
.visible = true,
.named = true,
},
[sym_global_aspect_element] = {
.visible = true,
.named = true,
},
[sym_global_mode] = {
.visible = true,
.named = true,
},
[sym_handled_sequence_of_statements] = {
.visible = true,
.named = true,
},
[sym_loop_label] = {
.visible = true,
.named = true,
},
[sym_label] = {
.visible = true,
.named = true,
},
[sym_mod_clause] = {
.visible = true,
.named = true,
},
[sym_non_empty_mode] = {
.visible = true,
.named = true,
},
[sym_null_procedure_declaration] = {
.visible = true,
.named = true,
},
[sym_null_statement] = {
.visible = true,
.named = true,
},
[sym_number_declaration] = {
.visible = true,
.named = true,
},
[sym_object_declaration] = {
.visible = true,
.named = true,
},
[sym_single_task_declaration] = {
.visible = true,
.named = true,
},
[sym_task_type_declaration] = {
.visible = true,
.named = true,
},
[sym_non_empty_entry_body_formal_part] = {
.visible = true,
.named = true,
},
[sym__task_item] = {
.visible = false,
.named = true,
},
[sym_task_definition] = {
.visible = true,
.named = true,
},
[sym_overriding_indicator] = {
.visible = true,
.named = true,
},
[sym__parameter_and_result_profile] = {
.visible = false,
.named = true,
},
[sym_parameter_specification] = {
.visible = true,
.named = true,
},
[sym__parameter_specification_list] = {
.visible = false,
.named = true,
},
[sym_pragma_g] = {
.visible = true,
.named = true,
},
[sym_pragma_argument_association] = {
.visible = true,
.named = true,
},
[sym_if_expression] = {
.visible = true,
.named = true,
},
[sym_elsif_expression_item] = {
.visible = true,
.named = true,
},
[sym_procedure_specification] = {
.visible = true,
.named = true,
},
[sym_record_representation_clause] = {
.visible = true,
.named = true,
},
[sym__renaming_declaration] = {
.visible = false,
.named = true,
},
[sym_object_renaming_declaration] = {
.visible = true,
.named = true,
},
[sym_exception_renaming_declaration] = {
.visible = true,
.named = true,
},
[sym_package_renaming_declaration] = {
.visible = true,
.named = true,
},
[sym_subprogram_renaming_declaration] = {
.visible = true,
.named = true,
},
[sym_generic_renaming_declaration] = {
.visible = true,
.named = true,
},
[sym_result_profile] = {
.visible = true,
.named = true,
},
[sym__sequence_of_statements] = {
.visible = false,
.named = true,
},
[sym__simple_statement] = {
.visible = false,
.named = true,
},
[sym__statement] = {
.visible = false,
.named = true,
},
[sym__compound_statement] = {
.visible = false,
.named = true,
},
[sym__select_statement] = {
.visible = false,
.named = true,
},
[sym_entry_call_alternative] = {
.visible = true,
.named = true,
},
[sym_asynchronous_select] = {
.visible = true,
.named = true,
},
[sym_triggering_alternative] = {
.visible = true,
.named = true,
},
[sym_conditional_entry_call] = {
.visible = true,
.named = true,
},
[sym_delay_alternative] = {
.visible = true,
.named = true,
},
[sym_timed_entry_call] = {
.visible = true,
.named = true,
},
[sym_guard] = {
.visible = true,
.named = true,
},
[sym_select_alternative] = {
.visible = true,
.named = true,
},
[sym_accept_alternative] = {
.visible = true,
.named = true,
},
[sym_terminate_alternative] = {
.visible = true,
.named = true,
},
[sym_selective_accept] = {
.visible = true,
.named = true,
},
[sym_abort_statement] = {
.visible = true,
.named = true,
},
[sym_requeue_statement] = {
.visible = true,
.named = true,
},
[sym_accept_statement] = {
.visible = true,
.named = true,
},
[sym_case_statement_alternative] = {
.visible = true,
.named = true,
},
[sym_case_statement] = {
.visible = true,
.named = true,
},
[sym_block_statement] = {
.visible = true,
.named = true,
},
[sym_if_statement] = {
.visible = true,
.named = true,
},
[sym_elsif_statement_item] = {
.visible = true,
.named = true,
},
[sym_gnatprep_declarative_if_statement] = {
.visible = true,
.named = true,
},
[sym_gnatprep_if_statement] = {
.visible = true,
.named = true,
},
[sym_exit_statement] = {
.visible = true,
.named = true,
},
[sym_goto_statement] = {
.visible = true,
.named = true,
},
[sym__delay_statement] = {
.visible = false,
.named = true,
},
[sym_delay_until_statement] = {
.visible = true,
.named = true,
},
[sym_delay_relative_statement] = {
.visible = true,
.named = true,
},
[sym_simple_return_statement] = {
.visible = true,
.named = true,
},
[sym_extended_return_statement] = {
.visible = true,
.named = true,
},
[sym_extended_return_object_declaration] = {
.visible = true,
.named = true,
},
[sym__return_subtype_indication] = {
.visible = false,
.named = true,
},
[sym_procedure_call_statement] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_raise_statement] = {
.visible = true,
.named = true,
},
[sym_loop_statement] = {
.visible = true,
.named = true,
},
[sym_iteration_scheme] = {
.visible = true,
.named = true,
},
[sym_assignment_statement] = {
.visible = true,
.named = true,
},
[sym_subprogram_declaration] = {
.visible = true,
.named = true,
},
[sym_expression_function_declaration] = {
.visible = true,
.named = true,
},
[sym__subprogram_specification] = {
.visible = false,
.named = true,
},
[sym_subtype_declaration] = {
.visible = true,
.named = true,
},
[sym_variant_part] = {
.visible = true,
.named = true,
},
[sym_variant_list] = {
.visible = true,
.named = true,
},
[sym_variant] = {
.visible = true,
.named = true,
},
[aux_sym_compilation_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__name_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__defining_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_package_specification_repeat1] = {
.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,
},
[aux_sym_expression_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_expression_repeat3] = {
.visible = false,
.named = false,
},
[aux_sym_membership_choice_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__simple_expression_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_term_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_actual_parameter_part_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_declare_expression_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_case_expression_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_record_component_association_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_record_component_association_list_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_index_constraint_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_discriminant_specification_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__discrete_subtype_definition_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__index_subtype_definition_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__enumeration_literal_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__interface_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_component_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_positional_array_aggregate_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__array_component_association_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_discrete_choice_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_aspect_mark_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_protected_definition_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_protected_definition_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_protected_body_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_non_empty_declarative_part_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_exception_choice_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_generic_formal_part_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_global_aspect_definition_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_handled_sequence_of_statements_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_task_definition_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__parameter_specification_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_pragma_g_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_expression_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_record_representation_clause_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__sequence_of_statements_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__sequence_of_statements_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_selective_accept_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_case_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_gnatprep_declarative_if_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_gnatprep_if_statement_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_variant_list_repeat1] = {
.visible = false,
.named = false,
},
};
enum {
field_abortable_part = 1,
field_callable_entity_name = 2,
field_condition = 3,
field_default_name = 4,
field_default_subtype_mark = 5,
field_defining_program_unit_name = 6,
field_else_statements = 7,
field_end_local_name = 8,
field_endname = 9,
field_entry_direct_name = 10,
field_entry_identifier = 11,
field_entry_index = 12,
field_exception_name = 13,
field_first_bit = 14,
field_generic_function_name = 15,
field_generic_name = 16,
field_generic_package_name = 17,
field_generic_procedure_name = 18,
field_global_set = 19,
field_is_abstract = 20,
field_is_all = 21,
field_is_limited = 22,
field_is_parallel = 23,
field_is_private = 24,
field_is_type = 25,
field_iterator_name = 26,
field_label_name = 27,
field_last_bit = 28,
field_left = 29,
field_local_name = 30,
field_loop_name = 31,
field_name = 32,
field_object_name = 33,
field_package_name = 34,
field_parameter_profile = 35,
field_parent_unit_name = 36,
field_position = 37,
field_predicate = 38,
field_prefix = 39,
field_range_attribute_reference = 40,
field_right = 41,
field_selector_name = 42,
field_statement_identifier = 43,
field_statements = 44,
field_subpool_handle_name = 45,
field_subtype_mark = 46,
field_subtype_name = 47,
field_variable_name = 48,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_abortable_part] = "abortable_part",
[field_callable_entity_name] = "callable_entity_name",
[field_condition] = "condition",
[field_default_name] = "default_name",
[field_default_subtype_mark] = "default_subtype_mark",
[field_defining_program_unit_name] = "defining_program_unit_name",
[field_else_statements] = "else_statements",
[field_end_local_name] = "end_local_name",
[field_endname] = "endname",
[field_entry_direct_name] = "entry_direct_name",
[field_entry_identifier] = "entry_identifier",
[field_entry_index] = "entry_index",
[field_exception_name] = "exception_name",
[field_first_bit] = "first_bit",
[field_generic_function_name] = "generic_function_name",
[field_generic_name] = "generic_name",
[field_generic_package_name] = "generic_package_name",
[field_generic_procedure_name] = "generic_procedure_name",
[field_global_set] = "global_set",
[field_is_abstract] = "is_abstract",
[field_is_all] = "is_all",
[field_is_limited] = "is_limited",
[field_is_parallel] = "is_parallel",
[field_is_private] = "is_private",
[field_is_type] = "is_type",
[field_iterator_name] = "iterator_name",
[field_label_name] = "label_name",
[field_last_bit] = "last_bit",
[field_left] = "left",
[field_local_name] = "local_name",
[field_loop_name] = "loop_name",
[field_name] = "name",
[field_object_name] = "object_name",
[field_package_name] = "package_name",
[field_parameter_profile] = "parameter_profile",
[field_parent_unit_name] = "parent_unit_name",
[field_position] = "position",
[field_predicate] = "predicate",
[field_prefix] = "prefix",
[field_range_attribute_reference] = "range_attribute_reference",
[field_right] = "right",
[field_selector_name] = "selector_name",
[field_statement_identifier] = "statement_identifier",
[field_statements] = "statements",
[field_subpool_handle_name] = "subpool_handle_name",
[field_subtype_mark] = "subtype_mark",
[field_subtype_name] = "subtype_name",
[field_variable_name] = "variable_name",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 1},
[2] = {.index = 1, .length = 1},
[3] = {.index = 2, .length = 1},
[4] = {.index = 3, .length = 1},
[5] = {.index = 4, .length = 1},
[6] = {.index = 5, .length = 1},
[7] = {.index = 6, .length = 1},
[8] = {.index = 7, .length = 1},
[9] = {.index = 8, .length = 1},
[10] = {.index = 9, .length = 2},
[11] = {.index = 11, .length = 1},
[12] = {.index = 12, .length = 1},
[13] = {.index = 13, .length = 1},
[14] = {.index = 14, .length = 1},
[15] = {.index = 15, .length = 1},
[16] = {.index = 16, .length = 2},
[17] = {.index = 18, .length = 1},
[18] = {.index = 19, .length = 1},
[19] = {.index = 20, .length = 1},
[20] = {.index = 21, .length = 1},
[21] = {.index = 22, .length = 1},
[22] = {.index = 23, .length = 1},
[23] = {.index = 24, .length = 1},
[24] = {.index = 25, .length = 1},
[25] = {.index = 26, .length = 1},
[26] = {.index = 27, .length = 4},
[27] = {.index = 31, .length = 1},
[28] = {.index = 32, .length = 2},
[29] = {.index = 34, .length = 1},
[30] = {.index = 35, .length = 1},
[31] = {.index = 36, .length = 2},
[32] = {.index = 38, .length = 2},
[33] = {.index = 40, .length = 1},
[34] = {.index = 41, .length = 1},
[35] = {.index = 42, .length = 1},
[36] = {.index = 43, .length = 1},
[37] = {.index = 44, .length = 1},
[38] = {.index = 45, .length = 2},
[39] = {.index = 47, .length = 2},
[40] = {.index = 49, .length = 2},
[41] = {.index = 51, .length = 2},
[42] = {.index = 53, .length = 1},
[43] = {.index = 54, .length = 1},
[44] = {.index = 55, .length = 1},
[45] = {.index = 56, .length = 3},
[46] = {.index = 59, .length = 1},
[47] = {.index = 60, .length = 1},
[48] = {.index = 61, .length = 1},
[49] = {.index = 62, .length = 2},
[50] = {.index = 64, .length = 2},
[51] = {.index = 66, .length = 1},
[52] = {.index = 67, .length = 2},
[53] = {.index = 69, .length = 1},
[54] = {.index = 70, .length = 2},
[55] = {.index = 72, .length = 1},
[56] = {.index = 73, .length = 1},
[57] = {.index = 74, .length = 2},
[58] = {.index = 76, .length = 1},
[59] = {.index = 77, .length = 1},
[60] = {.index = 78, .length = 2},
[61] = {.index = 80, .length = 1},
[62] = {.index = 81, .length = 2},
[63] = {.index = 83, .length = 2},
[64] = {.index = 85, .length = 1},
[65] = {.index = 86, .length = 2},
[66] = {.index = 88, .length = 2},
[67] = {.index = 90, .length = 2},
[68] = {.index = 92, .length = 2},
[69] = {.index = 94, .length = 1},
[70] = {.index = 95, .length = 2},
[71] = {.index = 97, .length = 4},
[72] = {.index = 101, .length = 2},
[73] = {.index = 103, .length = 2},
[74] = {.index = 105, .length = 1},
[75] = {.index = 106, .length = 2},
[76] = {.index = 108, .length = 2},
[77] = {.index = 110, .length = 2},
[78] = {.index = 112, .length = 2},
[79] = {.index = 114, .length = 1},
[80] = {.index = 115, .length = 2},
[81] = {.index = 117, .length = 2},
[82] = {.index = 119, .length = 1},
[83] = {.index = 120, .length = 1},
[84] = {.index = 121, .length = 2},
[85] = {.index = 123, .length = 1},
[86] = {.index = 124, .length = 2},
[87] = {.index = 126, .length = 2},
[88] = {.index = 128, .length = 3},
[89] = {.index = 131, .length = 2},
[90] = {.index = 133, .length = 1},
[91] = {.index = 134, .length = 2},
[92] = {.index = 136, .length = 1},
[93] = {.index = 137, .length = 1},
[94] = {.index = 138, .length = 2},
[95] = {.index = 140, .length = 2},
[96] = {.index = 142, .length = 2},
[97] = {.index = 144, .length = 1},
[98] = {.index = 145, .length = 1},
[99] = {.index = 146, .length = 1},
[100] = {.index = 147, .length = 1},
[101] = {.index = 148, .length = 1},
[102] = {.index = 149, .length = 3},
[103] = {.index = 152, .length = 4},
[104] = {.index = 156, .length = 2},
[105] = {.index = 158, .length = 1},
[106] = {.index = 159, .length = 2},
[107] = {.index = 161, .length = 2},
[108] = {.index = 163, .length = 2},
[109] = {.index = 165, .length = 1},
[110] = {.index = 166, .length = 1},
[111] = {.index = 167, .length = 2},
[112] = {.index = 169, .length = 1},
[113] = {.index = 170, .length = 3},
[114] = {.index = 173, .length = 1},
[115] = {.index = 174, .length = 2},
[116] = {.index = 176, .length = 2},
[117] = {.index = 178, .length = 1},
[118] = {.index = 179, .length = 1},
[119] = {.index = 180, .length = 3},
[120] = {.index = 183, .length = 3},
[121] = {.index = 186, .length = 5},
[122] = {.index = 191, .length = 1},
[123] = {.index = 192, .length = 2},
[124] = {.index = 194, .length = 1},
[125] = {.index = 195, .length = 4},
[126] = {.index = 199, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_statement_identifier, 0},
[1] =
{field_name, 0},
[2] =
{field_name, 1},
[3] =
{field_name, 0, .inherited = true},
[4] =
{field_condition, 1},
[5] =
{field_subtype_mark, 0},
[6] =
{field_subtype_mark, 0, .inherited = true},
[7] =
{field_name, 1, .inherited = true},
[8] =
{field_exception_name, 1},
[9] =
{field_name, 0, .inherited = true},
{field_name, 1, .inherited = true},
[11] =
{field_statement_identifier, 1},
[12] =
{field_entry_direct_name, 1},
[13] =
{field_loop_name, 1},
[14] =
{field_label_name, 1},
[15] =
{field_subtype_name, 0},
[16] =
{field_prefix, 0},
{field_selector_name, 2},
[18] =
{field_variable_name, 0},
[19] =
{field_subtype_mark, 1},
[20] =
{field_object_name, 2},
[21] =
{field_is_parallel, 1},
[22] =
{field_iterator_name, 2},
[23] =
{field_subtype_mark, 2, .inherited = true},
[24] =
{field_is_type, 1},
[25] =
{field_is_private, 0},
[26] =
{field_is_limited, 0},
[27] =
{field_left, 0},
{field_name, 0, .inherited = true},
{field_name, 2, .inherited = true},
{field_right, 2},
[31] =
{field_parameter_profile, 2},
[32] =
{field_entry_direct_name, 1},
{field_parameter_profile, 2},
[34] =
{field_condition, 2},
[35] =
{field_prefix, 0},
[36] =
{field_name, 0},
{field_subtype_mark, 2, .inherited = true},
[38] =
{field_is_abstract, 1},
{field_is_abstract, 2},
[40] =
{field_callable_entity_name, 2},
[41] =
{field_subtype_mark, 2},
[42] =
{field_iterator_name, 3},
[43] =
{field_subtype_mark, 3, .inherited = true},
[44] =
{field_local_name, 1},
[45] =
{field_is_all, 1},
{field_is_type, 2},
[47] =
{field_endname, 4},
{field_name, 1},
[49] =
{field_name, 1},
{field_package_name, 3},
[51] =
{field_is_limited, 0},
{field_is_private, 1},
[53] =
{field_subtype_mark, 1, .inherited = true},
[54] =
{field_parent_unit_name, 2},
[55] =
{field_exception_name, 0},
[56] =
{field_prefix, 0},
{field_range_attribute_reference, 1},
{field_range_attribute_reference, 2},
[59] =
{field_subpool_handle_name, 1},
[60] =
{field_endname, 1},
[61] =
{field_default_name, 0},
[62] =
{field_name, 0},
{field_subtype_mark, 2},
[64] =
{field_condition, 3},
{field_loop_name, 1},
[66] =
{field_statements, 1},
[67] =
{field_name, 0},
{field_subtype_mark, 3, .inherited = true},
[69] =
{field_parameter_profile, 3},
[70] =
{field_is_abstract, 2},
{field_is_abstract, 3},
[72] =
{field_callable_entity_name, 3},
[73] =
{field_exception_name, 4},
[74] =
{field_object_name, 4},
{field_subtype_mark, 2},
[76] =
{field_object_name, 4},
[77] =
{field_subtype_mark, 3},
[78] =
{field_iterator_name, 4},
{field_subtype_mark, 2, .inherited = true},
[80] =
{field_name, 2},
[81] =
{field_endname, 5},
{field_name, 1},
[83] =
{field_generic_name, 4},
{field_name, 1},
[85] =
{field_endname, 2},
[86] =
{field_defining_program_unit_name, 2},
{field_generic_package_name, 4},
[88] =
{field_defining_program_unit_name, 2},
{field_generic_procedure_name, 4},
[90] =
{field_defining_program_unit_name, 2},
{field_generic_function_name, 4},
[92] =
{field_name, 0},
{field_subtype_mark, 3},
[94] =
{field_subtype_mark, 4, .inherited = true},
[95] =
{field_entry_direct_name, 1},
{field_entry_index, 3},
[97] =
{field_condition, 0, .inherited = true},
{field_condition, 1, .inherited = true},
{field_statements, 0, .inherited = true},
{field_statements, 1, .inherited = true},
[101] =
{field_subtype_mark, 0, .inherited = true},
{field_subtype_mark, 1, .inherited = true},
[103] =
{field_name, 0},
{field_subtype_mark, 4, .inherited = true},
[105] =
{field_statements, 2},
[106] =
{field_object_name, 5},
{field_subtype_mark, 3},
[108] =
{field_iterator_name, 5},
{field_subtype_mark, 2, .inherited = true},
[110] =
{field_endname, 5},
{field_name, 2},
[112] =
{field_endname, 6},
{field_name, 1},
[114] =
{field_parameter_profile, 0},
[115] =
{field_condition, 0, .inherited = true},
{field_condition, 1, .inherited = true},
[117] =
{field_subtype_mark, 1, .inherited = true},
{field_subtype_mark, 2, .inherited = true},
[119] =
{field_predicate, 4},
[120] =
{field_endname, 3},
[121] =
{field_parameter_profile, 5},
{field_subtype_mark, 3, .inherited = true},
[123] =
{field_default_subtype_mark, 4},
[124] =
{field_name, 0},
{field_subtype_mark, 4},
[126] =
{field_condition, 1},
{field_statements, 3},
[128] =
{field_entry_direct_name, 1},
{field_entry_index, 3},
{field_parameter_profile, 5},
[131] =
{field_entry_direct_name, 1},
{field_entry_identifier, 5},
[133] =
{field_statements, 3},
[134] =
{field_generic_name, 5},
{field_name, 2},
[136] =
{field_endname, 5},
[137] =
{field_global_set, 1},
[138] =
{field_end_local_name, 6},
{field_local_name, 1},
[140] =
{field_endname, 6},
{field_name, 2},
[142] =
{field_endname, 7},
{field_name, 1},
[144] =
{field_subtype_mark, 4},
[145] =
{field_endname, 4},
[146] =
{field_generic_package_name, 5},
[147] =
{field_default_subtype_mark, 5},
[148] =
{field_abortable_part, 4},
[149] =
{field_entry_direct_name, 1},
{field_entry_identifier, 6},
{field_parameter_profile, 2},
[152] =
{field_condition, 1},
{field_condition, 4, .inherited = true},
{field_statements, 3},
{field_statements, 4, .inherited = true},
[156] =
{field_parameter_profile, 6},
{field_subtype_mark, 4, .inherited = true},
[158] =
{field_endname, 6},
[159] =
{field_end_local_name, 7},
{field_local_name, 1},
[161] =
{field_endname, 7},
{field_name, 2},
[163] =
{field_endname, 8},
{field_name, 1},
[165] =
{field_subtype_mark, 5, .inherited = true},
[166] =
{field_subtype_mark, 5},
[167] =
{field_condition, 1},
{field_condition, 4, .inherited = true},
[169] =
{field_default_subtype_mark, 6},
[170] =
{field_condition, 1},
{field_else_statements, 5},
{field_statements, 3},
[173] =
{field_endname, 7},
[174] =
{field_end_local_name, 8},
{field_local_name, 1},
[176] =
{field_endname, 8},
{field_name, 2},
[178] =
{field_subtype_mark, 6, .inherited = true},
[179] =
{field_default_subtype_mark, 7},
[180] =
{field_condition, 1},
{field_else_statements, 6},
{field_statements, 3},
[183] =
{field_entry_direct_name, 1},
{field_entry_identifier, 8},
{field_entry_index, 3},
[186] =
{field_condition, 1},
{field_condition, 4, .inherited = true},
{field_else_statements, 6},
{field_statements, 3},
{field_statements, 4, .inherited = true},
[191] =
{field_endname, 8},
[192] =
{field_endname, 9},
{field_name, 2},
[194] =
{field_subtype_mark, 7, .inherited = true},
[195] =
{field_entry_direct_name, 1},
{field_entry_identifier, 9},
{field_entry_index, 3},
{field_parameter_profile, 5},
[199] =
{field_first_bit, 4},
{field_last_bit, 6},
{field_local_name, 0},
{field_position, 2},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
[5] = 5,
[6] = 6,
[7] = 7,
[8] = 8,
[9] = 9,
[10] = 10,
[11] = 11,
[12] = 12,
[13] = 13,
[14] = 14,
[15] = 15,
[16] = 16,
[17] = 17,
[18] = 18,
[19] = 19,
[20] = 20,
[21] = 21,
[22] = 22,
[23] = 23,
[24] = 24,
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
[29] = 29,
[30] = 30,
[31] = 31,
[32] = 32,
[33] = 33,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
[48] = 48,
[49] = 49,
[50] = 50,
[51] = 51,
[52] = 52,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 68,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
[74] = 74,
[75] = 75,
[76] = 76,
[77] = 77,
[78] = 78,
[79] = 79,
[80] = 80,
[81] = 81,
[82] = 82,
[83] = 83,
[84] = 84,
[85] = 85,
[86] = 86,
[87] = 87,
[88] = 88,
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
[94] = 94,
[95] = 95,
[96] = 96,
[97] = 97,
[98] = 98,
[99] = 99,
[100] = 100,
[101] = 101,
[102] = 102,
[103] = 103,
[104] = 104,
[105] = 105,
[106] = 106,
[107] = 107,
[108] = 108,
[109] = 109,
[110] = 110,
[111] = 111,
[112] = 112,
[113] = 113,
[114] = 114,
[115] = 115,
[116] = 116,
[117] = 117,
[118] = 118,
[119] = 119,
[120] = 120,
[121] = 121,
[122] = 122,
[123] = 123,
[124] = 124,
[125] = 125,
[126] = 126,
[127] = 127,
[128] = 128,
[129] = 129,
[130] = 130,
[131] = 131,
[132] = 132,
[133] = 133,
[134] = 134,
[135] = 135,
[136] = 136,
[137] = 137,
[138] = 138,
[139] = 139,
[140] = 140,
[141] = 141,
[142] = 142,
[143] = 143,
[144] = 144,
[145] = 145,
[146] = 146,
[147] = 147,
[148] = 148,
[149] = 149,
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
[159] = 159,
[160] = 160,
[161] = 161,
[162] = 162,
[163] = 163,
[164] = 164,
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 171,
[172] = 172,
[173] = 173,
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 178,
[179] = 179,
[180] = 180,
[181] = 181,
[182] = 182,
[183] = 183,
[184] = 184,
[185] = 185,
[186] = 186,
[187] = 187,
[188] = 188,
[189] = 189,
[190] = 190,
[191] = 191,
[192] = 192,
[193] = 193,
[194] = 194,
[195] = 195,
[196] = 196,
[197] = 197,
[198] = 198,
[199] = 199,
[200] = 200,
[201] = 201,
[202] = 202,
[203] = 203,
[204] = 204,
[205] = 205,
[206] = 206,
[207] = 207,
[208] = 208,
[209] = 209,
[210] = 210,
[211] = 211,
[212] = 212,
[213] = 213,
[214] = 214,
[215] = 215,
[216] = 216,
[217] = 217,
[218] = 218,
[219] = 219,
[220] = 220,
[221] = 221,
[222] = 222,
[223] = 223,
[224] = 224,
[225] = 225,
[226] = 226,
[227] = 227,
[228] = 228,
[229] = 229,
[230] = 230,
[231] = 231,
[232] = 232,
[233] = 233,
[234] = 234,
[235] = 235,
[236] = 236,
[237] = 237,
[238] = 238,
[239] = 239,
[240] = 240,
[241] = 241,
[242] = 242,
[243] = 243,
[244] = 244,
[245] = 245,
[246] = 246,
[247] = 247,
[248] = 248,
[249] = 249,
[250] = 250,
[251] = 251,
[252] = 252,
[253] = 253,
[254] = 254,
[255] = 255,
[256] = 256,
[257] = 257,
[258] = 258,
[259] = 259,
[260] = 260,
[261] = 261,
[262] = 262,
[263] = 263,
[264] = 264,
[265] = 265,
[266] = 266,
[267] = 267,
[268] = 268,
[269] = 269,
[270] = 270,
[271] = 271,
[272] = 272,
[273] = 273,
[274] = 274,
[275] = 275,
[276] = 276,
[277] = 277,
[278] = 278,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
[283] = 283,
[284] = 284,
[285] = 285,
[286] = 286,
[287] = 287,
[288] = 288,
[289] = 289,
[290] = 290,
[291] = 291,
[292] = 292,
[293] = 293,
[294] = 294,
[295] = 295,
[296] = 296,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 300,
[301] = 301,
[302] = 302,
[303] = 303,
[304] = 304,
[305] = 305,
[306] = 306,
[307] = 307,
[308] = 308,
[309] = 309,
[310] = 310,
[311] = 311,
[312] = 312,
[313] = 313,
[314] = 314,
[315] = 315,
[316] = 316,
[317] = 317,
[318] = 318,
[319] = 319,
[320] = 320,
[321] = 321,
[322] = 322,
[323] = 323,
[324] = 324,
[325] = 325,
[326] = 326,
[327] = 327,
[328] = 328,
[329] = 329,
[330] = 330,
[331] = 331,
[332] = 332,
[333] = 333,
[334] = 334,
[335] = 335,
[336] = 336,
[337] = 337,
[338] = 338,
[339] = 339,
[340] = 340,
[341] = 341,
[342] = 342,
[343] = 343,
[344] = 344,
[345] = 345,
[346] = 346,
[347] = 347,
[348] = 348,
[349] = 349,
[350] = 350,
[351] = 351,
[352] = 352,
[353] = 353,
[354] = 354,
[355] = 355,
[356] = 356,
[357] = 357,
[358] = 358,
[359] = 359,
[360] = 360,
[361] = 361,
[362] = 362,
[363] = 363,
[364] = 364,
[365] = 365,
[366] = 366,
[367] = 367,
[368] = 368,
[369] = 369,
[370] = 370,
[371] = 371,
[372] = 372,
[373] = 373,
[374] = 374,
[375] = 375,
[376] = 376,
[377] = 377,
[378] = 378,
[379] = 379,
[380] = 380,
[381] = 381,
[382] = 382,
[383] = 383,
[384] = 384,
[385] = 385,
[386] = 386,
[387] = 387,
[388] = 388,
[389] = 389,
[390] = 390,
[391] = 391,
[392] = 392,
[393] = 393,
[394] = 394,
[395] = 395,
[396] = 396,
[397] = 397,
[398] = 398,
[399] = 399,
[400] = 400,
[401] = 401,
[402] = 402,
[403] = 403,
[404] = 404,
[405] = 405,
[406] = 406,
[407] = 407,
[408] = 408,
[409] = 409,
[410] = 410,
[411] = 411,
[412] = 412,
[413] = 413,
[414] = 414,
[415] = 415,
[416] = 416,
[417] = 417,
[418] = 418,
[419] = 419,
[420] = 420,
[421] = 421,
[422] = 422,
[423] = 423,
[424] = 424,
[425] = 425,
[426] = 426,
[427] = 427,
[428] = 428,
[429] = 429,
[430] = 430,
[431] = 431,
[432] = 432,
[433] = 433,
[434] = 434,
[435] = 435,
[436] = 436,
[437] = 437,
[438] = 438,
[439] = 439,
[440] = 440,
[441] = 441,
[442] = 442,
[443] = 443,
[444] = 444,
[445] = 445,
[446] = 446,
[447] = 447,
[448] = 448,
[449] = 449,
[450] = 450,
[451] = 451,
[452] = 452,
[453] = 453,
[454] = 454,
[455] = 455,
[456] = 456,
[457] = 457,
[458] = 458,
[459] = 459,
[460] = 460,
[461] = 461,
[462] = 462,
[463] = 463,
[464] = 464,
[465] = 465,
[466] = 466,
[467] = 467,
[468] = 468,
[469] = 469,
[470] = 470,
[471] = 471,
[472] = 472,
[473] = 473,
[474] = 474,
[475] = 475,
[476] = 476,
[477] = 477,
[478] = 478,
[479] = 479,
[480] = 480,
[481] = 481,
[482] = 482,
[483] = 483,
[484] = 484,
[485] = 485,
[486] = 486,
[487] = 487,
[488] = 488,
[489] = 489,
[490] = 490,
[491] = 491,
[492] = 492,
[493] = 493,
[494] = 494,
[495] = 495,
[496] = 496,
[497] = 497,
[498] = 498,
[499] = 499,
[500] = 500,
[501] = 501,
[502] = 502,
[503] = 503,
[504] = 504,
[505] = 505,
[506] = 506,
[507] = 507,
[508] = 508,
[509] = 509,
[510] = 510,
[511] = 501,
[512] = 512,
[513] = 513,
[514] = 514,
[515] = 515,
[516] = 516,
[517] = 517,
[518] = 518,
[519] = 519,
[520] = 520,
[521] = 521,
[522] = 522,
[523] = 523,
[524] = 524,
[525] = 451,
[526] = 526,
[527] = 527,
[528] = 528,
[529] = 529,
[530] = 530,
[531] = 531,
[532] = 532,
[533] = 533,
[534] = 534,
[535] = 535,
[536] = 451,
[537] = 537,
[538] = 538,
[539] = 539,
[540] = 540,
[541] = 541,
[542] = 542,
[543] = 543,
[544] = 544,
[545] = 545,
[546] = 546,
[547] = 547,
[548] = 548,
[549] = 549,
[550] = 550,
[551] = 551,
[552] = 552,
[553] = 553,
[554] = 554,
[555] = 555,
[556] = 556,
[557] = 557,
[558] = 558,
[559] = 559,
[560] = 451,
[561] = 561,
[562] = 562,
[563] = 563,
[564] = 564,
[565] = 565,
[566] = 566,
[567] = 567,
[568] = 568,
[569] = 569,
[570] = 570,
[571] = 571,
[572] = 572,
[573] = 573,
[574] = 574,
[575] = 575,
[576] = 576,
[577] = 577,
[578] = 578,
[579] = 579,
[580] = 580,
[581] = 581,
[582] = 582,
[583] = 583,
[584] = 584,
[585] = 585,
[586] = 586,
[587] = 587,
[588] = 588,
[589] = 589,
[590] = 590,
[591] = 591,
[592] = 592,
[593] = 593,
[594] = 594,
[595] = 595,
[596] = 596,
[597] = 597,
[598] = 598,
[599] = 599,
[600] = 600,
[601] = 601,
[602] = 602,
[603] = 603,
[604] = 604,
[605] = 605,
[606] = 606,
[607] = 607,
[608] = 608,
[609] = 609,
[610] = 610,
[611] = 611,
[612] = 612,
[613] = 613,
[614] = 614,
[615] = 615,
[616] = 616,
[617] = 617,
[618] = 618,
[619] = 619,
[620] = 620,
[621] = 621,
[622] = 622,
[623] = 623,
[624] = 624,
[625] = 625,
[626] = 626,
[627] = 627,
[628] = 628,
[629] = 629,
[630] = 630,
[631] = 631,
[632] = 632,
[633] = 633,
[634] = 634,
[635] = 635,
[636] = 636,
[637] = 637,
[638] = 638,
[639] = 639,
[640] = 640,
[641] = 641,
[642] = 642,
[643] = 643,
[644] = 644,
[645] = 645,
[646] = 646,
[647] = 647,
[648] = 648,
[649] = 649,
[650] = 650,
[651] = 651,
[652] = 652,
[653] = 653,
[654] = 654,
[655] = 655,
[656] = 656,
[657] = 657,
[658] = 658,
[659] = 659,
[660] = 660,
[661] = 661,
[662] = 662,
[663] = 663,
[664] = 664,
[665] = 665,
[666] = 666,
[667] = 667,
[668] = 668,
[669] = 669,
[670] = 670,
[671] = 671,
[672] = 672,
[673] = 673,
[674] = 674,
[675] = 675,
[676] = 676,
[677] = 677,
[678] = 678,
[679] = 679,
[680] = 680,
[681] = 681,
[682] = 682,
[683] = 683,
[684] = 684,
[685] = 685,
[686] = 686,
[687] = 687,
[688] = 688,
[689] = 689,
[690] = 690,
[691] = 691,
[692] = 692,
[693] = 693,
[694] = 694,
[695] = 695,
[696] = 696,
[697] = 697,
[698] = 698,
[699] = 699,
[700] = 700,
[701] = 701,
[702] = 702,
[703] = 703,
[704] = 704,
[705] = 705,
[706] = 706,
[707] = 707,
[708] = 708,
[709] = 709,
[710] = 710,
[711] = 711,
[712] = 712,
[713] = 713,
[714] = 714,
[715] = 715,
[716] = 716,
[717] = 717,
[718] = 718,
[719] = 719,
[720] = 720,
[721] = 721,
[722] = 722,
[723] = 723,
[724] = 724,
[725] = 725,
[726] = 726,
[727] = 727,
[728] = 728,
[729] = 729,
[730] = 730,
[731] = 731,
[732] = 732,
[733] = 733,
[734] = 734,
[735] = 735,
[736] = 736,
[737] = 737,
[738] = 738,
[739] = 739,
[740] = 740,
[741] = 741,
[742] = 742,
[743] = 743,
[744] = 744,
[745] = 745,
[746] = 746,
[747] = 747,
[748] = 748,
[749] = 749,
[750] = 750,
[751] = 751,
[752] = 752,
[753] = 753,
[754] = 754,
[755] = 755,
[756] = 756,
[757] = 757,
[758] = 758,
[759] = 759,
[760] = 760,
[761] = 761,
[762] = 762,
[763] = 763,
[764] = 764,
[765] = 765,
[766] = 766,
[767] = 767,
[768] = 768,
[769] = 769,
[770] = 770,
[771] = 771,
[772] = 772,
[773] = 773,
[774] = 774,
[775] = 775,
[776] = 776,
[777] = 777,
[778] = 778,
[779] = 779,
[780] = 780,
[781] = 781,
[782] = 782,
[783] = 783,
[784] = 784,
[785] = 785,
[786] = 786,
[787] = 787,
[788] = 788,
[789] = 789,
[790] = 790,
[791] = 791,
[792] = 792,
[793] = 793,
[794] = 794,
[795] = 795,
[796] = 796,
[797] = 797,
[798] = 798,
[799] = 799,
[800] = 800,
[801] = 801,
[802] = 802,
[803] = 803,
[804] = 804,
[805] = 805,
[806] = 806,
[807] = 807,
[808] = 808,
[809] = 809,
[810] = 810,
[811] = 811,
[812] = 812,
[813] = 813,
[814] = 814,
[815] = 815,
[816] = 816,
[817] = 817,
[818] = 818,
[819] = 819,
[820] = 820,
[821] = 821,
[822] = 822,
[823] = 823,
[824] = 824,
[825] = 825,
[826] = 826,
[827] = 827,
[828] = 828,
[829] = 829,
[830] = 830,
[831] = 831,
[832] = 832,
[833] = 833,
[834] = 834,
[835] = 835,
[836] = 836,
[837] = 837,
[838] = 838,
[839] = 839,
[840] = 840,
[841] = 841,
[842] = 842,
[843] = 843,
[844] = 844,
[845] = 845,
[846] = 846,
[847] = 847,
[848] = 848,
[849] = 849,
[850] = 850,
[851] = 851,
[852] = 852,
[853] = 853,
[854] = 854,
[855] = 855,
[856] = 856,
[857] = 857,
[858] = 858,
[859] = 859,
[860] = 860,
[861] = 861,
[862] = 862,
[863] = 863,
[864] = 864,
[865] = 865,
[866] = 866,
[867] = 867,
[868] = 868,
[869] = 869,
[870] = 870,
[871] = 871,
[872] = 872,
[873] = 873,
[874] = 874,
[875] = 875,
[876] = 876,
[877] = 877,
[878] = 878,
[879] = 879,
[880] = 880,
[881] = 881,
[882] = 882,
[883] = 883,
[884] = 884,
[885] = 885,
[886] = 886,
[887] = 887,
[888] = 888,
[889] = 889,
[890] = 890,
[891] = 891,
[892] = 892,
[893] = 893,
[894] = 894,
[895] = 895,
[896] = 896,
[897] = 897,
[898] = 898,
[899] = 899,
[900] = 900,
[901] = 901,
[902] = 902,
[903] = 903,
[904] = 904,
[905] = 905,
[906] = 906,
[907] = 907,
[908] = 908,
[909] = 909,
[910] = 910,
[911] = 911,
[912] = 912,
[913] = 913,
[914] = 914,
[915] = 915,
[916] = 916,
[917] = 917,
[918] = 918,
[919] = 919,
[920] = 920,
[921] = 921,
[922] = 922,
[923] = 923,
[924] = 924,
[925] = 925,
[926] = 926,
[927] = 927,
[928] = 928,
[929] = 925,
[930] = 930,
[931] = 931,
[932] = 932,
[933] = 933,
[934] = 934,
[935] = 935,
[936] = 936,
[937] = 937,
[938] = 938,
[939] = 939,
[940] = 940,
[941] = 941,
[942] = 942,
[943] = 943,
[944] = 944,
[945] = 945,
[946] = 946,
[947] = 947,
[948] = 948,
[949] = 949,
[950] = 950,
[951] = 951,
[952] = 952,
[953] = 953,
[954] = 954,
[955] = 955,
[956] = 956,
[957] = 957,
[958] = 958,
[959] = 959,
[960] = 960,
[961] = 961,
[962] = 962,
[963] = 963,
[964] = 964,
[965] = 965,
[966] = 966,
[967] = 967,
[968] = 968,
[969] = 969,
[970] = 970,
[971] = 971,
[972] = 972,
[973] = 973,
[974] = 974,
[975] = 975,
[976] = 976,
[977] = 977,
[978] = 978,
[979] = 979,
[980] = 980,
[981] = 981,
[982] = 982,
[983] = 983,
[984] = 984,
[985] = 985,
[986] = 986,
[987] = 987,
[988] = 988,
[989] = 989,
[990] = 990,
[991] = 991,
[992] = 992,
[993] = 993,
[994] = 994,
[995] = 995,
[996] = 996,
[997] = 997,
[998] = 998,
[999] = 999,
[1000] = 1000,
[1001] = 1001,
[1002] = 1002,
[1003] = 1003,
[1004] = 1004,
[1005] = 1005,
[1006] = 1006,
[1007] = 1007,
[1008] = 1008,
[1009] = 1009,
[1010] = 1010,
[1011] = 1011,
[1012] = 1012,
[1013] = 1013,
[1014] = 1014,
[1015] = 1015,
[1016] = 1016,
[1017] = 1017,
[1018] = 1018,
[1019] = 1019,
[1020] = 1020,
[1021] = 1021,
[1022] = 1022,
[1023] = 1023,
[1024] = 1024,
[1025] = 1025,
[1026] = 1026,
[1027] = 1027,
[1028] = 1028,
[1029] = 1029,
[1030] = 1030,
[1031] = 1031,
[1032] = 1032,
[1033] = 1033,
[1034] = 1034,
[1035] = 1035,
[1036] = 1036,
[1037] = 1037,
[1038] = 1038,
[1039] = 1039,
[1040] = 1040,
[1041] = 1041,
[1042] = 1042,
[1043] = 1043,
[1044] = 1044,
[1045] = 1045,
[1046] = 1046,
[1047] = 1047,
[1048] = 1048,
[1049] = 1049,
[1050] = 1050,
[1051] = 1051,
[1052] = 1052,
[1053] = 1053,
[1054] = 1054,
[1055] = 1055,
[1056] = 1056,
[1057] = 1057,
[1058] = 1058,
[1059] = 1059,
[1060] = 1060,
[1061] = 1061,
[1062] = 1062,
[1063] = 1063,
[1064] = 1064,
[1065] = 1065,
[1066] = 1066,
[1067] = 1067,
[1068] = 1068,
[1069] = 1069,
[1070] = 1070,
[1071] = 1071,
[1072] = 1072,
[1073] = 1073,
[1074] = 1074,
[1075] = 1075,
[1076] = 1076,
[1077] = 1077,
[1078] = 1078,
[1079] = 1079,
[1080] = 1080,
[1081] = 1081,
[1082] = 1082,
[1083] = 1083,
[1084] = 1084,
[1085] = 1085,
[1086] = 1086,
[1087] = 1087,
[1088] = 1088,
[1089] = 1089,
[1090] = 1090,
[1091] = 1091,
[1092] = 1092,
[1093] = 1093,
[1094] = 1094,
[1095] = 1095,
[1096] = 1096,
[1097] = 1097,
[1098] = 1098,
[1099] = 1099,
[1100] = 1100,
[1101] = 1101,
[1102] = 1102,
[1103] = 1103,
[1104] = 1104,
[1105] = 1105,
[1106] = 1106,
[1107] = 1107,
[1108] = 1108,
[1109] = 1109,
[1110] = 1110,
[1111] = 1111,
[1112] = 1112,
[1113] = 1113,
[1114] = 1114,
[1115] = 1115,
[1116] = 1116,
[1117] = 1117,
[1118] = 1118,
[1119] = 1119,
[1120] = 1120,
[1121] = 1121,
[1122] = 1122,
[1123] = 1123,
[1124] = 1124,
[1125] = 1125,
[1126] = 1126,
[1127] = 1127,
[1128] = 1128,
[1129] = 1129,
[1130] = 1130,
[1131] = 1131,
[1132] = 1132,
[1133] = 1133,
[1134] = 1134,
[1135] = 1135,
[1136] = 1136,
[1137] = 1137,
[1138] = 1138,
[1139] = 1139,
[1140] = 1140,
[1141] = 1141,
[1142] = 1142,
[1143] = 1143,
[1144] = 1144,
[1145] = 1145,
[1146] = 1146,
[1147] = 1147,
[1148] = 1148,
[1149] = 1149,
[1150] = 1150,
[1151] = 1151,
[1152] = 1152,
[1153] = 1153,
[1154] = 1154,
[1155] = 1155,
[1156] = 1156,
[1157] = 1157,
[1158] = 1158,
[1159] = 1159,
[1160] = 1160,
[1161] = 1161,
[1162] = 1162,
[1163] = 1163,
[1164] = 1164,
[1165] = 1165,
[1166] = 1166,
[1167] = 1167,
[1168] = 1168,
[1169] = 1169,
[1170] = 1170,
[1171] = 1171,
[1172] = 1172,
[1173] = 1173,
[1174] = 1174,
[1175] = 1175,
[1176] = 1176,
[1177] = 1177,
[1178] = 1178,
[1179] = 1179,
[1180] = 1180,
[1181] = 1181,
[1182] = 1182,
[1183] = 1183,
[1184] = 1184,
[1185] = 1185,
[1186] = 1186,
[1187] = 1187,
[1188] = 1188,
[1189] = 1189,
[1190] = 1190,
[1191] = 1191,
[1192] = 1192,
[1193] = 1193,
[1194] = 1194,
[1195] = 1195,
[1196] = 1196,
[1197] = 1197,
[1198] = 1198,
[1199] = 1199,
[1200] = 1200,
[1201] = 1201,
[1202] = 1202,
[1203] = 1203,
[1204] = 1204,
[1205] = 1205,
[1206] = 1206,
[1207] = 1207,
[1208] = 1208,
[1209] = 1209,
[1210] = 1210,
[1211] = 1211,
[1212] = 1212,
[1213] = 1213,
[1214] = 1214,
[1215] = 1215,
[1216] = 1216,
[1217] = 1217,
[1218] = 1218,
[1219] = 1219,
[1220] = 1220,
[1221] = 1221,
[1222] = 1222,
[1223] = 1223,
[1224] = 1224,
[1225] = 1225,
[1226] = 1226,
[1227] = 1227,
[1228] = 1228,
[1229] = 1229,
[1230] = 1230,
[1231] = 1231,
[1232] = 1232,
[1233] = 1233,
[1234] = 1234,
[1235] = 1235,
[1236] = 1236,
[1237] = 1237,
[1238] = 1238,
[1239] = 1239,
[1240] = 1240,
[1241] = 1241,
[1242] = 1242,
[1243] = 1243,
[1244] = 1244,
[1245] = 1245,
[1246] = 1216,
[1247] = 1247,
[1248] = 1248,
[1249] = 1249,
[1250] = 1250,
[1251] = 1251,
[1252] = 1252,
[1253] = 1253,
[1254] = 1254,
[1255] = 1255,
[1256] = 1256,
[1257] = 1257,
[1258] = 1258,
[1259] = 1259,
[1260] = 1260,
[1261] = 1261,
[1262] = 1262,
[1263] = 1263,
[1264] = 1264,
[1265] = 1265,
[1266] = 1266,
[1267] = 1267,
[1268] = 1268,
[1269] = 1269,
[1270] = 1270,
[1271] = 1271,
[1272] = 1272,
[1273] = 1273,
[1274] = 1274,
[1275] = 1275,
[1276] = 1276,
[1277] = 1277,
[1278] = 1278,
[1279] = 1279,
[1280] = 1280,
[1281] = 1281,
[1282] = 1282,
[1283] = 1283,
[1284] = 1284,
[1285] = 1285,
[1286] = 1286,
[1287] = 1287,
[1288] = 1288,
[1289] = 1289,
[1290] = 1290,
[1291] = 1291,
[1292] = 1292,
[1293] = 1293,
[1294] = 1294,
[1295] = 1295,
[1296] = 1296,
[1297] = 1297,
[1298] = 1298,
[1299] = 1299,
[1300] = 1300,
[1301] = 1301,
[1302] = 1302,
[1303] = 1303,
[1304] = 1304,
[1305] = 1305,
[1306] = 1306,
[1307] = 1307,
[1308] = 1308,
[1309] = 1309,
[1310] = 1310,
[1311] = 1311,
[1312] = 1312,
[1313] = 1313,
[1314] = 1314,
[1315] = 1315,
[1316] = 1316,
[1317] = 1317,
[1318] = 1318,
[1319] = 1319,
[1320] = 1320,
[1321] = 1321,
[1322] = 1322,
[1323] = 1323,
[1324] = 1324,
[1325] = 1325,
[1326] = 1326,
[1327] = 1327,
[1328] = 1328,
[1329] = 1329,
[1330] = 1330,
[1331] = 1331,
[1332] = 1332,
[1333] = 1333,
[1334] = 1334,
[1335] = 1335,
[1336] = 1336,
[1337] = 1337,
[1338] = 1338,
[1339] = 1339,
[1340] = 1340,
[1341] = 1341,
[1342] = 1342,
[1343] = 1343,
[1344] = 1344,
[1345] = 1345,
[1346] = 1346,
[1347] = 1347,
[1348] = 1348,
[1349] = 1349,
[1350] = 1350,
[1351] = 1351,
[1352] = 1352,
[1353] = 1353,
[1354] = 1354,
[1355] = 1355,
[1356] = 1356,
[1357] = 1357,
[1358] = 1358,
[1359] = 1359,
[1360] = 1360,
[1361] = 1361,
[1362] = 1362,
[1363] = 1363,
[1364] = 1364,
[1365] = 1365,
[1366] = 1366,
[1367] = 1367,
[1368] = 1368,
[1369] = 1369,
[1370] = 1370,
[1371] = 1371,
[1372] = 1372,
[1373] = 1373,
[1374] = 1374,
[1375] = 1375,
[1376] = 1376,
[1377] = 1377,
[1378] = 1378,
[1379] = 1379,
[1380] = 1380,
[1381] = 1381,
[1382] = 1382,
[1383] = 1383,
[1384] = 1384,
[1385] = 1385,
[1386] = 1386,
[1387] = 1387,
[1388] = 1388,
[1389] = 1389,
[1390] = 1390,
[1391] = 1391,
[1392] = 1392,
[1393] = 1393,
[1394] = 1394,
[1395] = 1395,
[1396] = 1396,
[1397] = 1397,
[1398] = 1398,
[1399] = 1399,
[1400] = 1400,
[1401] = 1401,
[1402] = 1402,
[1403] = 1403,
[1404] = 1404,
[1405] = 1405,
[1406] = 1406,
[1407] = 1407,
[1408] = 1408,
[1409] = 1409,
[1410] = 1410,
[1411] = 1411,
[1412] = 1412,
[1413] = 1413,
[1414] = 1414,
[1415] = 1415,
[1416] = 1416,
[1417] = 1417,
[1418] = 1418,
[1419] = 1419,
[1420] = 1420,
[1421] = 1421,
[1422] = 1422,
[1423] = 1423,
[1424] = 1424,
[1425] = 1425,
[1426] = 1426,
[1427] = 1427,
[1428] = 1428,
[1429] = 1429,
[1430] = 1430,
[1431] = 1431,
[1432] = 1432,
[1433] = 1433,
[1434] = 1434,
[1435] = 1435,
[1436] = 1436,
[1437] = 1437,
[1438] = 1438,
[1439] = 1439,
[1440] = 1440,
[1441] = 1441,
[1442] = 1442,
[1443] = 1443,
[1444] = 1444,
[1445] = 1445,
[1446] = 1446,
[1447] = 1447,
[1448] = 1448,
[1449] = 1449,
[1450] = 1450,
[1451] = 1451,
[1452] = 1452,
[1453] = 1453,
[1454] = 1454,
[1455] = 1455,
[1456] = 1456,
[1457] = 1457,
[1458] = 1458,
[1459] = 1459,
[1460] = 1460,
[1461] = 1461,
[1462] = 1462,
[1463] = 1463,
[1464] = 1464,
[1465] = 1465,
[1466] = 1466,
[1467] = 1467,
[1468] = 1468,
[1469] = 1469,
[1470] = 1470,
[1471] = 1471,
[1472] = 1472,
[1473] = 1473,
[1474] = 1474,
[1475] = 1475,
[1476] = 1476,
[1477] = 1477,
[1478] = 1478,
[1479] = 1479,
[1480] = 1480,
[1481] = 1481,
[1482] = 1482,
[1483] = 1483,
[1484] = 1484,
[1485] = 1485,
[1486] = 1486,
[1487] = 1487,
[1488] = 1488,
[1489] = 1489,
[1490] = 1490,
[1491] = 1491,
[1492] = 1492,
[1493] = 1493,
[1494] = 1494,
[1495] = 1495,
[1496] = 1496,
[1497] = 1497,
[1498] = 1498,
[1499] = 1499,
[1500] = 1500,
[1501] = 1501,
[1502] = 1502,
[1503] = 1503,
[1504] = 1504,
[1505] = 1505,
[1506] = 1506,
[1507] = 1507,
[1508] = 1508,
[1509] = 1509,
[1510] = 1510,
[1511] = 1511,
[1512] = 1512,
[1513] = 1513,
[1514] = 1514,
[1515] = 1515,
[1516] = 1516,
[1517] = 1517,
[1518] = 1518,
[1519] = 1519,
[1520] = 1520,
[1521] = 1521,
[1522] = 1522,
[1523] = 1523,
[1524] = 1524,
[1525] = 1525,
[1526] = 1526,
[1527] = 1527,
[1528] = 1528,
[1529] = 1529,
[1530] = 1530,
[1531] = 1531,
[1532] = 1532,
[1533] = 1533,
[1534] = 1534,
[1535] = 1535,
[1536] = 1536,
[1537] = 1537,
[1538] = 1538,
[1539] = 1539,
[1540] = 1540,
[1541] = 1541,
[1542] = 1542,
[1543] = 1543,
[1544] = 1544,
[1545] = 1545,
[1546] = 1546,
[1547] = 1547,
[1548] = 1548,
[1549] = 1549,
[1550] = 1550,
[1551] = 1551,
[1552] = 1552,
[1553] = 1553,
[1554] = 1554,
[1555] = 1555,
[1556] = 1556,
[1557] = 1557,
[1558] = 1558,
[1559] = 1559,
[1560] = 1560,
[1561] = 1561,
[1562] = 1562,
[1563] = 1563,
[1564] = 1564,
[1565] = 1565,
[1566] = 1566,
[1567] = 1567,
[1568] = 1568,
[1569] = 1569,
[1570] = 1570,
[1571] = 1571,
[1572] = 1572,
[1573] = 1573,
[1574] = 1574,
[1575] = 1575,
[1576] = 1576,
[1577] = 1577,
[1578] = 1578,
[1579] = 1579,
[1580] = 1580,
[1581] = 1581,
[1582] = 1582,
[1583] = 1583,
[1584] = 1584,
[1585] = 1585,
[1586] = 1586,
[1587] = 1587,
[1588] = 1588,
[1589] = 1589,
[1590] = 1590,
[1591] = 1591,
[1592] = 1592,
[1593] = 1593,
[1594] = 1594,
[1595] = 1595,
[1596] = 1596,
[1597] = 1597,
[1598] = 1598,
[1599] = 1599,
[1600] = 1600,
[1601] = 1601,
[1602] = 1602,
[1603] = 1603,
[1604] = 1604,
[1605] = 1605,
[1606] = 1606,
[1607] = 1607,
[1608] = 1608,
[1609] = 1609,
[1610] = 1610,
[1611] = 1611,
[1612] = 1612,
[1613] = 1613,
[1614] = 1614,
[1615] = 1615,
[1616] = 1616,
[1617] = 1617,
[1618] = 1618,
[1619] = 1619,
[1620] = 1620,
[1621] = 1621,
[1622] = 1622,
[1623] = 1623,
[1624] = 1624,
[1625] = 1625,
[1626] = 1626,
[1627] = 1627,
[1628] = 1628,
[1629] = 1629,
[1630] = 1630,
[1631] = 1631,
[1632] = 1632,
[1633] = 1633,
[1634] = 1634,
[1635] = 1635,
[1636] = 1636,
[1637] = 1637,
[1638] = 1638,
[1639] = 1639,
[1640] = 1640,
[1641] = 1641,
[1642] = 1642,
[1643] = 1643,
[1644] = 1644,
[1645] = 1645,
[1646] = 1646,
[1647] = 1647,
[1648] = 1648,
[1649] = 1649,
[1650] = 1650,
[1651] = 1651,
[1652] = 1652,
[1653] = 1653,
[1654] = 1654,
[1655] = 1655,
[1656] = 1656,
[1657] = 1657,
[1658] = 1658,
[1659] = 1659,
[1660] = 1660,
[1661] = 1661,
[1662] = 1662,
[1663] = 1663,
[1664] = 1664,
[1665] = 1665,
[1666] = 1666,
[1667] = 1667,
[1668] = 1668,
[1669] = 1669,
[1670] = 1670,
[1671] = 1671,
[1672] = 1672,
[1673] = 1673,
[1674] = 1674,
[1675] = 1675,
[1676] = 1676,
[1677] = 1677,
[1678] = 1678,
[1679] = 1679,
[1680] = 1680,
[1681] = 1681,
[1682] = 1682,
[1683] = 1683,
[1684] = 1684,
[1685] = 1685,
[1686] = 1686,
[1687] = 1687,
[1688] = 1688,
[1689] = 1689,
[1690] = 1690,
[1691] = 1691,
[1692] = 1692,
[1693] = 1693,
[1694] = 1694,
[1695] = 1695,
[1696] = 1696,
[1697] = 1697,
[1698] = 1698,
[1699] = 1699,
[1700] = 1700,
[1701] = 1701,
[1702] = 1702,
[1703] = 1703,
[1704] = 1704,
[1705] = 1705,
[1706] = 1706,
[1707] = 1707,
[1708] = 1708,
[1709] = 1709,
[1710] = 1710,
[1711] = 1711,
[1712] = 1712,
[1713] = 1713,
[1714] = 1714,
[1715] = 1715,
[1716] = 1716,
[1717] = 1717,
[1718] = 1718,
[1719] = 1719,
[1720] = 1720,
[1721] = 1721,
[1722] = 1722,
[1723] = 1723,
[1724] = 1724,
[1725] = 1725,
[1726] = 1726,
[1727] = 1727,
[1728] = 1728,
[1729] = 1729,
[1730] = 1730,
[1731] = 1731,
[1732] = 1732,
[1733] = 1733,
[1734] = 1734,
[1735] = 1735,
[1736] = 1736,
[1737] = 1737,
[1738] = 1738,
[1739] = 1739,
[1740] = 1740,
[1741] = 1741,
[1742] = 1742,
[1743] = 1743,
[1744] = 1744,
[1745] = 1745,
[1746] = 1746,
[1747] = 1747,
[1748] = 1748,
[1749] = 1749,
[1750] = 1750,
[1751] = 1751,
[1752] = 1752,
[1753] = 1753,
[1754] = 1754,
[1755] = 1755,
[1756] = 1756,
[1757] = 1757,
[1758] = 1758,
[1759] = 1759,
[1760] = 1760,
[1761] = 1761,
[1762] = 1762,
[1763] = 1763,
[1764] = 1764,
[1765] = 1765,
[1766] = 1766,
[1767] = 1767,
[1768] = 1768,
[1769] = 1769,
[1770] = 1770,
[1771] = 1771,
[1772] = 1772,
[1773] = 1773,
[1774] = 1774,
[1775] = 1775,
[1776] = 1776,
[1777] = 1777,
[1778] = 1778,
[1779] = 1779,
[1780] = 1780,
[1781] = 1781,
[1782] = 1782,
[1783] = 1783,
[1784] = 1784,
[1785] = 1785,
[1786] = 1786,
[1787] = 1787,
[1788] = 1788,
[1789] = 1789,
[1790] = 1790,
[1791] = 1791,
[1792] = 1792,
[1793] = 1793,
[1794] = 1794,
[1795] = 1795,
[1796] = 1796,
[1797] = 1797,
[1798] = 1798,
[1799] = 1799,
[1800] = 1800,
[1801] = 1801,
[1802] = 1802,
[1803] = 1803,
[1804] = 1804,
[1805] = 1805,
[1806] = 1806,
[1807] = 1807,
[1808] = 1808,
[1809] = 1809,
[1810] = 1810,
[1811] = 1811,
[1812] = 1812,
[1813] = 1813,
[1814] = 1814,
[1815] = 1815,
[1816] = 1816,
[1817] = 1817,
[1818] = 1818,
[1819] = 1819,
[1820] = 1820,
[1821] = 1821,
[1822] = 1822,
[1823] = 1823,
[1824] = 1824,
[1825] = 1825,
[1826] = 1826,
[1827] = 1827,
[1828] = 1828,
[1829] = 1829,
[1830] = 1830,
[1831] = 1831,
[1832] = 1832,
[1833] = 1833,
[1834] = 1834,
[1835] = 1835,
[1836] = 1836,
[1837] = 1837,
[1838] = 1838,
[1839] = 1839,
[1840] = 1840,
[1841] = 1841,
[1842] = 1842,
[1843] = 1843,
[1844] = 1844,
[1845] = 1845,
[1846] = 1846,
[1847] = 1847,
[1848] = 1848,
[1849] = 1849,
[1850] = 1850,
[1851] = 1851,
[1852] = 1852,
[1853] = 1853,
[1854] = 1854,
[1855] = 1855,
[1856] = 1856,
[1857] = 1857,
[1858] = 1858,
[1859] = 1859,
[1860] = 1860,
[1861] = 1861,
[1862] = 1862,
[1863] = 1863,
[1864] = 1864,
[1865] = 1865,
[1866] = 1866,
[1867] = 1867,
[1868] = 1868,
[1869] = 1869,
[1870] = 1870,
[1871] = 1871,
[1872] = 1872,
[1873] = 1873,
[1874] = 1874,
[1875] = 1875,
[1876] = 1876,
[1877] = 1877,
[1878] = 1878,
[1879] = 1879,
[1880] = 1880,
[1881] = 1881,
[1882] = 1882,
[1883] = 1883,
[1884] = 1884,
[1885] = 1885,
[1886] = 1886,
[1887] = 1887,
[1888] = 1888,
[1889] = 1889,
[1890] = 1890,
[1891] = 1891,
[1892] = 1892,
[1893] = 1893,
[1894] = 1894,
[1895] = 1895,
[1896] = 1896,
[1897] = 1897,
[1898] = 1898,
[1899] = 1899,
[1900] = 1900,
[1901] = 1901,
[1902] = 1902,
[1903] = 1903,
[1904] = 1904,
[1905] = 1905,
[1906] = 1906,
[1907] = 1907,
[1908] = 1908,
[1909] = 1909,
[1910] = 1910,
[1911] = 1911,
[1912] = 1912,
[1913] = 1913,
[1914] = 1914,
[1915] = 1915,
[1916] = 1916,
[1917] = 1917,
[1918] = 1918,
[1919] = 1919,
[1920] = 1920,
[1921] = 1921,
[1922] = 1922,
[1923] = 1923,
[1924] = 1924,
[1925] = 1925,
[1926] = 1926,
[1927] = 1927,
[1928] = 1928,
[1929] = 1929,
[1930] = 1930,
[1931] = 1931,
[1932] = 1932,
[1933] = 1933,
[1934] = 1934,
[1935] = 1935,
[1936] = 1936,
[1937] = 1937,
[1938] = 1938,
[1939] = 1939,
[1940] = 1940,
[1941] = 1941,
[1942] = 1942,
[1943] = 1943,
[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,
[1963] = 1963,
[1964] = 1964,
[1965] = 1965,
[1966] = 1966,
[1967] = 1967,
[1968] = 1968,
[1969] = 1969,
[1970] = 1970,
[1971] = 1971,
[1972] = 1972,
[1973] = 1973,
[1974] = 1974,
[1975] = 1975,
[1976] = 1976,
[1977] = 1977,
[1978] = 1978,
[1979] = 1979,
[1980] = 1980,
[1981] = 1981,
[1982] = 1982,
[1983] = 1983,
[1984] = 1984,
[1985] = 1985,
[1986] = 1986,
[1987] = 1987,
[1988] = 1988,
[1989] = 1989,
[1990] = 1990,
[1991] = 1991,
[1992] = 1992,
[1993] = 1993,
[1994] = 1994,
[1995] = 1995,
[1996] = 1996,
[1997] = 1997,
[1998] = 1998,
[1999] = 1999,
[2000] = 2000,
[2001] = 2001,
[2002] = 2002,
[2003] = 2003,
[2004] = 2004,
[2005] = 2005,
[2006] = 2006,
[2007] = 2007,
[2008] = 2008,
[2009] = 2009,
[2010] = 2010,
[2011] = 2011,
[2012] = 2012,
[2013] = 2013,
[2014] = 2014,
[2015] = 2015,
[2016] = 2016,
[2017] = 2017,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(49);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(33);
if (lookahead == '$') ADVANCE(42);
if (lookahead == '&') ADVANCE(81);
if (lookahead == '\'') ADVANCE(86);
if (lookahead == '(') ADVANCE(90);
if (lookahead == ')') ADVANCE(91);
if (lookahead == '*') ADVANCE(83);
if (lookahead == '+') ADVANCE(79);
if (lookahead == ',') ADVANCE(89);
if (lookahead == '-') ADVANCE(80);
if (lookahead == '.') ADVANCE(87);
if (lookahead == '/') ADVANCE(84);
if (lookahead == ':') ADVANCE(95);
if (lookahead == ';') ADVANCE(101);
if (lookahead == '<') ADVANCE(73);
if (lookahead == '=') ADVANCE(70);
if (lookahead == '>') ADVANCE(77);
if (lookahead == '@') ADVANCE(88);
if (lookahead == '[') ADVANCE(92);
if (lookahead == '\\') SKIP(45)
if (lookahead == ']') ADVANCE(93);
if (lookahead == 'a') ADVANCE(53);
if (lookahead == 'm') ADVANCE(55);
if (lookahead == 'n') ADVANCE(56);
if (lookahead == '|') ADVANCE(97);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62);
if (lookahead != 0 &&
lookahead > '?' &&
(lookahead < '^' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 1:
if (lookahead == '\n') SKIP(10)
END_STATE();
case 2:
if (lookahead == '\n') SKIP(10)
if (lookahead == '\r') SKIP(1)
END_STATE();
case 3:
if (lookahead == '\n') SKIP(11)
END_STATE();
case 4:
if (lookahead == '\n') SKIP(11)
if (lookahead == '\r') SKIP(3)
END_STATE();
case 5:
if (lookahead == '\n') SKIP(7)
END_STATE();
case 6:
if (lookahead == '\n') SKIP(7)
if (lookahead == '\r') SKIP(5)
END_STATE();
case 7:
if (lookahead == '"') ADVANCE(8);
if (lookahead == '$') ADVANCE(42);
if (lookahead == '&') ADVANCE(81);
if (lookahead == '\'') ADVANCE(43);
if (lookahead == ')') ADVANCE(91);
if (lookahead == '*') ADVANCE(82);
if (lookahead == '+') ADVANCE(79);
if (lookahead == ',') ADVANCE(89);
if (lookahead == '-') ADVANCE(80);
if (lookahead == '.') ADVANCE(13);
if (lookahead == '/') ADVANCE(84);
if (lookahead == ';') ADVANCE(101);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(71);
if (lookahead == '>') ADVANCE(76);
if (lookahead == '@') ADVANCE(88);
if (lookahead == '[') ADVANCE(92);
if (lookahead == '\\') SKIP(6)
if (lookahead == ']') ADVANCE(93);
if (lookahead == 'm') ADVANCE(55);
if (lookahead == '|') ADVANCE(97);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(7)
if (lookahead != 0 &&
lookahead > '?' &&
(lookahead < '^' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 8:
if (lookahead == '"') ADVANCE(60);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == '#') ADVANCE(64);
if (lookahead == '-' ||
lookahead == '.' ||
('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(9);
END_STATE();
case 10:
if (lookahead == '&') ADVANCE(81);
if (lookahead == '\'') ADVANCE(86);
if (lookahead == '(') ADVANCE(90);
if (lookahead == ')') ADVANCE(91);
if (lookahead == '*') ADVANCE(83);
if (lookahead == '+') ADVANCE(79);
if (lookahead == ',') ADVANCE(89);
if (lookahead == '-') ADVANCE(80);
if (lookahead == '.') ADVANCE(87);
if (lookahead == '/') ADVANCE(84);
if (lookahead == ':') ADVANCE(95);
if (lookahead == ';') ADVANCE(96);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(71);
if (lookahead == '>') ADVANCE(76);
if (lookahead == '\\') SKIP(2)
if (lookahead == ']') ADVANCE(93);
if (lookahead == 'm') ADVANCE(55);
if (lookahead == '|') ADVANCE(97);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(10)
if (lookahead != 0 &&
lookahead > '@' &&
(lookahead < '[' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 11:
if (lookahead == '&') ADVANCE(81);
if (lookahead == '\'') ADVANCE(86);
if (lookahead == '(') ADVANCE(90);
if (lookahead == ')') ADVANCE(91);
if (lookahead == '+') ADVANCE(79);
if (lookahead == ',') ADVANCE(89);
if (lookahead == '-') ADVANCE(80);
if (lookahead == '.') ADVANCE(87);
if (lookahead == '/') ADVANCE(19);
if (lookahead == ':') ADVANCE(95);
if (lookahead == ';') ADVANCE(96);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(71);
if (lookahead == '>') ADVANCE(76);
if (lookahead == '\\') SKIP(4)
if (lookahead == ']') ADVANCE(93);
if (lookahead == '|') ADVANCE(97);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(11)
if (lookahead != 0 &&
lookahead > '@' &&
(lookahead < '[' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 12:
if (lookahead == '\'') ADVANCE(61);
END_STATE();
case 13:
if (lookahead == '.') ADVANCE(98);
END_STATE();
case 14:
if (lookahead == '<') ADVANCE(67);
END_STATE();
case 15:
if (lookahead == '<') ADVANCE(105);
if (lookahead == '>') ADVANCE(100);
END_STATE();
case 16:
if (lookahead == '<') ADVANCE(14);
END_STATE();
case 17:
if (lookahead == '<') ADVANCE(16);
END_STATE();
case 18:
if (lookahead == '<') ADVANCE(17);
END_STATE();
case 19:
if (lookahead == '=') ADVANCE(72);
END_STATE();
case 20:
if (lookahead == '=') ADVANCE(69);
END_STATE();
case 21:
if (lookahead == '=') ADVANCE(20);
END_STATE();
case 22:
if (lookahead == '=') ADVANCE(21);
END_STATE();
case 23:
if (lookahead == '=') ADVANCE(22);
END_STATE();
case 24:
if (lookahead == '=') ADVANCE(23);
END_STATE();
case 25:
if (lookahead == '>') ADVANCE(94);
END_STATE();
case 26:
if (lookahead == '>') ADVANCE(68);
END_STATE();
case 27:
if (lookahead == '>') ADVANCE(107);
END_STATE();
case 28:
if (lookahead == '>') ADVANCE(26);
END_STATE();
case 29:
if (lookahead == '>') ADVANCE(28);
END_STATE();
case 30:
if (lookahead == '>') ADVANCE(29);
END_STATE();
case 31:
if (lookahead == '+' ||
lookahead == '-') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(66);
END_STATE();
case 32:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(112);
END_STATE();
case 33:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(37);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(35);
END_STATE();
case 34:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(111);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(36);
END_STATE();
case 35:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(109);
END_STATE();
case 36:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(110);
END_STATE();
case 37:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(38);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(32);
END_STATE();
case 38:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(34);
END_STATE();
case 39:
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(65);
END_STATE();
case 40:
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(66);
END_STATE();
case 41:
if (lookahead == '-' ||
lookahead == '.' ||
('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(9);
END_STATE();
case 42:
if (lookahead != 0 &&
lookahead > '@' &&
(lookahead < '[' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(58);
END_STATE();
case 43:
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(12);
END_STATE();
case 44:
if (eof) ADVANCE(49);
if (lookahead == '\n') SKIP(0)
END_STATE();
case 45:
if (eof) ADVANCE(49);
if (lookahead == '\n') SKIP(0)
if (lookahead == '\r') SKIP(44)
END_STATE();
case 46:
if (eof) ADVANCE(49);
if (lookahead == '\n') SKIP(48)
END_STATE();
case 47:
if (eof) ADVANCE(49);
if (lookahead == '\n') SKIP(48)
if (lookahead == '\r') SKIP(46)
END_STATE();
case 48:
if (eof) ADVANCE(49);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(33);
if (lookahead == '$') ADVANCE(42);
if (lookahead == '\'') ADVANCE(43);
if (lookahead == '(') ADVANCE(90);
if (lookahead == ')') ADVANCE(91);
if (lookahead == '+') ADVANCE(79);
if (lookahead == ',') ADVANCE(89);
if (lookahead == '-') ADVANCE(80);
if (lookahead == '.') ADVANCE(13);
if (lookahead == ':') ADVANCE(95);
if (lookahead == ';') ADVANCE(96);
if (lookahead == '<') ADVANCE(15);
if (lookahead == '=') ADVANCE(25);
if (lookahead == '>') ADVANCE(27);
if (lookahead == '@') ADVANCE(88);
if (lookahead == '[') ADVANCE(92);
if (lookahead == '\\') SKIP(47)
if (lookahead == ']') ADVANCE(93);
if (lookahead == '|') ADVANCE(97);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(48)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62);
if (lookahead != 0 &&
lookahead > '?' &&
(lookahead < '^' || '`' < lookahead) &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 49:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 50:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'd') ADVANCE(85);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 51:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(104);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 52:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(103);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 53:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(51);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 54:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(52);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 55:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(50);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 56:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'u') ADVANCE(54);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 57:
ACCEPT_TOKEN(sym_identifier);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 58:
ACCEPT_TOKEN(sym_gnatprep_identifier);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(58);
END_STATE();
case 59:
ACCEPT_TOKEN(sym_comment);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(59);
END_STATE();
case 60:
ACCEPT_TOKEN(sym_string_literal);
if (lookahead == '"') ADVANCE(8);
END_STATE();
case 61:
ACCEPT_TOKEN(sym_character_literal);
END_STATE();
case 62:
ACCEPT_TOKEN(sym_numeric_literal);
if (lookahead == '#') ADVANCE(41);
if (lookahead == '.') ADVANCE(39);
if (lookahead == '_') ADVANCE(63);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(31);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62);
END_STATE();
case 63:
ACCEPT_TOKEN(sym_numeric_literal);
if (lookahead == '.') ADVANCE(39);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(31);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(63);
END_STATE();
case 64:
ACCEPT_TOKEN(sym_numeric_literal);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(31);
END_STATE();
case 65:
ACCEPT_TOKEN(sym_numeric_literal);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(31);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(65);
END_STATE();
case 66:
ACCEPT_TOKEN(sym_numeric_literal);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(66);
END_STATE();
case 67:
ACCEPT_TOKEN(aux_sym_git_conflict_mark_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(67);
END_STATE();
case 68:
ACCEPT_TOKEN(aux_sym_git_conflict_mark_token2);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(68);
END_STATE();
case 69:
ACCEPT_TOKEN(aux_sym_git_conflict_mark_token3);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(69);
END_STATE();
case 70:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(24);
if (lookahead == '>') ADVANCE(94);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '>') ADVANCE(94);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_SLASH_EQ);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '<') ADVANCE(106);
if (lookahead == '=') ADVANCE(75);
if (lookahead == '>') ADVANCE(100);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(75);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 76:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(78);
END_STATE();
case 77:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(78);
if (lookahead == '>') ADVANCE(108);
END_STATE();
case 78:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 80:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '-') ADVANCE(59);
END_STATE();
case 81:
ACCEPT_TOKEN(anon_sym_AMP);
END_STATE();
case 82:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 83:
ACCEPT_TOKEN(anon_sym_STAR);
if (lookahead == '*') ADVANCE(99);
END_STATE();
case 84:
ACCEPT_TOKEN(anon_sym_SLASH);
if (lookahead == '=') ADVANCE(72);
END_STATE();
case 85:
ACCEPT_TOKEN(anon_sym_mod);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 86:
ACCEPT_TOKEN(sym_tick);
END_STATE();
case 87:
ACCEPT_TOKEN(anon_sym_DOT);
if (lookahead == '.') ADVANCE(98);
END_STATE();
case 88:
ACCEPT_TOKEN(sym_target_name);
END_STATE();
case 89:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 90:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 91:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 92:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 93:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 94:
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 95:
ACCEPT_TOKEN(anon_sym_COLON);
if (lookahead == '=') ADVANCE(102);
END_STATE();
case 96:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 97:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 98:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 99:
ACCEPT_TOKEN(anon_sym_STAR_STAR);
END_STATE();
case 100:
ACCEPT_TOKEN(anon_sym_LT_GT);
END_STATE();
case 101:
ACCEPT_TOKEN(aux_sym_component_list_token1);
END_STATE();
case 102:
ACCEPT_TOKEN(anon_sym_COLON_EQ);
END_STATE();
case 103:
ACCEPT_TOKEN(anon_sym_null);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 104:
ACCEPT_TOKEN(anon_sym_all);
if (lookahead != 0 &&
lookahead > '/' &&
(lookahead < ':' || '@' < lookahead) &&
(lookahead < '[' || '^' < lookahead) &&
lookahead != '`' &&
(lookahead < '{' || 127 < lookahead)) ADVANCE(57);
END_STATE();
case 105:
ACCEPT_TOKEN(anon_sym_LT_LT);
END_STATE();
case 106:
ACCEPT_TOKEN(anon_sym_LT_LT);
if (lookahead == '<') ADVANCE(18);
END_STATE();
case 107:
ACCEPT_TOKEN(anon_sym_GT_GT);
END_STATE();
case 108:
ACCEPT_TOKEN(anon_sym_GT_GT);
if (lookahead == '>') ADVANCE(30);
END_STATE();
case 109:
ACCEPT_TOKEN(aux_sym_gnatprep_declarative_if_statement_token1);
END_STATE();
case 110:
ACCEPT_TOKEN(aux_sym_gnatprep_declarative_if_statement_token2);
END_STATE();
case 111:
ACCEPT_TOKEN(aux_sym_gnatprep_declarative_if_statement_token3);
END_STATE();
case 112:
ACCEPT_TOKEN(aux_sym_gnatprep_declarative_if_statement_token4);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'C') ADVANCE(1);
if (lookahead == 'R') ADVANCE(2);
if (lookahead == '\\') SKIP(3)
if (lookahead == 'c') ADVANCE(4);
if (lookahead == 'r') ADVANCE(5);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(6);
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(7);
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(8);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(9);
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(10);
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(11);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(12);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(13);
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(14);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(15);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(16);
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(17);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(18);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(19);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(20);
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(21);
if (lookahead == 'X' ||
lookahead == 'x') ADVANCE(22);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(23);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(24);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(25);
END_STATE();
case 2:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(26);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(27);
END_STATE();
case 3:
if (lookahead == '\n') SKIP(0)
if (lookahead == '\r') SKIP(28)
END_STATE();
case 4:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(23);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(25);
END_STATE();
case 5:
if (lookahead == 'E') ADVANCE(27);
if (lookahead == 'e') ADVANCE(29);
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(26);
END_STATE();
case 6:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(30);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(31);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(32);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(33);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(34);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(35);
END_STATE();
case 7:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(36);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(37);
END_STATE();
case 8:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(38);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(39);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(40);
END_STATE();
case 9:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(41);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(42);
if (lookahead == 'X' ||
lookahead == 'x') ADVANCE(43);
END_STATE();
case 10:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(44);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(45);
END_STATE();
case 11:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(46);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(47);
END_STATE();
case 12:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(48);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(49);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(50);
END_STATE();
case 13:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(51);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(52);
END_STATE();
case 14:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(53);
END_STATE();
case 15:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(54);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(55);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(56);
END_STATE();
case 16:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(57);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(58);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(59);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(60);
if (lookahead == 'V' ||
lookahead == 'v') ADVANCE(61);
END_STATE();
case 17:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(62);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(63);
END_STATE();
case 18:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(64);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(65);
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(66);
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(67);
END_STATE();
case 19:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(68);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(69);
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(70);
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(71);
END_STATE();
case 20:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(72);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(73);
END_STATE();
case 21:
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(74);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(75);
END_STATE();
case 22:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(76);
END_STATE();
case 23:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(77);
END_STATE();
case 24:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(78);
END_STATE();
case 25:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(79);
END_STATE();
case 26:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(80);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(81);
END_STATE();
case 27:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(82);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(83);
if (lookahead == 'Q' ||
lookahead == 'q') ADVANCE(84);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(85);
if (lookahead == 'V' ||
lookahead == 'v') ADVANCE(86);
END_STATE();
case 28:
if (lookahead == '\n') SKIP(0)
END_STATE();
case 29:
if (lookahead == 'm') ADVANCE(87);
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(82);
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(83);
if (lookahead == 'Q' ||
lookahead == 'q') ADVANCE(84);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(85);
if (lookahead == 'V' ||
lookahead == 'v') ADVANCE(86);
END_STATE();
case 30:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(88);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(89);
END_STATE();
case 31:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(90);
END_STATE();
case 32:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(91);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(92);
END_STATE();
case 33:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(93);
END_STATE();
case 34:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(94);
END_STATE();
case 35:
ACCEPT_TOKEN(aux_sym_at_clause_token1);
END_STATE();
case 36:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(95);
END_STATE();
case 37:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(96);
END_STATE();
case 38:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(97);
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(98);
END_STATE();
case 39:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(99);
END_STATE();
case 40:
ACCEPT_TOKEN(aux_sym_accept_statement_token2);
END_STATE();
case 41:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(100);
END_STATE();
case 42:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(101);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(102);
END_STATE();
case 43:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(103);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(104);
END_STATE();
case 44:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(105);
END_STATE();
case 45:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(106);
END_STATE();
case 46:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(107);
END_STATE();
case 47:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(108);
END_STATE();
case 48:
ACCEPT_TOKEN(aux_sym_if_expression_token1);
END_STATE();
case 49:
ACCEPT_TOKEN(aux_sym_chunk_specification_token1);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(109);
END_STATE();
case 50:
ACCEPT_TOKEN(aux_sym_package_specification_token2);
END_STATE();
case 51:
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(110);
END_STATE();
case 52:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(111);
END_STATE();
case 53:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(112);
END_STATE();
case 54:
if (lookahead == 'W' ||
lookahead == 'w') ADVANCE(113);
END_STATE();
case 55:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(114);
END_STATE();
case 56:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(115);
END_STATE();
case 57:
ACCEPT_TOKEN(aux_sym_iterator_specification_token1);
END_STATE();
case 58:
ACCEPT_TOKEN(aux_sym_expression_token3);
END_STATE();
case 59:
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(116);
END_STATE();
case 60:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(117);
END_STATE();
case 61:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(118);
END_STATE();
case 62:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(119);
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(120);
END_STATE();
case 63:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(121);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(122);
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(123);
END_STATE();
case 64:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(124);
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(125);
END_STATE();
case 65:
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(126);
END_STATE();
case 66:
if (lookahead == 'B' ||
lookahead == 'b') ADVANCE(127);
END_STATE();
case 67:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(128);
END_STATE();
case 68:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(129);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(130);
END_STATE();
case 69:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(131);
END_STATE();
case 70:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(132);
END_STATE();
case 71:
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(133);
END_STATE();
case 72:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(134);
END_STATE();
case 73:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(135);
END_STATE();
case 74:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(136);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(137);
END_STATE();
case 75:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(138);
END_STATE();
case 76:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(139);
END_STATE();
case 77:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(140);
END_STATE();
case 78:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(141);
END_STATE();
case 79:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(142);
END_STATE();
case 80:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(143);
END_STATE();
case 81:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(144);
END_STATE();
case 82:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(145);
END_STATE();
case 83:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(146);
END_STATE();
case 84:
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(147);
END_STATE();
case 85:
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(148);
END_STATE();
case 86:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(149);
END_STATE();
case 87:
ACCEPT_TOKEN(anon_sym_rem);
END_STATE();
case 88:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(150);
END_STATE();
case 89:
ACCEPT_TOKEN(aux_sym_factor_abs_token1);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(151);
END_STATE();
case 90:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(152);
END_STATE();
case 91:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(153);
END_STATE();
case 92:
ACCEPT_TOKEN(aux_sym_use_clause_token1);
END_STATE();
case 93:
ACCEPT_TOKEN(aux_sym_expression_token1);
END_STATE();
case 94:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(154);
END_STATE();
case 95:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(155);
END_STATE();
case 96:
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(156);
END_STATE();
case 97:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(157);
END_STATE();
case 98:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(158);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(159);
END_STATE();
case 99:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(160);
END_STATE();
case 100:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(161);
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(162);
END_STATE();
case 101:
ACCEPT_TOKEN(aux_sym_package_specification_token3);
END_STATE();
case 102:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(163);
END_STATE();
case 103:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(164);
END_STATE();
case 104:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(165);
END_STATE();
case 105:
ACCEPT_TOKEN(aux_sym_iterated_element_association_token1);
END_STATE();
case 106:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(166);
END_STATE();
case 107:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(167);
END_STATE();
case 108:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(168);
END_STATE();
case 109:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(169);
END_STATE();
case 110:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(170);
END_STATE();
case 111:
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(171);
END_STATE();
case 112:
ACCEPT_TOKEN(aux_sym_attribute_designator_token4);
END_STATE();
case 113:
ACCEPT_TOKEN(aux_sym_allocator_token1);
END_STATE();
case 114:
ACCEPT_TOKEN(aux_sym_relation_membership_token1);
END_STATE();
case 115:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(172);
END_STATE();
case 116:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(173);
END_STATE();
case 117:
ACCEPT_TOKEN(aux_sym_non_empty_mode_token1);
END_STATE();
case 118:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(174);
END_STATE();
case 119:
if (lookahead == 'K' ||
lookahead == 'k') ADVANCE(175);
END_STATE();
case 120:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(176);
END_STATE();
case 121:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(177);
END_STATE();
case 122:
if (lookahead == 'V' ||
lookahead == 'v') ADVANCE(178);
END_STATE();
case 123:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(179);
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(180);
END_STATE();
case 124:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(181);
END_STATE();
case 125:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(182);
END_STATE();
case 126:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(183);
END_STATE();
case 127:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(184);
END_STATE();
case 128:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(185);
END_STATE();
case 129:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(186);
END_STATE();
case 130:
if (lookahead == 'K' ||
lookahead == 'k') ADVANCE(187);
END_STATE();
case 131:
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(188);
END_STATE();
case 132:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(189);
END_STATE();
case 133:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(190);
END_STATE();
case 134:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(191);
END_STATE();
case 135:
ACCEPT_TOKEN(aux_sym_iterated_element_association_token2);
END_STATE();
case 136:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(192);
END_STATE();
case 137:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(193);
END_STATE();
case 138:
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(194);
END_STATE();
case 139:
ACCEPT_TOKEN(aux_sym_expression_token5);
END_STATE();
case 140:
ACCEPT_TOKEN(aux_sym_case_expression_token1);
END_STATE();
case 141:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(195);
END_STATE();
case 142:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(196);
END_STATE();
case 143:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(197);
END_STATE();
case 144:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(198);
END_STATE();
case 145:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(199);
END_STATE();
case 146:
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(200);
END_STATE();
case 147:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(201);
END_STATE();
case 148:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(202);
END_STATE();
case 149:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(203);
END_STATE();
case 150:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(204);
END_STATE();
case 151:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(205);
END_STATE();
case 152:
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(206);
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(207);
END_STATE();
case 153:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(208);
END_STATE();
case 154:
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(209);
END_STATE();
case 155:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(210);
END_STATE();
case 156:
ACCEPT_TOKEN(aux_sym_package_body_token1);
END_STATE();
case 157:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(211);
END_STATE();
case 158:
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(212);
END_STATE();
case 159:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(213);
END_STATE();
case 160:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(214);
END_STATE();
case 161:
ACCEPT_TOKEN(aux_sym_expression_token4);
END_STATE();
case 162:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(215);
END_STATE();
case 163:
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(216);
END_STATE();
case 164:
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(217);
END_STATE();
case 165:
ACCEPT_TOKEN(aux_sym_exit_statement_token1);
END_STATE();
case 166:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(218);
END_STATE();
case 167:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(219);
END_STATE();
case 168:
ACCEPT_TOKEN(aux_sym_goto_statement_token1);
END_STATE();
case 169:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(220);
END_STATE();
case 170:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(221);
END_STATE();
case 171:
ACCEPT_TOKEN(aux_sym_loop_statement_token1);
END_STATE();
case 172:
ACCEPT_TOKEN(aux_sym_primary_null_token1);
END_STATE();
case 173:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(222);
END_STATE();
case 174:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(223);
END_STATE();
case 175:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(224);
END_STATE();
case 176:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(225);
END_STATE();
case 177:
if (lookahead == 'M' ||
lookahead == 'm') ADVANCE(226);
END_STATE();
case 178:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(227);
END_STATE();
case 179:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(228);
END_STATE();
case 180:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(229);
END_STATE();
case 181:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(230);
END_STATE();
case 182:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(231);
END_STATE();
case 183:
ACCEPT_TOKEN(aux_sym_quantifier_token1);
END_STATE();
case 184:
if (lookahead == 'Y' ||
lookahead == 'y') ADVANCE(232);
END_STATE();
case 185:
if (lookahead == 'H' ||
lookahead == 'h') ADVANCE(233);
END_STATE();
case 186:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(234);
END_STATE();
case 187:
ACCEPT_TOKEN(aux_sym_interface_type_definition_token1);
END_STATE();
case 188:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(235);
END_STATE();
case 189:
ACCEPT_TOKEN(aux_sym_expression_token2);
END_STATE();
case 190:
ACCEPT_TOKEN(aux_sym_use_clause_token2);
END_STATE();
case 191:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(236);
END_STATE();
case 192:
ACCEPT_TOKEN(aux_sym_iterator_filter_token1);
END_STATE();
case 193:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(237);
END_STATE();
case 194:
ACCEPT_TOKEN(aux_sym_with_clause_token2);
END_STATE();
case 195:
ACCEPT_TOKEN(aux_sym__aspect_mark_token1);
END_STATE();
case 196:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(238);
END_STATE();
case 197:
ACCEPT_TOKEN(aux_sym_raise_expression_token1);
END_STATE();
case 198:
ACCEPT_TOKEN(aux_sym_range_attribute_designator_token1);
END_STATE();
case 199:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(239);
END_STATE();
case 200:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(240);
END_STATE();
case 201:
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(241);
END_STATE();
case 202:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(242);
END_STATE();
case 203:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(243);
END_STATE();
case 204:
ACCEPT_TOKEN(aux_sym_asynchronous_select_token2);
END_STATE();
case 205:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(244);
END_STATE();
case 206:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(245);
END_STATE();
case 207:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(246);
END_STATE();
case 208:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(247);
END_STATE();
case 209:
ACCEPT_TOKEN(aux_sym_array_type_definition_token1);
END_STATE();
case 210:
ACCEPT_TOKEN(aux_sym_subprogram_body_token1);
END_STATE();
case 211:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(248);
END_STATE();
case 212:
ACCEPT_TOKEN(aux_sym_delay_until_statement_token1);
END_STATE();
case 213:
ACCEPT_TOKEN(aux_sym_attribute_designator_token2);
END_STATE();
case 214:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(249);
END_STATE();
case 215:
ACCEPT_TOKEN(aux_sym_elsif_expression_item_token1);
END_STATE();
case 216:
ACCEPT_TOKEN(aux_sym_entry_declaration_token1);
END_STATE();
case 217:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(250);
END_STATE();
case 218:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(251);
END_STATE();
case 219:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(252);
END_STATE();
case 220:
if (lookahead == 'F' ||
lookahead == 'f') ADVANCE(253);
END_STATE();
case 221:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(254);
END_STATE();
case 222:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(255);
END_STATE();
case 223:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(256);
END_STATE();
case 224:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(257);
END_STATE();
case 225:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(258);
END_STATE();
case 226:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(259);
END_STATE();
case 227:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(260);
END_STATE();
case 228:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(261);
END_STATE();
case 229:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(262);
END_STATE();
case 230:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(263);
END_STATE();
case 231:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(264);
END_STATE();
case 232:
if (lookahead == 'P' ||
lookahead == 'p') ADVANCE(265);
END_STATE();
case 233:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(266);
END_STATE();
case 234:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(267);
END_STATE();
case 235:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(268);
END_STATE();
case 236:
ACCEPT_TOKEN(aux_sym_delay_until_statement_token2);
END_STATE();
case 237:
ACCEPT_TOKEN(aux_sym_iteration_scheme_token1);
END_STATE();
case 238:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(269);
END_STATE();
case 239:
ACCEPT_TOKEN(aux_sym_record_component_association_list_token1);
END_STATE();
case 240:
if (lookahead == 'S' ||
lookahead == 's') ADVANCE(270);
END_STATE();
case 241:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(271);
END_STATE();
case 242:
ACCEPT_TOKEN(aux_sym_result_profile_token1);
END_STATE();
case 243:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(272);
END_STATE();
case 244:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(273);
END_STATE();
case 245:
ACCEPT_TOKEN(aux_sym_accept_statement_token1);
END_STATE();
case 246:
ACCEPT_TOKEN(aux_sym_attribute_designator_token1);
END_STATE();
case 247:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(274);
END_STATE();
case 248:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(275);
END_STATE();
case 249:
ACCEPT_TOKEN(aux_sym_attribute_designator_token3);
END_STATE();
case 250:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(276);
END_STATE();
case 251:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(277);
END_STATE();
case 252:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(278);
END_STATE();
case 253:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(279);
END_STATE();
case 254:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(280);
END_STATE();
case 255:
ACCEPT_TOKEN(aux_sym_component_choice_list_token1);
END_STATE();
case 256:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(281);
END_STATE();
case 257:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(282);
END_STATE();
case 258:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(283);
END_STATE();
case 259:
ACCEPT_TOKEN(aux_sym_pragma_g_token1);
END_STATE();
case 260:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(284);
END_STATE();
case 261:
if (lookahead == 'U' ||
lookahead == 'u') ADVANCE(285);
END_STATE();
case 262:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(286);
END_STATE();
case 263:
ACCEPT_TOKEN(aux_sym_asynchronous_select_token1);
END_STATE();
case 264:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(287);
END_STATE();
case 265:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(288);
END_STATE();
case 266:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(289);
END_STATE();
case 267:
ACCEPT_TOKEN(aux_sym_private_type_declaration_token2);
END_STATE();
case 268:
if (lookahead == 'A' ||
lookahead == 'a') ADVANCE(290);
END_STATE();
case 269:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(291);
END_STATE();
case 270:
ACCEPT_TOKEN(aux_sym_object_renaming_declaration_token1);
END_STATE();
case 271:
ACCEPT_TOKEN(aux_sym_requeue_statement_token1);
END_STATE();
case 272:
ACCEPT_TOKEN(aux_sym_loop_parameter_specification_token1);
END_STATE();
case 273:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(292);
END_STATE();
case 274:
ACCEPT_TOKEN(aux_sym_component_definition_token1);
END_STATE();
case 275:
ACCEPT_TOKEN(aux_sym_declare_expression_token1);
END_STATE();
case 276:
if (lookahead == 'O' ||
lookahead == 'o') ADVANCE(293);
END_STATE();
case 277:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(294);
END_STATE();
case 278:
ACCEPT_TOKEN(aux_sym_generic_formal_part_token1);
END_STATE();
case 279:
if (lookahead == 'C' ||
lookahead == 'c') ADVANCE(295);
END_STATE();
case 280:
ACCEPT_TOKEN(aux_sym_with_clause_token1);
END_STATE();
case 281:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(296);
END_STATE();
case 282:
ACCEPT_TOKEN(aux_sym_package_specification_token1);
END_STATE();
case 283:
if (lookahead == 'L' ||
lookahead == 'l') ADVANCE(297);
END_STATE();
case 284:
ACCEPT_TOKEN(aux_sym_compilation_unit_token1);
END_STATE();
case 285:
if (lookahead == 'R' ||
lookahead == 'r') ADVANCE(298);
END_STATE();
case 286:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(299);
END_STATE();
case 287:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(300);
END_STATE();
case 288:
ACCEPT_TOKEN(aux_sym_subtype_declaration_token1);
END_STATE();
case 289:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(301);
END_STATE();
case 290:
if (lookahead == 'T' ||
lookahead == 't') ADVANCE(302);
END_STATE();
case 291:
ACCEPT_TOKEN(aux_sym_general_access_modifier_token1);
END_STATE();
case 292:
ACCEPT_TOKEN(aux_sym_private_type_declaration_token1);
END_STATE();
case 293:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(303);
END_STATE();
case 294:
ACCEPT_TOKEN(aux_sym_access_to_subprogram_definition_token3);
END_STATE();
case 295:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(304);
END_STATE();
case 296:
if (lookahead == 'N' ||
lookahead == 'n') ADVANCE(305);
END_STATE();
case 297:
ACCEPT_TOKEN(aux_sym_value_sequence_token1);
END_STATE();
case 298:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(306);
END_STATE();
case 299:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(307);
END_STATE();
case 300:
ACCEPT_TOKEN(aux_sym_subunit_token1);
END_STATE();
case 301:
if (lookahead == 'I' ||
lookahead == 'i') ADVANCE(308);
END_STATE();
case 302:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(309);
END_STATE();
case 303:
ACCEPT_TOKEN(aux_sym_exception_declaration_token1);
END_STATE();
case 304:
ACCEPT_TOKEN(aux_sym_interface_type_definition_token2);
END_STATE();
case 305:
if (lookahead == 'G' ||
lookahead == 'g') ADVANCE(310);
END_STATE();
case 306:
ACCEPT_TOKEN(aux_sym_access_to_subprogram_definition_token2);
END_STATE();
case 307:
ACCEPT_TOKEN(aux_sym_access_to_subprogram_definition_token1);
END_STATE();
case 308:
if (lookahead == 'Z' ||
lookahead == 'z') ADVANCE(311);
END_STATE();
case 309:
ACCEPT_TOKEN(aux_sym_terminate_alternative_token1);
END_STATE();
case 310:
ACCEPT_TOKEN(aux_sym_global_mode_token1);
END_STATE();
case 311:
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(312);
END_STATE();
case 312:
if (lookahead == 'D' ||
lookahead == 'd') ADVANCE(313);
END_STATE();
case 313:
ACCEPT_TOKEN(aux_sym_private_extension_declaration_token1);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 48},
[2] = {.lex_state = 48},
[3] = {.lex_state = 48},
[4] = {.lex_state = 48},
[5] = {.lex_state = 48},
[6] = {.lex_state = 48},
[7] = {.lex_state = 48},
[8] = {.lex_state = 48},
[9] = {.lex_state = 48},
[10] = {.lex_state = 48},
[11] = {.lex_state = 48},
[12] = {.lex_state = 48},
[13] = {.lex_state = 48},
[14] = {.lex_state = 48},
[15] = {.lex_state = 48},
[16] = {.lex_state = 48},
[17] = {.lex_state = 48},
[18] = {.lex_state = 48},
[19] = {.lex_state = 48},
[20] = {.lex_state = 48},
[21] = {.lex_state = 48},
[22] = {.lex_state = 48},
[23] = {.lex_state = 48},
[24] = {.lex_state = 48},
[25] = {.lex_state = 48},
[26] = {.lex_state = 48},
[27] = {.lex_state = 48},
[28] = {.lex_state = 48},
[29] = {.lex_state = 48},
[30] = {.lex_state = 48},
[31] = {.lex_state = 48},
[32] = {.lex_state = 48},
[33] = {.lex_state = 48},
[34] = {.lex_state = 48},
[35] = {.lex_state = 48},
[36] = {.lex_state = 48},
[37] = {.lex_state = 48},
[38] = {.lex_state = 48},
[39] = {.lex_state = 48},
[40] = {.lex_state = 48},
[41] = {.lex_state = 48},
[42] = {.lex_state = 48},
[43] = {.lex_state = 48},
[44] = {.lex_state = 48},
[45] = {.lex_state = 48},
[46] = {.lex_state = 48},
[47] = {.lex_state = 48},
[48] = {.lex_state = 48},
[49] = {.lex_state = 48},
[50] = {.lex_state = 48},
[51] = {.lex_state = 48},
[52] = {.lex_state = 48},
[53] = {.lex_state = 48},
[54] = {.lex_state = 48},
[55] = {.lex_state = 48},
[56] = {.lex_state = 48},
[57] = {.lex_state = 48},
[58] = {.lex_state = 48},
[59] = {.lex_state = 48},
[60] = {.lex_state = 48},
[61] = {.lex_state = 48},
[62] = {.lex_state = 48},
[63] = {.lex_state = 48},
[64] = {.lex_state = 48},
[65] = {.lex_state = 48},
[66] = {.lex_state = 48},
[67] = {.lex_state = 48},
[68] = {.lex_state = 48},
[69] = {.lex_state = 48},
[70] = {.lex_state = 48},
[71] = {.lex_state = 48},
[72] = {.lex_state = 48},
[73] = {.lex_state = 48},
[74] = {.lex_state = 48},
[75] = {.lex_state = 48},
[76] = {.lex_state = 48},
[77] = {.lex_state = 48},
[78] = {.lex_state = 48},
[79] = {.lex_state = 48},
[80] = {.lex_state = 48},
[81] = {.lex_state = 48},
[82] = {.lex_state = 48},
[83] = {.lex_state = 48},
[84] = {.lex_state = 48},
[85] = {.lex_state = 48},
[86] = {.lex_state = 48},
[87] = {.lex_state = 48},
[88] = {.lex_state = 48},
[89] = {.lex_state = 48},
[90] = {.lex_state = 48},
[91] = {.lex_state = 48},
[92] = {.lex_state = 48},
[93] = {.lex_state = 48},
[94] = {.lex_state = 48},
[95] = {.lex_state = 48},
[96] = {.lex_state = 48},
[97] = {.lex_state = 48},
[98] = {.lex_state = 48},
[99] = {.lex_state = 48},
[100] = {.lex_state = 48},
[101] = {.lex_state = 48},
[102] = {.lex_state = 48},
[103] = {.lex_state = 48},
[104] = {.lex_state = 48},
[105] = {.lex_state = 48},
[106] = {.lex_state = 48},
[107] = {.lex_state = 48},
[108] = {.lex_state = 48},
[109] = {.lex_state = 48},
[110] = {.lex_state = 48},
[111] = {.lex_state = 48},
[112] = {.lex_state = 48},
[113] = {.lex_state = 48},
[114] = {.lex_state = 48},
[115] = {.lex_state = 48},
[116] = {.lex_state = 48},
[117] = {.lex_state = 48},
[118] = {.lex_state = 48},
[119] = {.lex_state = 48},
[120] = {.lex_state = 48},
[121] = {.lex_state = 48},
[122] = {.lex_state = 48},
[123] = {.lex_state = 48},
[124] = {.lex_state = 48},
[125] = {.lex_state = 48},
[126] = {.lex_state = 48},
[127] = {.lex_state = 48},
[128] = {.lex_state = 48},
[129] = {.lex_state = 48},
[130] = {.lex_state = 48},
[131] = {.lex_state = 48},
[132] = {.lex_state = 48},
[133] = {.lex_state = 48},
[134] = {.lex_state = 48},
[135] = {.lex_state = 48},
[136] = {.lex_state = 48},
[137] = {.lex_state = 48},
[138] = {.lex_state = 48},
[139] = {.lex_state = 48},
[140] = {.lex_state = 48},
[141] = {.lex_state = 48},
[142] = {.lex_state = 48},
[143] = {.lex_state = 48},
[144] = {.lex_state = 48},
[145] = {.lex_state = 48},
[146] = {.lex_state = 48},
[147] = {.lex_state = 48},
[148] = {.lex_state = 48},
[149] = {.lex_state = 48},
[150] = {.lex_state = 48},
[151] = {.lex_state = 48},
[152] = {.lex_state = 48},
[153] = {.lex_state = 48},
[154] = {.lex_state = 48},
[155] = {.lex_state = 48},
[156] = {.lex_state = 48},
[157] = {.lex_state = 48},
[158] = {.lex_state = 48},
[159] = {.lex_state = 48},
[160] = {.lex_state = 48},
[161] = {.lex_state = 48},
[162] = {.lex_state = 48},
[163] = {.lex_state = 48},
[164] = {.lex_state = 48},
[165] = {.lex_state = 48},
[166] = {.lex_state = 48},
[167] = {.lex_state = 48},
[168] = {.lex_state = 48},
[169] = {.lex_state = 48},
[170] = {.lex_state = 48},
[171] = {.lex_state = 48},
[172] = {.lex_state = 48},
[173] = {.lex_state = 48},
[174] = {.lex_state = 48},
[175] = {.lex_state = 48},
[176] = {.lex_state = 48},
[177] = {.lex_state = 48},
[178] = {.lex_state = 48},
[179] = {.lex_state = 48},
[180] = {.lex_state = 48},
[181] = {.lex_state = 48},
[182] = {.lex_state = 48},
[183] = {.lex_state = 48},
[184] = {.lex_state = 48},
[185] = {.lex_state = 48},
[186] = {.lex_state = 48},
[187] = {.lex_state = 48},
[188] = {.lex_state = 48},
[189] = {.lex_state = 48},
[190] = {.lex_state = 48},
[191] = {.lex_state = 48},
[192] = {.lex_state = 48},
[193] = {.lex_state = 48},
[194] = {.lex_state = 48},
[195] = {.lex_state = 48},
[196] = {.lex_state = 48},
[197] = {.lex_state = 48},
[198] = {.lex_state = 48},
[199] = {.lex_state = 48},
[200] = {.lex_state = 48},
[201] = {.lex_state = 48},
[202] = {.lex_state = 48},
[203] = {.lex_state = 48},
[204] = {.lex_state = 48},
[205] = {.lex_state = 48},
[206] = {.lex_state = 48},
[207] = {.lex_state = 48},
[208] = {.lex_state = 48},
[209] = {.lex_state = 48},
[210] = {.lex_state = 48},
[211] = {.lex_state = 48},
[212] = {.lex_state = 48},
[213] = {.lex_state = 48},
[214] = {.lex_state = 48},
[215] = {.lex_state = 48},
[216] = {.lex_state = 48},
[217] = {.lex_state = 48},
[218] = {.lex_state = 48},
[219] = {.lex_state = 48},
[220] = {.lex_state = 48},
[221] = {.lex_state = 48},
[222] = {.lex_state = 48},
[223] = {.lex_state = 48},
[224] = {.lex_state = 48},
[225] = {.lex_state = 48},
[226] = {.lex_state = 48},
[227] = {.lex_state = 48},
[228] = {.lex_state = 48},
[229] = {.lex_state = 48},
[230] = {.lex_state = 48},
[231] = {.lex_state = 48},
[232] = {.lex_state = 48},
[233] = {.lex_state = 48},
[234] = {.lex_state = 48},
[235] = {.lex_state = 48},
[236] = {.lex_state = 48},
[237] = {.lex_state = 48},
[238] = {.lex_state = 48},
[239] = {.lex_state = 48},
[240] = {.lex_state = 48},
[241] = {.lex_state = 48},
[242] = {.lex_state = 48},
[243] = {.lex_state = 48},
[244] = {.lex_state = 48},
[245] = {.lex_state = 48},
[246] = {.lex_state = 48},
[247] = {.lex_state = 48},
[248] = {.lex_state = 48},
[249] = {.lex_state = 48},
[250] = {.lex_state = 48},
[251] = {.lex_state = 48},
[252] = {.lex_state = 48},
[253] = {.lex_state = 48},
[254] = {.lex_state = 48},
[255] = {.lex_state = 48},
[256] = {.lex_state = 48},
[257] = {.lex_state = 48},
[258] = {.lex_state = 48},
[259] = {.lex_state = 48},
[260] = {.lex_state = 48},
[261] = {.lex_state = 48},
[262] = {.lex_state = 48},
[263] = {.lex_state = 48},
[264] = {.lex_state = 48},
[265] = {.lex_state = 48},
[266] = {.lex_state = 48},
[267] = {.lex_state = 48},
[268] = {.lex_state = 48},
[269] = {.lex_state = 48},
[270] = {.lex_state = 48},
[271] = {.lex_state = 48},
[272] = {.lex_state = 48},
[273] = {.lex_state = 48},
[274] = {.lex_state = 48},
[275] = {.lex_state = 48},
[276] = {.lex_state = 48},
[277] = {.lex_state = 48},
[278] = {.lex_state = 48},
[279] = {.lex_state = 48},
[280] = {.lex_state = 48},
[281] = {.lex_state = 48},
[282] = {.lex_state = 48},
[283] = {.lex_state = 48},
[284] = {.lex_state = 48},
[285] = {.lex_state = 48},
[286] = {.lex_state = 48},
[287] = {.lex_state = 48},
[288] = {.lex_state = 48},
[289] = {.lex_state = 48},
[290] = {.lex_state = 48},
[291] = {.lex_state = 48},
[292] = {.lex_state = 48},
[293] = {.lex_state = 48},
[294] = {.lex_state = 48},
[295] = {.lex_state = 48},
[296] = {.lex_state = 48},
[297] = {.lex_state = 48},
[298] = {.lex_state = 48},
[299] = {.lex_state = 48},
[300] = {.lex_state = 48},
[301] = {.lex_state = 48},
[302] = {.lex_state = 48},
[303] = {.lex_state = 48},
[304] = {.lex_state = 48},
[305] = {.lex_state = 48},
[306] = {.lex_state = 48},
[307] = {.lex_state = 48},
[308] = {.lex_state = 48},
[309] = {.lex_state = 48},
[310] = {.lex_state = 48},
[311] = {.lex_state = 48},
[312] = {.lex_state = 48},
[313] = {.lex_state = 48},
[314] = {.lex_state = 48},
[315] = {.lex_state = 48},
[316] = {.lex_state = 48},
[317] = {.lex_state = 48},
[318] = {.lex_state = 48},
[319] = {.lex_state = 48},
[320] = {.lex_state = 48},
[321] = {.lex_state = 48},
[322] = {.lex_state = 48},
[323] = {.lex_state = 48},
[324] = {.lex_state = 48},
[325] = {.lex_state = 48},
[326] = {.lex_state = 48},
[327] = {.lex_state = 48},
[328] = {.lex_state = 48},
[329] = {.lex_state = 48},
[330] = {.lex_state = 48},
[331] = {.lex_state = 48},
[332] = {.lex_state = 48},
[333] = {.lex_state = 48},
[334] = {.lex_state = 48},
[335] = {.lex_state = 48},
[336] = {.lex_state = 48},
[337] = {.lex_state = 48},
[338] = {.lex_state = 48},
[339] = {.lex_state = 48},
[340] = {.lex_state = 48},
[341] = {.lex_state = 48},
[342] = {.lex_state = 48},
[343] = {.lex_state = 48},
[344] = {.lex_state = 48},
[345] = {.lex_state = 48},
[346] = {.lex_state = 48},
[347] = {.lex_state = 48},
[348] = {.lex_state = 48},
[349] = {.lex_state = 48},
[350] = {.lex_state = 48},
[351] = {.lex_state = 48},
[352] = {.lex_state = 48},
[353] = {.lex_state = 48},
[354] = {.lex_state = 48},
[355] = {.lex_state = 48},
[356] = {.lex_state = 48},
[357] = {.lex_state = 48},
[358] = {.lex_state = 48},
[359] = {.lex_state = 48},
[360] = {.lex_state = 48},
[361] = {.lex_state = 48},
[362] = {.lex_state = 48},
[363] = {.lex_state = 48},
[364] = {.lex_state = 48},
[365] = {.lex_state = 48},
[366] = {.lex_state = 48},
[367] = {.lex_state = 48},
[368] = {.lex_state = 48},
[369] = {.lex_state = 48},
[370] = {.lex_state = 48},
[371] = {.lex_state = 48},
[372] = {.lex_state = 48},
[373] = {.lex_state = 48},
[374] = {.lex_state = 48},
[375] = {.lex_state = 48},
[376] = {.lex_state = 48},
[377] = {.lex_state = 48},
[378] = {.lex_state = 48},
[379] = {.lex_state = 48},
[380] = {.lex_state = 48},
[381] = {.lex_state = 48},
[382] = {.lex_state = 48},
[383] = {.lex_state = 48},
[384] = {.lex_state = 48},
[385] = {.lex_state = 48},
[386] = {.lex_state = 48},
[387] = {.lex_state = 48},
[388] = {.lex_state = 48},
[389] = {.lex_state = 48},
[390] = {.lex_state = 48},
[391] = {.lex_state = 48},
[392] = {.lex_state = 48},
[393] = {.lex_state = 48},
[394] = {.lex_state = 48},
[395] = {.lex_state = 48},
[396] = {.lex_state = 48},
[397] = {.lex_state = 48},
[398] = {.lex_state = 48},
[399] = {.lex_state = 48},
[400] = {.lex_state = 48},
[401] = {.lex_state = 48},
[402] = {.lex_state = 48},
[403] = {.lex_state = 48},
[404] = {.lex_state = 48},
[405] = {.lex_state = 48},
[406] = {.lex_state = 48},
[407] = {.lex_state = 48},
[408] = {.lex_state = 48},
[409] = {.lex_state = 48},
[410] = {.lex_state = 48},
[411] = {.lex_state = 48},
[412] = {.lex_state = 48},
[413] = {.lex_state = 48},
[414] = {.lex_state = 48},
[415] = {.lex_state = 48},
[416] = {.lex_state = 48},
[417] = {.lex_state = 48},
[418] = {.lex_state = 48},
[419] = {.lex_state = 48},
[420] = {.lex_state = 48},
[421] = {.lex_state = 48},
[422] = {.lex_state = 48},
[423] = {.lex_state = 48},
[424] = {.lex_state = 48},
[425] = {.lex_state = 48},
[426] = {.lex_state = 48},
[427] = {.lex_state = 48},
[428] = {.lex_state = 48},
[429] = {.lex_state = 48},
[430] = {.lex_state = 48},
[431] = {.lex_state = 48},
[432] = {.lex_state = 48},
[433] = {.lex_state = 48},
[434] = {.lex_state = 48},
[435] = {.lex_state = 10},
[436] = {.lex_state = 10},
[437] = {.lex_state = 10},
[438] = {.lex_state = 10},
[439] = {.lex_state = 10},
[440] = {.lex_state = 48},
[441] = {.lex_state = 10},
[442] = {.lex_state = 10},
[443] = {.lex_state = 10},
[444] = {.lex_state = 10},
[445] = {.lex_state = 10},
[446] = {.lex_state = 10},
[447] = {.lex_state = 10},
[448] = {.lex_state = 10},
[449] = {.lex_state = 10},
[450] = {.lex_state = 10},
[451] = {.lex_state = 10},
[452] = {.lex_state = 10},
[453] = {.lex_state = 10},
[454] = {.lex_state = 10},
[455] = {.lex_state = 10},
[456] = {.lex_state = 10},
[457] = {.lex_state = 48},
[458] = {.lex_state = 48},
[459] = {.lex_state = 10},
[460] = {.lex_state = 10},
[461] = {.lex_state = 10},
[462] = {.lex_state = 10},
[463] = {.lex_state = 48},
[464] = {.lex_state = 48},
[465] = {.lex_state = 48},
[466] = {.lex_state = 48},
[467] = {.lex_state = 48},
[468] = {.lex_state = 48},
[469] = {.lex_state = 48},
[470] = {.lex_state = 48},
[471] = {.lex_state = 48},
[472] = {.lex_state = 48},
[473] = {.lex_state = 48},
[474] = {.lex_state = 48},
[475] = {.lex_state = 48},
[476] = {.lex_state = 48},
[477] = {.lex_state = 48},
[478] = {.lex_state = 48},
[479] = {.lex_state = 48},
[480] = {.lex_state = 10},
[481] = {.lex_state = 48},
[482] = {.lex_state = 48},
[483] = {.lex_state = 48},
[484] = {.lex_state = 48},
[485] = {.lex_state = 48},
[486] = {.lex_state = 48},
[487] = {.lex_state = 48},
[488] = {.lex_state = 48},
[489] = {.lex_state = 10},
[490] = {.lex_state = 48},
[491] = {.lex_state = 48},
[492] = {.lex_state = 48},
[493] = {.lex_state = 48},
[494] = {.lex_state = 48},
[495] = {.lex_state = 48},
[496] = {.lex_state = 48},
[497] = {.lex_state = 48},
[498] = {.lex_state = 48},
[499] = {.lex_state = 48},
[500] = {.lex_state = 10},
[501] = {.lex_state = 10},
[502] = {.lex_state = 10},
[503] = {.lex_state = 10},
[504] = {.lex_state = 10},
[505] = {.lex_state = 10},
[506] = {.lex_state = 10},
[507] = {.lex_state = 10},
[508] = {.lex_state = 48},
[509] = {.lex_state = 10},
[510] = {.lex_state = 10},
[511] = {.lex_state = 10},
[512] = {.lex_state = 10},
[513] = {.lex_state = 48},
[514] = {.lex_state = 10},
[515] = {.lex_state = 10},
[516] = {.lex_state = 10},
[517] = {.lex_state = 48},
[518] = {.lex_state = 48},
[519] = {.lex_state = 10},
[520] = {.lex_state = 10},
[521] = {.lex_state = 10},
[522] = {.lex_state = 10},
[523] = {.lex_state = 48},
[524] = {.lex_state = 48},
[525] = {.lex_state = 10},
[526] = {.lex_state = 11},
[527] = {.lex_state = 48},
[528] = {.lex_state = 11},
[529] = {.lex_state = 11},
[530] = {.lex_state = 11},
[531] = {.lex_state = 11},
[532] = {.lex_state = 48},
[533] = {.lex_state = 48},
[534] = {.lex_state = 11},
[535] = {.lex_state = 48},
[536] = {.lex_state = 10},
[537] = {.lex_state = 48},
[538] = {.lex_state = 48},
[539] = {.lex_state = 48},
[540] = {.lex_state = 7},
[541] = {.lex_state = 48},
[542] = {.lex_state = 10},
[543] = {.lex_state = 11},
[544] = {.lex_state = 11},
[545] = {.lex_state = 10},
[546] = {.lex_state = 10},
[547] = {.lex_state = 10},
[548] = {.lex_state = 48},
[549] = {.lex_state = 10},
[550] = {.lex_state = 48},
[551] = {.lex_state = 48},
[552] = {.lex_state = 10},
[553] = {.lex_state = 48},
[554] = {.lex_state = 48},
[555] = {.lex_state = 10},
[556] = {.lex_state = 48},
[557] = {.lex_state = 48},
[558] = {.lex_state = 48},
[559] = {.lex_state = 48},
[560] = {.lex_state = 10},
[561] = {.lex_state = 48},
[562] = {.lex_state = 48},
[563] = {.lex_state = 48},
[564] = {.lex_state = 48},
[565] = {.lex_state = 11},
[566] = {.lex_state = 48},
[567] = {.lex_state = 48},
[568] = {.lex_state = 48},
[569] = {.lex_state = 48},
[570] = {.lex_state = 48},
[571] = {.lex_state = 10},
[572] = {.lex_state = 48},
[573] = {.lex_state = 48},
[574] = {.lex_state = 48},
[575] = {.lex_state = 48},
[576] = {.lex_state = 48},
[577] = {.lex_state = 48},
[578] = {.lex_state = 48},
[579] = {.lex_state = 48},
[580] = {.lex_state = 48},
[581] = {.lex_state = 48},
[582] = {.lex_state = 48},
[583] = {.lex_state = 48},
[584] = {.lex_state = 48},
[585] = {.lex_state = 48},
[586] = {.lex_state = 48},
[587] = {.lex_state = 48},
[588] = {.lex_state = 48},
[589] = {.lex_state = 48},
[590] = {.lex_state = 48},
[591] = {.lex_state = 48},
[592] = {.lex_state = 48},
[593] = {.lex_state = 48},
[594] = {.lex_state = 48},
[595] = {.lex_state = 48},
[596] = {.lex_state = 48},
[597] = {.lex_state = 48},
[598] = {.lex_state = 48},
[599] = {.lex_state = 48},
[600] = {.lex_state = 48},
[601] = {.lex_state = 48},
[602] = {.lex_state = 48},
[603] = {.lex_state = 48},
[604] = {.lex_state = 48},
[605] = {.lex_state = 48},
[606] = {.lex_state = 48},
[607] = {.lex_state = 48},
[608] = {.lex_state = 48},
[609] = {.lex_state = 48},
[610] = {.lex_state = 48},
[611] = {.lex_state = 48},
[612] = {.lex_state = 48},
[613] = {.lex_state = 48},
[614] = {.lex_state = 48},
[615] = {.lex_state = 48},
[616] = {.lex_state = 48},
[617] = {.lex_state = 48},
[618] = {.lex_state = 48},
[619] = {.lex_state = 48},
[620] = {.lex_state = 11},
[621] = {.lex_state = 48},
[622] = {.lex_state = 48},
[623] = {.lex_state = 48},
[624] = {.lex_state = 48},
[625] = {.lex_state = 48},
[626] = {.lex_state = 48},
[627] = {.lex_state = 48},
[628] = {.lex_state = 48},
[629] = {.lex_state = 48},
[630] = {.lex_state = 48},
[631] = {.lex_state = 48},
[632] = {.lex_state = 48},
[633] = {.lex_state = 48},
[634] = {.lex_state = 48},
[635] = {.lex_state = 48},
[636] = {.lex_state = 48},
[637] = {.lex_state = 48},
[638] = {.lex_state = 48},
[639] = {.lex_state = 48},
[640] = {.lex_state = 48},
[641] = {.lex_state = 48},
[642] = {.lex_state = 48},
[643] = {.lex_state = 48},
[644] = {.lex_state = 48},
[645] = {.lex_state = 48},
[646] = {.lex_state = 48},
[647] = {.lex_state = 48},
[648] = {.lex_state = 10},
[649] = {.lex_state = 48},
[650] = {.lex_state = 48},
[651] = {.lex_state = 48},
[652] = {.lex_state = 48},
[653] = {.lex_state = 48},
[654] = {.lex_state = 48},
[655] = {.lex_state = 10},
[656] = {.lex_state = 48},
[657] = {.lex_state = 48},
[658] = {.lex_state = 48},
[659] = {.lex_state = 48},
[660] = {.lex_state = 48},
[661] = {.lex_state = 48},
[662] = {.lex_state = 48},
[663] = {.lex_state = 48},
[664] = {.lex_state = 48},
[665] = {.lex_state = 48},
[666] = {.lex_state = 48},
[667] = {.lex_state = 48},
[668] = {.lex_state = 48},
[669] = {.lex_state = 48},
[670] = {.lex_state = 48},
[671] = {.lex_state = 48},
[672] = {.lex_state = 48},
[673] = {.lex_state = 48},
[674] = {.lex_state = 48},
[675] = {.lex_state = 48},
[676] = {.lex_state = 48},
[677] = {.lex_state = 48},
[678] = {.lex_state = 48},
[679] = {.lex_state = 48},
[680] = {.lex_state = 48},
[681] = {.lex_state = 48},
[682] = {.lex_state = 48},
[683] = {.lex_state = 48},
[684] = {.lex_state = 48},
[685] = {.lex_state = 48},
[686] = {.lex_state = 48},
[687] = {.lex_state = 48},
[688] = {.lex_state = 48},
[689] = {.lex_state = 48},
[690] = {.lex_state = 48},
[691] = {.lex_state = 48},
[692] = {.lex_state = 48},
[693] = {.lex_state = 48},
[694] = {.lex_state = 48},
[695] = {.lex_state = 48},
[696] = {.lex_state = 48},
[697] = {.lex_state = 48},
[698] = {.lex_state = 48},
[699] = {.lex_state = 48},
[700] = {.lex_state = 48},
[701] = {.lex_state = 48},
[702] = {.lex_state = 48},
[703] = {.lex_state = 48},
[704] = {.lex_state = 48},
[705] = {.lex_state = 48},
[706] = {.lex_state = 48},
[707] = {.lex_state = 48},
[708] = {.lex_state = 48},
[709] = {.lex_state = 48},
[710] = {.lex_state = 48},
[711] = {.lex_state = 48},
[712] = {.lex_state = 48},
[713] = {.lex_state = 48},
[714] = {.lex_state = 48},
[715] = {.lex_state = 48},
[716] = {.lex_state = 48},
[717] = {.lex_state = 48},
[718] = {.lex_state = 48},
[719] = {.lex_state = 48},
[720] = {.lex_state = 48},
[721] = {.lex_state = 48},
[722] = {.lex_state = 48},
[723] = {.lex_state = 48},
[724] = {.lex_state = 48},
[725] = {.lex_state = 48},
[726] = {.lex_state = 48},
[727] = {.lex_state = 48},
[728] = {.lex_state = 48},
[729] = {.lex_state = 48},
[730] = {.lex_state = 48},
[731] = {.lex_state = 48},
[732] = {.lex_state = 48},
[733] = {.lex_state = 48},
[734] = {.lex_state = 48},
[735] = {.lex_state = 48},
[736] = {.lex_state = 48},
[737] = {.lex_state = 48},
[738] = {.lex_state = 48},
[739] = {.lex_state = 48},
[740] = {.lex_state = 48},
[741] = {.lex_state = 48},
[742] = {.lex_state = 48},
[743] = {.lex_state = 48},
[744] = {.lex_state = 48},
[745] = {.lex_state = 48},
[746] = {.lex_state = 48},
[747] = {.lex_state = 48},
[748] = {.lex_state = 48},
[749] = {.lex_state = 48},
[750] = {.lex_state = 48},
[751] = {.lex_state = 48},
[752] = {.lex_state = 48},
[753] = {.lex_state = 48},
[754] = {.lex_state = 48},
[755] = {.lex_state = 48},
[756] = {.lex_state = 48},
[757] = {.lex_state = 48},
[758] = {.lex_state = 48},
[759] = {.lex_state = 48},
[760] = {.lex_state = 48},
[761] = {.lex_state = 48},
[762] = {.lex_state = 48},
[763] = {.lex_state = 48},
[764] = {.lex_state = 48},
[765] = {.lex_state = 48},
[766] = {.lex_state = 48},
[767] = {.lex_state = 48},
[768] = {.lex_state = 48},
[769] = {.lex_state = 48},
[770] = {.lex_state = 48},
[771] = {.lex_state = 48},
[772] = {.lex_state = 48},
[773] = {.lex_state = 48},
[774] = {.lex_state = 48},
[775] = {.lex_state = 48},
[776] = {.lex_state = 48},
[777] = {.lex_state = 48},
[778] = {.lex_state = 48},
[779] = {.lex_state = 11},
[780] = {.lex_state = 48},
[781] = {.lex_state = 11},
[782] = {.lex_state = 48},
[783] = {.lex_state = 11},
[784] = {.lex_state = 48},
[785] = {.lex_state = 48},
[786] = {.lex_state = 48},
[787] = {.lex_state = 48},
[788] = {.lex_state = 48},
[789] = {.lex_state = 48},
[790] = {.lex_state = 48},
[791] = {.lex_state = 10},
[792] = {.lex_state = 48},
[793] = {.lex_state = 48},
[794] = {.lex_state = 48},
[795] = {.lex_state = 11},
[796] = {.lex_state = 48},
[797] = {.lex_state = 48},
[798] = {.lex_state = 48},
[799] = {.lex_state = 48},
[800] = {.lex_state = 48},
[801] = {.lex_state = 48},
[802] = {.lex_state = 48},
[803] = {.lex_state = 48},
[804] = {.lex_state = 11},
[805] = {.lex_state = 48},
[806] = {.lex_state = 48},
[807] = {.lex_state = 48},
[808] = {.lex_state = 48},
[809] = {.lex_state = 48},
[810] = {.lex_state = 48},
[811] = {.lex_state = 48},
[812] = {.lex_state = 48},
[813] = {.lex_state = 48},
[814] = {.lex_state = 48},
[815] = {.lex_state = 48},
[816] = {.lex_state = 48},
[817] = {.lex_state = 48},
[818] = {.lex_state = 48},
[819] = {.lex_state = 48},
[820] = {.lex_state = 48},
[821] = {.lex_state = 48},
[822] = {.lex_state = 48},
[823] = {.lex_state = 48},
[824] = {.lex_state = 48},
[825] = {.lex_state = 10},
[826] = {.lex_state = 48},
[827] = {.lex_state = 0},
[828] = {.lex_state = 0},
[829] = {.lex_state = 48},
[830] = {.lex_state = 48},
[831] = {.lex_state = 48},
[832] = {.lex_state = 48},
[833] = {.lex_state = 48},
[834] = {.lex_state = 48},
[835] = {.lex_state = 48},
[836] = {.lex_state = 48},
[837] = {.lex_state = 48},
[838] = {.lex_state = 48},
[839] = {.lex_state = 48},
[840] = {.lex_state = 48},
[841] = {.lex_state = 48},
[842] = {.lex_state = 48},
[843] = {.lex_state = 48},
[844] = {.lex_state = 48},
[845] = {.lex_state = 48},
[846] = {.lex_state = 48},
[847] = {.lex_state = 48},
[848] = {.lex_state = 48},
[849] = {.lex_state = 48},
[850] = {.lex_state = 48},
[851] = {.lex_state = 11},
[852] = {.lex_state = 11},
[853] = {.lex_state = 48},
[854] = {.lex_state = 11},
[855] = {.lex_state = 11},
[856] = {.lex_state = 11},
[857] = {.lex_state = 11},
[858] = {.lex_state = 11},
[859] = {.lex_state = 11},
[860] = {.lex_state = 11},
[861] = {.lex_state = 11},
[862] = {.lex_state = 11},
[863] = {.lex_state = 11},
[864] = {.lex_state = 11},
[865] = {.lex_state = 11},
[866] = {.lex_state = 11},
[867] = {.lex_state = 11},
[868] = {.lex_state = 11},
[869] = {.lex_state = 11},
[870] = {.lex_state = 11},
[871] = {.lex_state = 48},
[872] = {.lex_state = 48},
[873] = {.lex_state = 48},
[874] = {.lex_state = 48},
[875] = {.lex_state = 48},
[876] = {.lex_state = 48},
[877] = {.lex_state = 48},
[878] = {.lex_state = 48},
[879] = {.lex_state = 48},
[880] = {.lex_state = 48},
[881] = {.lex_state = 48},
[882] = {.lex_state = 48},
[883] = {.lex_state = 48},
[884] = {.lex_state = 11},
[885] = {.lex_state = 48},
[886] = {.lex_state = 48},
[887] = {.lex_state = 48},
[888] = {.lex_state = 48},
[889] = {.lex_state = 11},
[890] = {.lex_state = 48},
[891] = {.lex_state = 48},
[892] = {.lex_state = 48},
[893] = {.lex_state = 10},
[894] = {.lex_state = 48},
[895] = {.lex_state = 48},
[896] = {.lex_state = 48},
[897] = {.lex_state = 11},
[898] = {.lex_state = 48},
[899] = {.lex_state = 11},
[900] = {.lex_state = 48},
[901] = {.lex_state = 48},
[902] = {.lex_state = 48},
[903] = {.lex_state = 48},
[904] = {.lex_state = 48},
[905] = {.lex_state = 48},
[906] = {.lex_state = 48},
[907] = {.lex_state = 48},
[908] = {.lex_state = 48},
[909] = {.lex_state = 11},
[910] = {.lex_state = 11},
[911] = {.lex_state = 48},
[912] = {.lex_state = 11},
[913] = {.lex_state = 48},
[914] = {.lex_state = 10},
[915] = {.lex_state = 48},
[916] = {.lex_state = 48},
[917] = {.lex_state = 48},
[918] = {.lex_state = 48},
[919] = {.lex_state = 48},
[920] = {.lex_state = 11},
[921] = {.lex_state = 11},
[922] = {.lex_state = 11},
[923] = {.lex_state = 48},
[924] = {.lex_state = 11},
[925] = {.lex_state = 10},
[926] = {.lex_state = 11},
[927] = {.lex_state = 11},
[928] = {.lex_state = 48},
[929] = {.lex_state = 0},
[930] = {.lex_state = 48},
[931] = {.lex_state = 48},
[932] = {.lex_state = 11},
[933] = {.lex_state = 11},
[934] = {.lex_state = 48},
[935] = {.lex_state = 11},
[936] = {.lex_state = 11},
[937] = {.lex_state = 11},
[938] = {.lex_state = 48},
[939] = {.lex_state = 48},
[940] = {.lex_state = 48},
[941] = {.lex_state = 10},
[942] = {.lex_state = 48},
[943] = {.lex_state = 48},
[944] = {.lex_state = 48},
[945] = {.lex_state = 48},
[946] = {.lex_state = 11},
[947] = {.lex_state = 11},
[948] = {.lex_state = 11},
[949] = {.lex_state = 11},
[950] = {.lex_state = 10},
[951] = {.lex_state = 11},
[952] = {.lex_state = 11},
[953] = {.lex_state = 11},
[954] = {.lex_state = 11},
[955] = {.lex_state = 11},
[956] = {.lex_state = 48},
[957] = {.lex_state = 48},
[958] = {.lex_state = 48},
[959] = {.lex_state = 48},
[960] = {.lex_state = 48},
[961] = {.lex_state = 48},
[962] = {.lex_state = 48},
[963] = {.lex_state = 11},
[964] = {.lex_state = 11},
[965] = {.lex_state = 48},
[966] = {.lex_state = 48},
[967] = {.lex_state = 48},
[968] = {.lex_state = 48},
[969] = {.lex_state = 10},
[970] = {.lex_state = 48},
[971] = {.lex_state = 11},
[972] = {.lex_state = 11},
[973] = {.lex_state = 0},
[974] = {.lex_state = 0},
[975] = {.lex_state = 0},
[976] = {.lex_state = 48},
[977] = {.lex_state = 48},
[978] = {.lex_state = 48},
[979] = {.lex_state = 48},
[980] = {.lex_state = 48},
[981] = {.lex_state = 48},
[982] = {.lex_state = 48},
[983] = {.lex_state = 48},
[984] = {.lex_state = 48},
[985] = {.lex_state = 48},
[986] = {.lex_state = 10},
[987] = {.lex_state = 48},
[988] = {.lex_state = 48},
[989] = {.lex_state = 0},
[990] = {.lex_state = 48},
[991] = {.lex_state = 10},
[992] = {.lex_state = 10},
[993] = {.lex_state = 11},
[994] = {.lex_state = 48},
[995] = {.lex_state = 48},
[996] = {.lex_state = 48},
[997] = {.lex_state = 11},
[998] = {.lex_state = 10},
[999] = {.lex_state = 48},
[1000] = {.lex_state = 10},
[1001] = {.lex_state = 48},
[1002] = {.lex_state = 48},
[1003] = {.lex_state = 48},
[1004] = {.lex_state = 48},
[1005] = {.lex_state = 48},
[1006] = {.lex_state = 48},
[1007] = {.lex_state = 10},
[1008] = {.lex_state = 48},
[1009] = {.lex_state = 48},
[1010] = {.lex_state = 0},
[1011] = {.lex_state = 48},
[1012] = {.lex_state = 10},
[1013] = {.lex_state = 48},
[1014] = {.lex_state = 10},
[1015] = {.lex_state = 48},
[1016] = {.lex_state = 10},
[1017] = {.lex_state = 48},
[1018] = {.lex_state = 48},
[1019] = {.lex_state = 48},
[1020] = {.lex_state = 10},
[1021] = {.lex_state = 10},
[1022] = {.lex_state = 11},
[1023] = {.lex_state = 48},
[1024] = {.lex_state = 48},
[1025] = {.lex_state = 11},
[1026] = {.lex_state = 10},
[1027] = {.lex_state = 48},
[1028] = {.lex_state = 10},
[1029] = {.lex_state = 48},
[1030] = {.lex_state = 10},
[1031] = {.lex_state = 10},
[1032] = {.lex_state = 10},
[1033] = {.lex_state = 48},
[1034] = {.lex_state = 48},
[1035] = {.lex_state = 48},
[1036] = {.lex_state = 48},
[1037] = {.lex_state = 48},
[1038] = {.lex_state = 48},
[1039] = {.lex_state = 10},
[1040] = {.lex_state = 48},
[1041] = {.lex_state = 48},
[1042] = {.lex_state = 48},
[1043] = {.lex_state = 0},
[1044] = {.lex_state = 10},
[1045] = {.lex_state = 11},
[1046] = {.lex_state = 10},
[1047] = {.lex_state = 48},
[1048] = {.lex_state = 48},
[1049] = {.lex_state = 10},
[1050] = {.lex_state = 10},
[1051] = {.lex_state = 10},
[1052] = {.lex_state = 10},
[1053] = {.lex_state = 48},
[1054] = {.lex_state = 11},
[1055] = {.lex_state = 48},
[1056] = {.lex_state = 0},
[1057] = {.lex_state = 11},
[1058] = {.lex_state = 48},
[1059] = {.lex_state = 48},
[1060] = {.lex_state = 48},
[1061] = {.lex_state = 48},
[1062] = {.lex_state = 48},
[1063] = {.lex_state = 48},
[1064] = {.lex_state = 11},
[1065] = {.lex_state = 10},
[1066] = {.lex_state = 48},
[1067] = {.lex_state = 11},
[1068] = {.lex_state = 48},
[1069] = {.lex_state = 48},
[1070] = {.lex_state = 48},
[1071] = {.lex_state = 48},
[1072] = {.lex_state = 48},
[1073] = {.lex_state = 0},
[1074] = {.lex_state = 48},
[1075] = {.lex_state = 48},
[1076] = {.lex_state = 48},
[1077] = {.lex_state = 48},
[1078] = {.lex_state = 0},
[1079] = {.lex_state = 48},
[1080] = {.lex_state = 48},
[1081] = {.lex_state = 48},
[1082] = {.lex_state = 48},
[1083] = {.lex_state = 48},
[1084] = {.lex_state = 48},
[1085] = {.lex_state = 48},
[1086] = {.lex_state = 48},
[1087] = {.lex_state = 0},
[1088] = {.lex_state = 48},
[1089] = {.lex_state = 48},
[1090] = {.lex_state = 48},
[1091] = {.lex_state = 48},
[1092] = {.lex_state = 48},
[1093] = {.lex_state = 48},
[1094] = {.lex_state = 48},
[1095] = {.lex_state = 48},
[1096] = {.lex_state = 48},
[1097] = {.lex_state = 48},
[1098] = {.lex_state = 48},
[1099] = {.lex_state = 48},
[1100] = {.lex_state = 48},
[1101] = {.lex_state = 48},
[1102] = {.lex_state = 48},
[1103] = {.lex_state = 48},
[1104] = {.lex_state = 48},
[1105] = {.lex_state = 48},
[1106] = {.lex_state = 48},
[1107] = {.lex_state = 48},
[1108] = {.lex_state = 48},
[1109] = {.lex_state = 48},
[1110] = {.lex_state = 0},
[1111] = {.lex_state = 48},
[1112] = {.lex_state = 48},
[1113] = {.lex_state = 48},
[1114] = {.lex_state = 0},
[1115] = {.lex_state = 48},
[1116] = {.lex_state = 0},
[1117] = {.lex_state = 48},
[1118] = {.lex_state = 48},
[1119] = {.lex_state = 0},
[1120] = {.lex_state = 48},
[1121] = {.lex_state = 48},
[1122] = {.lex_state = 11},
[1123] = {.lex_state = 48},
[1124] = {.lex_state = 48},
[1125] = {.lex_state = 48},
[1126] = {.lex_state = 48},
[1127] = {.lex_state = 48},
[1128] = {.lex_state = 48},
[1129] = {.lex_state = 0},
[1130] = {.lex_state = 48},
[1131] = {.lex_state = 48},
[1132] = {.lex_state = 48},
[1133] = {.lex_state = 48},
[1134] = {.lex_state = 48},
[1135] = {.lex_state = 48},
[1136] = {.lex_state = 48},
[1137] = {.lex_state = 48},
[1138] = {.lex_state = 0},
[1139] = {.lex_state = 48},
[1140] = {.lex_state = 48},
[1141] = {.lex_state = 48},
[1142] = {.lex_state = 48},
[1143] = {.lex_state = 48},
[1144] = {.lex_state = 48},
[1145] = {.lex_state = 48},
[1146] = {.lex_state = 48},
[1147] = {.lex_state = 48},
[1148] = {.lex_state = 48},
[1149] = {.lex_state = 48},
[1150] = {.lex_state = 0},
[1151] = {.lex_state = 0},
[1152] = {.lex_state = 48},
[1153] = {.lex_state = 11},
[1154] = {.lex_state = 48},
[1155] = {.lex_state = 48},
[1156] = {.lex_state = 0},
[1157] = {.lex_state = 48},
[1158] = {.lex_state = 0},
[1159] = {.lex_state = 48},
[1160] = {.lex_state = 0},
[1161] = {.lex_state = 48},
[1162] = {.lex_state = 48},
[1163] = {.lex_state = 48},
[1164] = {.lex_state = 48},
[1165] = {.lex_state = 48},
[1166] = {.lex_state = 48},
[1167] = {.lex_state = 48},
[1168] = {.lex_state = 48},
[1169] = {.lex_state = 48},
[1170] = {.lex_state = 48},
[1171] = {.lex_state = 48},
[1172] = {.lex_state = 0},
[1173] = {.lex_state = 0},
[1174] = {.lex_state = 0},
[1175] = {.lex_state = 48},
[1176] = {.lex_state = 48},
[1177] = {.lex_state = 48},
[1178] = {.lex_state = 0},
[1179] = {.lex_state = 0},
[1180] = {.lex_state = 0},
[1181] = {.lex_state = 0},
[1182] = {.lex_state = 0},
[1183] = {.lex_state = 0},
[1184] = {.lex_state = 48},
[1185] = {.lex_state = 48},
[1186] = {.lex_state = 48},
[1187] = {.lex_state = 0},
[1188] = {.lex_state = 48},
[1189] = {.lex_state = 0},
[1190] = {.lex_state = 48},
[1191] = {.lex_state = 0},
[1192] = {.lex_state = 48},
[1193] = {.lex_state = 48},
[1194] = {.lex_state = 0},
[1195] = {.lex_state = 48},
[1196] = {.lex_state = 48},
[1197] = {.lex_state = 0},
[1198] = {.lex_state = 48},
[1199] = {.lex_state = 48},
[1200] = {.lex_state = 48},
[1201] = {.lex_state = 48},
[1202] = {.lex_state = 48},
[1203] = {.lex_state = 48},
[1204] = {.lex_state = 48},
[1205] = {.lex_state = 48},
[1206] = {.lex_state = 48},
[1207] = {.lex_state = 48},
[1208] = {.lex_state = 48},
[1209] = {.lex_state = 48},
[1210] = {.lex_state = 48},
[1211] = {.lex_state = 48},
[1212] = {.lex_state = 48},
[1213] = {.lex_state = 48},
[1214] = {.lex_state = 48},
[1215] = {.lex_state = 48},
[1216] = {.lex_state = 0},
[1217] = {.lex_state = 48},
[1218] = {.lex_state = 48},
[1219] = {.lex_state = 48},
[1220] = {.lex_state = 48},
[1221] = {.lex_state = 48},
[1222] = {.lex_state = 48},
[1223] = {.lex_state = 48},
[1224] = {.lex_state = 48},
[1225] = {.lex_state = 48},
[1226] = {.lex_state = 0},
[1227] = {.lex_state = 48},
[1228] = {.lex_state = 48},
[1229] = {.lex_state = 48},
[1230] = {.lex_state = 48},
[1231] = {.lex_state = 0},
[1232] = {.lex_state = 48},
[1233] = {.lex_state = 48},
[1234] = {.lex_state = 0},
[1235] = {.lex_state = 0},
[1236] = {.lex_state = 48},
[1237] = {.lex_state = 0},
[1238] = {.lex_state = 0},
[1239] = {.lex_state = 48},
[1240] = {.lex_state = 48},
[1241] = {.lex_state = 48},
[1242] = {.lex_state = 48},
[1243] = {.lex_state = 48},
[1244] = {.lex_state = 0},
[1245] = {.lex_state = 0},
[1246] = {.lex_state = 48},
[1247] = {.lex_state = 48},
[1248] = {.lex_state = 0},
[1249] = {.lex_state = 48},
[1250] = {.lex_state = 0},
[1251] = {.lex_state = 0},
[1252] = {.lex_state = 48},
[1253] = {.lex_state = 48},
[1254] = {.lex_state = 0},
[1255] = {.lex_state = 48},
[1256] = {.lex_state = 48},
[1257] = {.lex_state = 48},
[1258] = {.lex_state = 48},
[1259] = {.lex_state = 0},
[1260] = {.lex_state = 48},
[1261] = {.lex_state = 0},
[1262] = {.lex_state = 48},
[1263] = {.lex_state = 48},
[1264] = {.lex_state = 48},
[1265] = {.lex_state = 48},
[1266] = {.lex_state = 48},
[1267] = {.lex_state = 48},
[1268] = {.lex_state = 48},
[1269] = {.lex_state = 48},
[1270] = {.lex_state = 0},
[1271] = {.lex_state = 48},
[1272] = {.lex_state = 48},
[1273] = {.lex_state = 48},
[1274] = {.lex_state = 48},
[1275] = {.lex_state = 0},
[1276] = {.lex_state = 48},
[1277] = {.lex_state = 48},
[1278] = {.lex_state = 48},
[1279] = {.lex_state = 48},
[1280] = {.lex_state = 48},
[1281] = {.lex_state = 48},
[1282] = {.lex_state = 48},
[1283] = {.lex_state = 48},
[1284] = {.lex_state = 48},
[1285] = {.lex_state = 48},
[1286] = {.lex_state = 48},
[1287] = {.lex_state = 0},
[1288] = {.lex_state = 48},
[1289] = {.lex_state = 0},
[1290] = {.lex_state = 0},
[1291] = {.lex_state = 48},
[1292] = {.lex_state = 48},
[1293] = {.lex_state = 48},
[1294] = {.lex_state = 0},
[1295] = {.lex_state = 48},
[1296] = {.lex_state = 48},
[1297] = {.lex_state = 48},
[1298] = {.lex_state = 48},
[1299] = {.lex_state = 48},
[1300] = {.lex_state = 48},
[1301] = {.lex_state = 48},
[1302] = {.lex_state = 48},
[1303] = {.lex_state = 48},
[1304] = {.lex_state = 48},
[1305] = {.lex_state = 48},
[1306] = {.lex_state = 0},
[1307] = {.lex_state = 48},
[1308] = {.lex_state = 0},
[1309] = {.lex_state = 0},
[1310] = {.lex_state = 48},
[1311] = {.lex_state = 48},
[1312] = {.lex_state = 48},
[1313] = {.lex_state = 48},
[1314] = {.lex_state = 48},
[1315] = {.lex_state = 48},
[1316] = {.lex_state = 48},
[1317] = {.lex_state = 0},
[1318] = {.lex_state = 48},
[1319] = {.lex_state = 48},
[1320] = {.lex_state = 48},
[1321] = {.lex_state = 48},
[1322] = {.lex_state = 48},
[1323] = {.lex_state = 48},
[1324] = {.lex_state = 48},
[1325] = {.lex_state = 48},
[1326] = {.lex_state = 48},
[1327] = {.lex_state = 48},
[1328] = {.lex_state = 48},
[1329] = {.lex_state = 48},
[1330] = {.lex_state = 48},
[1331] = {.lex_state = 0},
[1332] = {.lex_state = 48},
[1333] = {.lex_state = 0},
[1334] = {.lex_state = 0},
[1335] = {.lex_state = 0},
[1336] = {.lex_state = 48},
[1337] = {.lex_state = 48},
[1338] = {.lex_state = 48},
[1339] = {.lex_state = 0},
[1340] = {.lex_state = 48},
[1341] = {.lex_state = 0},
[1342] = {.lex_state = 0},
[1343] = {.lex_state = 0},
[1344] = {.lex_state = 48},
[1345] = {.lex_state = 48},
[1346] = {.lex_state = 48},
[1347] = {.lex_state = 48},
[1348] = {.lex_state = 48},
[1349] = {.lex_state = 48},
[1350] = {.lex_state = 0},
[1351] = {.lex_state = 48},
[1352] = {.lex_state = 48},
[1353] = {.lex_state = 0},
[1354] = {.lex_state = 0},
[1355] = {.lex_state = 48},
[1356] = {.lex_state = 48},
[1357] = {.lex_state = 0},
[1358] = {.lex_state = 0},
[1359] = {.lex_state = 48},
[1360] = {.lex_state = 48},
[1361] = {.lex_state = 48},
[1362] = {.lex_state = 0},
[1363] = {.lex_state = 48},
[1364] = {.lex_state = 0},
[1365] = {.lex_state = 48},
[1366] = {.lex_state = 48},
[1367] = {.lex_state = 0},
[1368] = {.lex_state = 48},
[1369] = {.lex_state = 0},
[1370] = {.lex_state = 0},
[1371] = {.lex_state = 0},
[1372] = {.lex_state = 0},
[1373] = {.lex_state = 48},
[1374] = {.lex_state = 48},
[1375] = {.lex_state = 0},
[1376] = {.lex_state = 48},
[1377] = {.lex_state = 48},
[1378] = {.lex_state = 48},
[1379] = {.lex_state = 48},
[1380] = {.lex_state = 48},
[1381] = {.lex_state = 0},
[1382] = {.lex_state = 0},
[1383] = {.lex_state = 48},
[1384] = {.lex_state = 48},
[1385] = {.lex_state = 48},
[1386] = {.lex_state = 48},
[1387] = {.lex_state = 48},
[1388] = {.lex_state = 48},
[1389] = {.lex_state = 0},
[1390] = {.lex_state = 48},
[1391] = {.lex_state = 48},
[1392] = {.lex_state = 48},
[1393] = {.lex_state = 0},
[1394] = {.lex_state = 48},
[1395] = {.lex_state = 48},
[1396] = {.lex_state = 0},
[1397] = {.lex_state = 48},
[1398] = {.lex_state = 48},
[1399] = {.lex_state = 48},
[1400] = {.lex_state = 48},
[1401] = {.lex_state = 48},
[1402] = {.lex_state = 48},
[1403] = {.lex_state = 48},
[1404] = {.lex_state = 48},
[1405] = {.lex_state = 48},
[1406] = {.lex_state = 48},
[1407] = {.lex_state = 48},
[1408] = {.lex_state = 0},
[1409] = {.lex_state = 48},
[1410] = {.lex_state = 0},
[1411] = {.lex_state = 48},
[1412] = {.lex_state = 48},
[1413] = {.lex_state = 48},
[1414] = {.lex_state = 0},
[1415] = {.lex_state = 0},
[1416] = {.lex_state = 0},
[1417] = {.lex_state = 48},
[1418] = {.lex_state = 0},
[1419] = {.lex_state = 48},
[1420] = {.lex_state = 48},
[1421] = {.lex_state = 48},
[1422] = {.lex_state = 48},
[1423] = {.lex_state = 48},
[1424] = {.lex_state = 48},
[1425] = {.lex_state = 48},
[1426] = {.lex_state = 48},
[1427] = {.lex_state = 0},
[1428] = {.lex_state = 0},
[1429] = {.lex_state = 48},
[1430] = {.lex_state = 48},
[1431] = {.lex_state = 48},
[1432] = {.lex_state = 48},
[1433] = {.lex_state = 48},
[1434] = {.lex_state = 0},
[1435] = {.lex_state = 48},
[1436] = {.lex_state = 48},
[1437] = {.lex_state = 48},
[1438] = {.lex_state = 48},
[1439] = {.lex_state = 0},
[1440] = {.lex_state = 48},
[1441] = {.lex_state = 48},
[1442] = {.lex_state = 48},
[1443] = {.lex_state = 48},
[1444] = {.lex_state = 48},
[1445] = {.lex_state = 48},
[1446] = {.lex_state = 48},
[1447] = {.lex_state = 48},
[1448] = {.lex_state = 48},
[1449] = {.lex_state = 48},
[1450] = {.lex_state = 48},
[1451] = {.lex_state = 48},
[1452] = {.lex_state = 48},
[1453] = {.lex_state = 48},
[1454] = {.lex_state = 48},
[1455] = {.lex_state = 48},
[1456] = {.lex_state = 48},
[1457] = {.lex_state = 0},
[1458] = {.lex_state = 0},
[1459] = {.lex_state = 48},
[1460] = {.lex_state = 48},
[1461] = {.lex_state = 48},
[1462] = {.lex_state = 48},
[1463] = {.lex_state = 48},
[1464] = {.lex_state = 48},
[1465] = {.lex_state = 48},
[1466] = {.lex_state = 48},
[1467] = {.lex_state = 48},
[1468] = {.lex_state = 48},
[1469] = {.lex_state = 48},
[1470] = {.lex_state = 0},
[1471] = {.lex_state = 48},
[1472] = {.lex_state = 0},
[1473] = {.lex_state = 0},
[1474] = {.lex_state = 0},
[1475] = {.lex_state = 48},
[1476] = {.lex_state = 48},
[1477] = {.lex_state = 48},
[1478] = {.lex_state = 48},
[1479] = {.lex_state = 0},
[1480] = {.lex_state = 48},
[1481] = {.lex_state = 48},
[1482] = {.lex_state = 48},
[1483] = {.lex_state = 48},
[1484] = {.lex_state = 48},
[1485] = {.lex_state = 48},
[1486] = {.lex_state = 48},
[1487] = {.lex_state = 48},
[1488] = {.lex_state = 48},
[1489] = {.lex_state = 48},
[1490] = {.lex_state = 0},
[1491] = {.lex_state = 48},
[1492] = {.lex_state = 48},
[1493] = {.lex_state = 48},
[1494] = {.lex_state = 48},
[1495] = {.lex_state = 48},
[1496] = {.lex_state = 48},
[1497] = {.lex_state = 48},
[1498] = {.lex_state = 48},
[1499] = {.lex_state = 0},
[1500] = {.lex_state = 48},
[1501] = {.lex_state = 48},
[1502] = {.lex_state = 48},
[1503] = {.lex_state = 48},
[1504] = {.lex_state = 48},
[1505] = {.lex_state = 48},
[1506] = {.lex_state = 48},
[1507] = {.lex_state = 48},
[1508] = {.lex_state = 48},
[1509] = {.lex_state = 48},
[1510] = {.lex_state = 48},
[1511] = {.lex_state = 48},
[1512] = {.lex_state = 0},
[1513] = {.lex_state = 0},
[1514] = {.lex_state = 48},
[1515] = {.lex_state = 48},
[1516] = {.lex_state = 0},
[1517] = {.lex_state = 0},
[1518] = {.lex_state = 0},
[1519] = {.lex_state = 0},
[1520] = {.lex_state = 0},
[1521] = {.lex_state = 48},
[1522] = {.lex_state = 0},
[1523] = {.lex_state = 48},
[1524] = {.lex_state = 0},
[1525] = {.lex_state = 48},
[1526] = {.lex_state = 48},
[1527] = {.lex_state = 48},
[1528] = {.lex_state = 0},
[1529] = {.lex_state = 0},
[1530] = {.lex_state = 0},
[1531] = {.lex_state = 48},
[1532] = {.lex_state = 48},
[1533] = {.lex_state = 0},
[1534] = {.lex_state = 48},
[1535] = {.lex_state = 48},
[1536] = {.lex_state = 0},
[1537] = {.lex_state = 0},
[1538] = {.lex_state = 48},
[1539] = {.lex_state = 48},
[1540] = {.lex_state = 48},
[1541] = {.lex_state = 0},
[1542] = {.lex_state = 0},
[1543] = {.lex_state = 0},
[1544] = {.lex_state = 0},
[1545] = {.lex_state = 48},
[1546] = {.lex_state = 48},
[1547] = {.lex_state = 48},
[1548] = {.lex_state = 48},
[1549] = {.lex_state = 48},
[1550] = {.lex_state = 48},
[1551] = {.lex_state = 48},
[1552] = {.lex_state = 48},
[1553] = {.lex_state = 48},
[1554] = {.lex_state = 48},
[1555] = {.lex_state = 48},
[1556] = {.lex_state = 0},
[1557] = {.lex_state = 48},
[1558] = {.lex_state = 48},
[1559] = {.lex_state = 48},
[1560] = {.lex_state = 48},
[1561] = {.lex_state = 48},
[1562] = {.lex_state = 48},
[1563] = {.lex_state = 0},
[1564] = {.lex_state = 48},
[1565] = {.lex_state = 48},
[1566] = {.lex_state = 48},
[1567] = {.lex_state = 48},
[1568] = {.lex_state = 48},
[1569] = {.lex_state = 48},
[1570] = {.lex_state = 0},
[1571] = {.lex_state = 48},
[1572] = {.lex_state = 0},
[1573] = {.lex_state = 48},
[1574] = {.lex_state = 48},
[1575] = {.lex_state = 48},
[1576] = {.lex_state = 48},
[1577] = {.lex_state = 48},
[1578] = {.lex_state = 48},
[1579] = {.lex_state = 48},
[1580] = {.lex_state = 48},
[1581] = {.lex_state = 48},
[1582] = {.lex_state = 48},
[1583] = {.lex_state = 48},
[1584] = {.lex_state = 48},
[1585] = {.lex_state = 48},
[1586] = {.lex_state = 48},
[1587] = {.lex_state = 48},
[1588] = {.lex_state = 48},
[1589] = {.lex_state = 0},
[1590] = {.lex_state = 48},
[1591] = {.lex_state = 48},
[1592] = {.lex_state = 48},
[1593] = {.lex_state = 48},
[1594] = {.lex_state = 48},
[1595] = {.lex_state = 48},
[1596] = {.lex_state = 48},
[1597] = {.lex_state = 48},
[1598] = {.lex_state = 48},
[1599] = {.lex_state = 48},
[1600] = {.lex_state = 48},
[1601] = {.lex_state = 48},
[1602] = {.lex_state = 48},
[1603] = {.lex_state = 48},
[1604] = {.lex_state = 48},
[1605] = {.lex_state = 48},
[1606] = {.lex_state = 48},
[1607] = {.lex_state = 48},
[1608] = {.lex_state = 48},
[1609] = {.lex_state = 48},
[1610] = {.lex_state = 48},
[1611] = {.lex_state = 48},
[1612] = {.lex_state = 48},
[1613] = {.lex_state = 48},
[1614] = {.lex_state = 48},
[1615] = {.lex_state = 48},
[1616] = {.lex_state = 48},
[1617] = {.lex_state = 48},
[1618] = {.lex_state = 0},
[1619] = {.lex_state = 48},
[1620] = {.lex_state = 48},
[1621] = {.lex_state = 48},
[1622] = {.lex_state = 48},
[1623] = {.lex_state = 48},
[1624] = {.lex_state = 48},
[1625] = {.lex_state = 48},
[1626] = {.lex_state = 48},
[1627] = {.lex_state = 48},
[1628] = {.lex_state = 0},
[1629] = {.lex_state = 48},
[1630] = {.lex_state = 48},
[1631] = {.lex_state = 48},
[1632] = {.lex_state = 48},
[1633] = {.lex_state = 48},
[1634] = {.lex_state = 48},
[1635] = {.lex_state = 0},
[1636] = {.lex_state = 48},
[1637] = {.lex_state = 48},
[1638] = {.lex_state = 48},
[1639] = {.lex_state = 48},
[1640] = {.lex_state = 48},
[1641] = {.lex_state = 48},
[1642] = {.lex_state = 48},
[1643] = {.lex_state = 48},
[1644] = {.lex_state = 48},
[1645] = {.lex_state = 48},
[1646] = {.lex_state = 48},
[1647] = {.lex_state = 48},
[1648] = {.lex_state = 48},
[1649] = {.lex_state = 0},
[1650] = {.lex_state = 0},
[1651] = {.lex_state = 0},
[1652] = {.lex_state = 0},
[1653] = {.lex_state = 0},
[1654] = {.lex_state = 0},
[1655] = {.lex_state = 48},
[1656] = {.lex_state = 48},
[1657] = {.lex_state = 48},
[1658] = {.lex_state = 48},
[1659] = {.lex_state = 48},
[1660] = {.lex_state = 48},
[1661] = {.lex_state = 48},
[1662] = {.lex_state = 48},
[1663] = {.lex_state = 48},
[1664] = {.lex_state = 48},
[1665] = {.lex_state = 48},
[1666] = {.lex_state = 48},
[1667] = {.lex_state = 48},
[1668] = {.lex_state = 48},
[1669] = {.lex_state = 48},
[1670] = {.lex_state = 48},
[1671] = {.lex_state = 48},
[1672] = {.lex_state = 48},
[1673] = {.lex_state = 48},
[1674] = {.lex_state = 48},
[1675] = {.lex_state = 48},
[1676] = {.lex_state = 48},
[1677] = {.lex_state = 48},
[1678] = {.lex_state = 48},
[1679] = {.lex_state = 48},
[1680] = {.lex_state = 48},
[1681] = {.lex_state = 48},
[1682] = {.lex_state = 48},
[1683] = {.lex_state = 0},
[1684] = {.lex_state = 0},
[1685] = {.lex_state = 48},
[1686] = {.lex_state = 48},
[1687] = {.lex_state = 48},
[1688] = {.lex_state = 48},
[1689] = {.lex_state = 48},
[1690] = {.lex_state = 48},
[1691] = {.lex_state = 48},
[1692] = {.lex_state = 48},
[1693] = {.lex_state = 48},
[1694] = {.lex_state = 48},
[1695] = {.lex_state = 48},
[1696] = {.lex_state = 48},
[1697] = {.lex_state = 48},
[1698] = {.lex_state = 48},
[1699] = {.lex_state = 48},
[1700] = {.lex_state = 0},
[1701] = {.lex_state = 48},
[1702] = {.lex_state = 48},
[1703] = {.lex_state = 0},
[1704] = {.lex_state = 48},
[1705] = {.lex_state = 48},
[1706] = {.lex_state = 48},
[1707] = {.lex_state = 48},
[1708] = {.lex_state = 48},
[1709] = {.lex_state = 0},
[1710] = {.lex_state = 48},
[1711] = {.lex_state = 0},
[1712] = {.lex_state = 48},
[1713] = {.lex_state = 0},
[1714] = {.lex_state = 48},
[1715] = {.lex_state = 48},
[1716] = {.lex_state = 48},
[1717] = {.lex_state = 0},
[1718] = {.lex_state = 48},
[1719] = {.lex_state = 48},
[1720] = {.lex_state = 48},
[1721] = {.lex_state = 48},
[1722] = {.lex_state = 48},
[1723] = {.lex_state = 48},
[1724] = {.lex_state = 48},
[1725] = {.lex_state = 48},
[1726] = {.lex_state = 48},
[1727] = {.lex_state = 48},
[1728] = {.lex_state = 48},
[1729] = {.lex_state = 0},
[1730] = {.lex_state = 48},
[1731] = {.lex_state = 48},
[1732] = {.lex_state = 48},
[1733] = {.lex_state = 48},
[1734] = {.lex_state = 48},
[1735] = {.lex_state = 0},
[1736] = {.lex_state = 48},
[1737] = {.lex_state = 48},
[1738] = {.lex_state = 48},
[1739] = {.lex_state = 48},
[1740] = {.lex_state = 48},
[1741] = {.lex_state = 0},
[1742] = {.lex_state = 0},
[1743] = {.lex_state = 48},
[1744] = {.lex_state = 48},
[1745] = {.lex_state = 48},
[1746] = {.lex_state = 48},
[1747] = {.lex_state = 48},
[1748] = {.lex_state = 48},
[1749] = {.lex_state = 48},
[1750] = {.lex_state = 48},
[1751] = {.lex_state = 48},
[1752] = {.lex_state = 48},
[1753] = {.lex_state = 48},
[1754] = {.lex_state = 48},
[1755] = {.lex_state = 48},
[1756] = {.lex_state = 48},
[1757] = {.lex_state = 48},
[1758] = {.lex_state = 48},
[1759] = {.lex_state = 48},
[1760] = {.lex_state = 48},
[1761] = {.lex_state = 0},
[1762] = {.lex_state = 48},
[1763] = {.lex_state = 0},
[1764] = {.lex_state = 48},
[1765] = {.lex_state = 0},
[1766] = {.lex_state = 0},
[1767] = {.lex_state = 0},
[1768] = {.lex_state = 48},
[1769] = {.lex_state = 48},
[1770] = {.lex_state = 48},
[1771] = {.lex_state = 48},
[1772] = {.lex_state = 48},
[1773] = {.lex_state = 48},
[1774] = {.lex_state = 48},
[1775] = {.lex_state = 48},
[1776] = {.lex_state = 48},
[1777] = {.lex_state = 0},
[1778] = {.lex_state = 48},
[1779] = {.lex_state = 0},
[1780] = {.lex_state = 48},
[1781] = {.lex_state = 48},
[1782] = {.lex_state = 48},
[1783] = {.lex_state = 48},
[1784] = {.lex_state = 48},
[1785] = {.lex_state = 48},
[1786] = {.lex_state = 48},
[1787] = {.lex_state = 48},
[1788] = {.lex_state = 48},
[1789] = {.lex_state = 48},
[1790] = {.lex_state = 48},
[1791] = {.lex_state = 0},
[1792] = {.lex_state = 48},
[1793] = {.lex_state = 7},
[1794] = {.lex_state = 0},
[1795] = {.lex_state = 48},
[1796] = {.lex_state = 0},
[1797] = {.lex_state = 48},
[1798] = {.lex_state = 48},
[1799] = {.lex_state = 48},
[1800] = {.lex_state = 48},
[1801] = {.lex_state = 48},
[1802] = {.lex_state = 48},
[1803] = {.lex_state = 48},
[1804] = {.lex_state = 0},
[1805] = {.lex_state = 48},
[1806] = {.lex_state = 0},
[1807] = {.lex_state = 48},
[1808] = {.lex_state = 48},
[1809] = {.lex_state = 48},
[1810] = {.lex_state = 48},
[1811] = {.lex_state = 48},
[1812] = {.lex_state = 48},
[1813] = {.lex_state = 48},
[1814] = {.lex_state = 48},
[1815] = {.lex_state = 48},
[1816] = {.lex_state = 48},
[1817] = {.lex_state = 48},
[1818] = {.lex_state = 48},
[1819] = {.lex_state = 48},
[1820] = {.lex_state = 48},
[1821] = {.lex_state = 48},
[1822] = {.lex_state = 0},
[1823] = {.lex_state = 48},
[1824] = {.lex_state = 48},
[1825] = {.lex_state = 48},
[1826] = {.lex_state = 48},
[1827] = {.lex_state = 48},
[1828] = {.lex_state = 0},
[1829] = {.lex_state = 48},
[1830] = {.lex_state = 48},
[1831] = {.lex_state = 48},
[1832] = {.lex_state = 48},
[1833] = {.lex_state = 48},
[1834] = {.lex_state = 48},
[1835] = {.lex_state = 48},
[1836] = {.lex_state = 48},
[1837] = {.lex_state = 48},
[1838] = {.lex_state = 48},
[1839] = {.lex_state = 48},
[1840] = {.lex_state = 48},
[1841] = {.lex_state = 0},
[1842] = {.lex_state = 0},
[1843] = {.lex_state = 48},
[1844] = {.lex_state = 48},
[1845] = {.lex_state = 48},
[1846] = {.lex_state = 48},
[1847] = {.lex_state = 48},
[1848] = {.lex_state = 48},
[1849] = {.lex_state = 48},
[1850] = {.lex_state = 48},
[1851] = {.lex_state = 0},
[1852] = {.lex_state = 48},
[1853] = {.lex_state = 48},
[1854] = {.lex_state = 48},
[1855] = {.lex_state = 48},
[1856] = {.lex_state = 48},
[1857] = {.lex_state = 48},
[1858] = {.lex_state = 48},
[1859] = {.lex_state = 48},
[1860] = {.lex_state = 0},
[1861] = {.lex_state = 48},
[1862] = {.lex_state = 0},
[1863] = {.lex_state = 48},
[1864] = {.lex_state = 0},
[1865] = {.lex_state = 48},
[1866] = {.lex_state = 48},
[1867] = {.lex_state = 48},
[1868] = {.lex_state = 0},
[1869] = {.lex_state = 48},
[1870] = {.lex_state = 0},
[1871] = {.lex_state = 48},
[1872] = {.lex_state = 48},
[1873] = {.lex_state = 48},
[1874] = {.lex_state = 48},
[1875] = {.lex_state = 48},
[1876] = {.lex_state = 48},
[1877] = {.lex_state = 48},
[1878] = {.lex_state = 48},
[1879] = {.lex_state = 48},
[1880] = {.lex_state = 48},
[1881] = {.lex_state = 48},
[1882] = {.lex_state = 0},
[1883] = {.lex_state = 0},
[1884] = {.lex_state = 48},
[1885] = {.lex_state = 0},
[1886] = {.lex_state = 48},
[1887] = {.lex_state = 48},
[1888] = {.lex_state = 48},
[1889] = {.lex_state = 48},
[1890] = {.lex_state = 48},
[1891] = {.lex_state = 0},
[1892] = {.lex_state = 48},
[1893] = {.lex_state = 48},
[1894] = {.lex_state = 0},
[1895] = {.lex_state = 0},
[1896] = {.lex_state = 0},
[1897] = {.lex_state = 0},
[1898] = {.lex_state = 48},
[1899] = {.lex_state = 48},
[1900] = {.lex_state = 48},
[1901] = {.lex_state = 48},
[1902] = {.lex_state = 48},
[1903] = {.lex_state = 48},
[1904] = {.lex_state = 48},
[1905] = {.lex_state = 48},
[1906] = {.lex_state = 0},
[1907] = {.lex_state = 0},
[1908] = {.lex_state = 48},
[1909] = {.lex_state = 0},
[1910] = {.lex_state = 0},
[1911] = {.lex_state = 0},
[1912] = {.lex_state = 48},
[1913] = {.lex_state = 48},
[1914] = {.lex_state = 0},
[1915] = {.lex_state = 48},
[1916] = {.lex_state = 48},
[1917] = {.lex_state = 48},
[1918] = {.lex_state = 48},
[1919] = {.lex_state = 48},
[1920] = {.lex_state = 48},
[1921] = {.lex_state = 48},
[1922] = {.lex_state = 48},
[1923] = {.lex_state = 0},
[1924] = {.lex_state = 48},
[1925] = {.lex_state = 48},
[1926] = {.lex_state = 48},
[1927] = {.lex_state = 48},
[1928] = {.lex_state = 48},
[1929] = {.lex_state = 0},
[1930] = {.lex_state = 0},
[1931] = {.lex_state = 0},
[1932] = {.lex_state = 48},
[1933] = {.lex_state = 0},
[1934] = {.lex_state = 0},
[1935] = {.lex_state = 48},
[1936] = {.lex_state = 48},
[1937] = {.lex_state = 48},
[1938] = {.lex_state = 48},
[1939] = {.lex_state = 48},
[1940] = {.lex_state = 48},
[1941] = {.lex_state = 48},
[1942] = {.lex_state = 48},
[1943] = {.lex_state = 48},
[1944] = {.lex_state = 48},
[1945] = {.lex_state = 48},
[1946] = {.lex_state = 48},
[1947] = {.lex_state = 48},
[1948] = {.lex_state = 48},
[1949] = {.lex_state = 48},
[1950] = {.lex_state = 48},
[1951] = {.lex_state = 0},
[1952] = {.lex_state = 48},
[1953] = {.lex_state = 0},
[1954] = {.lex_state = 48},
[1955] = {.lex_state = 48},
[1956] = {.lex_state = 48},
[1957] = {.lex_state = 48},
[1958] = {.lex_state = 48},
[1959] = {.lex_state = 48},
[1960] = {.lex_state = 48},
[1961] = {.lex_state = 48},
[1962] = {.lex_state = 48},
[1963] = {.lex_state = 48},
[1964] = {.lex_state = 48},
[1965] = {.lex_state = 48},
[1966] = {.lex_state = 48},
[1967] = {.lex_state = 48},
[1968] = {.lex_state = 48},
[1969] = {.lex_state = 0},
[1970] = {.lex_state = 48},
[1971] = {.lex_state = 48},
[1972] = {.lex_state = 48},
[1973] = {.lex_state = 48},
[1974] = {.lex_state = 48},
[1975] = {.lex_state = 48},
[1976] = {.lex_state = 48},
[1977] = {.lex_state = 48},
[1978] = {.lex_state = 48},
[1979] = {.lex_state = 48},
[1980] = {.lex_state = 0},
[1981] = {.lex_state = 48},
[1982] = {.lex_state = 48},
[1983] = {.lex_state = 48},
[1984] = {.lex_state = 48},
[1985] = {.lex_state = 48},
[1986] = {.lex_state = 48},
[1987] = {.lex_state = 48},
[1988] = {.lex_state = 48},
[1989] = {.lex_state = 48},
[1990] = {.lex_state = 48},
[1991] = {.lex_state = 48},
[1992] = {.lex_state = 48},
[1993] = {.lex_state = 48},
[1994] = {.lex_state = 48},
[1995] = {.lex_state = 48},
[1996] = {.lex_state = 48},
[1997] = {.lex_state = 48},
[1998] = {.lex_state = 0},
[1999] = {.lex_state = 48},
[2000] = {.lex_state = 48},
[2001] = {.lex_state = 48},
[2002] = {.lex_state = 48},
[2003] = {.lex_state = 48},
[2004] = {.lex_state = 48},
[2005] = {.lex_state = 0},
[2006] = {.lex_state = 0},
[2007] = {.lex_state = 48},
[2008] = {.lex_state = 0},
[2009] = {.lex_state = 48},
[2010] = {.lex_state = 48},
[2011] = {.lex_state = 48},
[2012] = {.lex_state = 48},
[2013] = {.lex_state = 48},
[2014] = {.lex_state = 48},
[2015] = {.lex_state = 48},
[2016] = {.lex_state = 48},
[2017] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym_gnatprep_identifier] = ACTIONS(1),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(1),
[sym_numeric_literal] = ACTIONS(1),
[aux_sym_git_conflict_mark_token1] = ACTIONS(1),
[aux_sym_git_conflict_mark_token2] = ACTIONS(1),
[aux_sym_git_conflict_mark_token3] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_SLASH_EQ] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_AMP] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_mod] = ACTIONS(1),
[anon_sym_rem] = ACTIONS(1),
[sym_tick] = ACTIONS(1),
[anon_sym_DOT] = ACTIONS(1),
[sym_target_name] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[aux_sym_value_sequence_token1] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[aux_sym_chunk_specification_token1] = ACTIONS(1),
[aux_sym_iterated_element_association_token1] = ACTIONS(1),
[aux_sym_iterated_element_association_token2] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[aux_sym_loop_parameter_specification_token1] = ACTIONS(1),
[aux_sym_iterator_filter_token1] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[aux_sym_iterator_specification_token1] = ACTIONS(1),
[aux_sym_attribute_designator_token1] = ACTIONS(1),
[aux_sym_attribute_designator_token2] = ACTIONS(1),
[aux_sym_attribute_designator_token3] = ACTIONS(1),
[aux_sym_attribute_designator_token4] = ACTIONS(1),
[aux_sym_compilation_unit_token1] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[aux_sym_package_specification_token1] = ACTIONS(1),
[aux_sym_package_specification_token2] = ACTIONS(1),
[aux_sym_package_specification_token3] = ACTIONS(1),
[aux_sym_with_clause_token1] = ACTIONS(1),
[aux_sym_with_clause_token2] = ACTIONS(1),
[aux_sym_use_clause_token1] = ACTIONS(1),
[aux_sym_use_clause_token2] = ACTIONS(1),
[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),
[aux_sym_expression_token2] = ACTIONS(1),
[aux_sym_expression_token3] = ACTIONS(1),
[aux_sym_expression_token4] = ACTIONS(1),
[aux_sym_expression_token5] = ACTIONS(1),
[aux_sym_relation_membership_token1] = ACTIONS(1),
[aux_sym_raise_expression_token1] = ACTIONS(1),
[anon_sym_STAR_STAR] = ACTIONS(1),
[aux_sym_factor_abs_token1] = ACTIONS(1),
[aux_sym_primary_null_token1] = ACTIONS(1),
[aux_sym_allocator_token1] = ACTIONS(1),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(1),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(1),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(1),
[aux_sym_general_access_modifier_token1] = ACTIONS(1),
[anon_sym_LT_GT] = ACTIONS(1),
[aux_sym_declare_expression_token1] = ACTIONS(1),
[aux_sym_quantifier_token1] = ACTIONS(1),
[aux_sym_case_expression_token1] = ACTIONS(1),
[aux_sym_component_choice_list_token1] = ACTIONS(1),
[aux_sym_record_component_association_list_token1] = ACTIONS(1),
[aux_sym_private_type_declaration_token1] = ACTIONS(1),
[aux_sym_private_type_declaration_token2] = ACTIONS(1),
[aux_sym_private_extension_declaration_token1] = ACTIONS(1),
[aux_sym_array_type_definition_token1] = ACTIONS(1),
[aux_sym_interface_type_definition_token1] = ACTIONS(1),
[aux_sym_interface_type_definition_token2] = ACTIONS(1),
[aux_sym_component_list_token1] = ACTIONS(1),
[aux_sym_component_definition_token1] = ACTIONS(1),
[aux_sym__aspect_mark_token1] = ACTIONS(1),
[anon_sym_COLON_EQ] = ACTIONS(1),
[aux_sym_at_clause_token1] = ACTIONS(1),
[aux_sym_entry_declaration_token1] = ACTIONS(1),
[aux_sym_exception_declaration_token1] = ACTIONS(1),
[aux_sym_generic_formal_part_token1] = ACTIONS(1),
[anon_sym_null] = ACTIONS(1),
[anon_sym_all] = ACTIONS(1),
[aux_sym_global_mode_token1] = ACTIONS(1),
[anon_sym_LT_LT] = ACTIONS(1),
[anon_sym_GT_GT] = ACTIONS(1),
[aux_sym_non_empty_mode_token1] = ACTIONS(1),
[aux_sym_pragma_g_token1] = ACTIONS(1),
[aux_sym_if_expression_token1] = ACTIONS(1),
[aux_sym_elsif_expression_item_token1] = ACTIONS(1),
[aux_sym_object_renaming_declaration_token1] = ACTIONS(1),
[aux_sym_result_profile_token1] = ACTIONS(1),
[aux_sym_asynchronous_select_token1] = ACTIONS(1),
[aux_sym_asynchronous_select_token2] = ACTIONS(1),
[aux_sym_terminate_alternative_token1] = ACTIONS(1),
[aux_sym_requeue_statement_token1] = ACTIONS(1),
[aux_sym_accept_statement_token1] = ACTIONS(1),
[aux_sym_accept_statement_token2] = ACTIONS(1),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(1),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(1),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(1),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(1),
[aux_sym_exit_statement_token1] = ACTIONS(1),
[aux_sym_goto_statement_token1] = ACTIONS(1),
[aux_sym_delay_until_statement_token1] = ACTIONS(1),
[aux_sym_delay_until_statement_token2] = ACTIONS(1),
[aux_sym_loop_statement_token1] = ACTIONS(1),
[aux_sym_iteration_scheme_token1] = ACTIONS(1),
[aux_sym_subtype_declaration_token1] = ACTIONS(1),
},
[1] = {
[sym_compilation] = STATE(2008),
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym__defining_identifier_list] = STATE(2006),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_compilation_unit] = STATE(2),
[sym__declarative_item] = STATE(488),
[sym__basic_declarative_item] = STATE(488),
[sym__basic_declaration] = STATE(488),
[sym__package_declaration] = STATE(488),
[sym_package_specification] = STATE(2003),
[sym_with_clause] = STATE(488),
[sym_use_clause] = STATE(488),
[sym_subunit] = STATE(488),
[sym__proper_body] = STATE(488),
[sym_subprogram_body] = STATE(488),
[sym_package_body] = STATE(488),
[sym__type_declaration] = STATE(488),
[sym_full_type_declaration] = STATE(488),
[sym_private_type_declaration] = STATE(488),
[sym_private_extension_declaration] = STATE(488),
[sym_incomplete_type_declaration] = STATE(488),
[sym__aspect_clause] = STATE(488),
[sym_at_clause] = STATE(488),
[sym_attribute_definition_clause] = STATE(488),
[sym_body_stub] = STATE(488),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(488),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(488),
[sym_protected_body_stub] = STATE(261),
[sym_entry_declaration] = STATE(488),
[sym_enumeration_representation_clause] = STATE(488),
[sym_exception_declaration] = STATE(488),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(488),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(488),
[sym_generic_package_declaration] = STATE(488),
[sym_generic_instantiation] = STATE(488),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_procedure_declaration] = STATE(488),
[sym_null_statement] = STATE(488),
[sym_number_declaration] = STATE(488),
[sym_object_declaration] = STATE(488),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(983),
[sym_pragma_g] = STATE(488),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(488),
[sym__renaming_declaration] = STATE(488),
[sym_object_renaming_declaration] = STATE(488),
[sym_exception_renaming_declaration] = STATE(488),
[sym_package_renaming_declaration] = STATE(488),
[sym_subprogram_renaming_declaration] = STATE(488),
[sym_generic_renaming_declaration] = STATE(488),
[sym__simple_statement] = STATE(488),
[sym__statement] = STATE(488),
[sym__compound_statement] = STATE(488),
[sym__select_statement] = STATE(488),
[sym_asynchronous_select] = STATE(488),
[sym_conditional_entry_call] = STATE(488),
[sym_timed_entry_call] = STATE(488),
[sym_selective_accept] = STATE(488),
[sym_abort_statement] = STATE(488),
[sym_requeue_statement] = STATE(488),
[sym_accept_statement] = STATE(488),
[sym_case_statement] = STATE(488),
[sym_block_statement] = STATE(488),
[sym_if_statement] = STATE(488),
[sym_gnatprep_if_statement] = STATE(488),
[sym_exit_statement] = STATE(488),
[sym_goto_statement] = STATE(488),
[sym__delay_statement] = STATE(488),
[sym_delay_until_statement] = STATE(488),
[sym_delay_relative_statement] = STATE(488),
[sym_simple_return_statement] = STATE(488),
[sym_extended_return_statement] = STATE(488),
[sym_procedure_call_statement] = STATE(488),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(488),
[sym_loop_statement] = STATE(488),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(488),
[sym_subprogram_declaration] = STATE(488),
[sym_expression_function_declaration] = STATE(488),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(488),
[aux_sym_compilation_repeat1] = STATE(2),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[ts_builtin_sym_end] = ACTIONS(5),
[sym_identifier] = ACTIONS(7),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(13),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_compilation_unit_token1] = ACTIONS(17),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_with_clause_token1] = ACTIONS(21),
[aux_sym_with_clause_token2] = ACTIONS(23),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subunit_token1] = ACTIONS(27),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[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_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_entry_declaration_token1] = ACTIONS(49),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[2] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym__defining_identifier_list] = STATE(2006),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_compilation_unit] = STATE(3),
[sym__declarative_item] = STATE(488),
[sym__basic_declarative_item] = STATE(488),
[sym__basic_declaration] = STATE(488),
[sym__package_declaration] = STATE(488),
[sym_package_specification] = STATE(2003),
[sym_with_clause] = STATE(488),
[sym_use_clause] = STATE(488),
[sym_subunit] = STATE(488),
[sym__proper_body] = STATE(488),
[sym_subprogram_body] = STATE(488),
[sym_package_body] = STATE(488),
[sym__type_declaration] = STATE(488),
[sym_full_type_declaration] = STATE(488),
[sym_private_type_declaration] = STATE(488),
[sym_private_extension_declaration] = STATE(488),
[sym_incomplete_type_declaration] = STATE(488),
[sym__aspect_clause] = STATE(488),
[sym_at_clause] = STATE(488),
[sym_attribute_definition_clause] = STATE(488),
[sym_body_stub] = STATE(488),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(488),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(488),
[sym_protected_body_stub] = STATE(261),
[sym_entry_declaration] = STATE(488),
[sym_enumeration_representation_clause] = STATE(488),
[sym_exception_declaration] = STATE(488),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(488),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(488),
[sym_generic_package_declaration] = STATE(488),
[sym_generic_instantiation] = STATE(488),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_procedure_declaration] = STATE(488),
[sym_null_statement] = STATE(488),
[sym_number_declaration] = STATE(488),
[sym_object_declaration] = STATE(488),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(983),
[sym_pragma_g] = STATE(488),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(488),
[sym__renaming_declaration] = STATE(488),
[sym_object_renaming_declaration] = STATE(488),
[sym_exception_renaming_declaration] = STATE(488),
[sym_package_renaming_declaration] = STATE(488),
[sym_subprogram_renaming_declaration] = STATE(488),
[sym_generic_renaming_declaration] = STATE(488),
[sym__simple_statement] = STATE(488),
[sym__statement] = STATE(488),
[sym__compound_statement] = STATE(488),
[sym__select_statement] = STATE(488),
[sym_asynchronous_select] = STATE(488),
[sym_conditional_entry_call] = STATE(488),
[sym_timed_entry_call] = STATE(488),
[sym_selective_accept] = STATE(488),
[sym_abort_statement] = STATE(488),
[sym_requeue_statement] = STATE(488),
[sym_accept_statement] = STATE(488),
[sym_case_statement] = STATE(488),
[sym_block_statement] = STATE(488),
[sym_if_statement] = STATE(488),
[sym_gnatprep_if_statement] = STATE(488),
[sym_exit_statement] = STATE(488),
[sym_goto_statement] = STATE(488),
[sym__delay_statement] = STATE(488),
[sym_delay_until_statement] = STATE(488),
[sym_delay_relative_statement] = STATE(488),
[sym_simple_return_statement] = STATE(488),
[sym_extended_return_statement] = STATE(488),
[sym_procedure_call_statement] = STATE(488),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(488),
[sym_loop_statement] = STATE(488),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(488),
[sym_subprogram_declaration] = STATE(488),
[sym_expression_function_declaration] = STATE(488),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(488),
[aux_sym_compilation_repeat1] = STATE(3),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[ts_builtin_sym_end] = ACTIONS(85),
[sym_identifier] = ACTIONS(7),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(13),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_compilation_unit_token1] = ACTIONS(17),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_with_clause_token1] = ACTIONS(21),
[aux_sym_with_clause_token2] = ACTIONS(23),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subunit_token1] = ACTIONS(27),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[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_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_entry_declaration_token1] = ACTIONS(49),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[3] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym__defining_identifier_list] = STATE(2006),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_compilation_unit] = STATE(3),
[sym__declarative_item] = STATE(488),
[sym__basic_declarative_item] = STATE(488),
[sym__basic_declaration] = STATE(488),
[sym__package_declaration] = STATE(488),
[sym_package_specification] = STATE(2003),
[sym_with_clause] = STATE(488),
[sym_use_clause] = STATE(488),
[sym_subunit] = STATE(488),
[sym__proper_body] = STATE(488),
[sym_subprogram_body] = STATE(488),
[sym_package_body] = STATE(488),
[sym__type_declaration] = STATE(488),
[sym_full_type_declaration] = STATE(488),
[sym_private_type_declaration] = STATE(488),
[sym_private_extension_declaration] = STATE(488),
[sym_incomplete_type_declaration] = STATE(488),
[sym__aspect_clause] = STATE(488),
[sym_at_clause] = STATE(488),
[sym_attribute_definition_clause] = STATE(488),
[sym_body_stub] = STATE(488),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(488),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(488),
[sym_protected_body_stub] = STATE(261),
[sym_entry_declaration] = STATE(488),
[sym_enumeration_representation_clause] = STATE(488),
[sym_exception_declaration] = STATE(488),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(488),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(488),
[sym_generic_package_declaration] = STATE(488),
[sym_generic_instantiation] = STATE(488),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_procedure_declaration] = STATE(488),
[sym_null_statement] = STATE(488),
[sym_number_declaration] = STATE(488),
[sym_object_declaration] = STATE(488),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(983),
[sym_pragma_g] = STATE(488),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(488),
[sym__renaming_declaration] = STATE(488),
[sym_object_renaming_declaration] = STATE(488),
[sym_exception_renaming_declaration] = STATE(488),
[sym_package_renaming_declaration] = STATE(488),
[sym_subprogram_renaming_declaration] = STATE(488),
[sym_generic_renaming_declaration] = STATE(488),
[sym__simple_statement] = STATE(488),
[sym__statement] = STATE(488),
[sym__compound_statement] = STATE(488),
[sym__select_statement] = STATE(488),
[sym_asynchronous_select] = STATE(488),
[sym_conditional_entry_call] = STATE(488),
[sym_timed_entry_call] = STATE(488),
[sym_selective_accept] = STATE(488),
[sym_abort_statement] = STATE(488),
[sym_requeue_statement] = STATE(488),
[sym_accept_statement] = STATE(488),
[sym_case_statement] = STATE(488),
[sym_block_statement] = STATE(488),
[sym_if_statement] = STATE(488),
[sym_gnatprep_if_statement] = STATE(488),
[sym_exit_statement] = STATE(488),
[sym_goto_statement] = STATE(488),
[sym__delay_statement] = STATE(488),
[sym_delay_until_statement] = STATE(488),
[sym_delay_relative_statement] = STATE(488),
[sym_simple_return_statement] = STATE(488),
[sym_extended_return_statement] = STATE(488),
[sym_procedure_call_statement] = STATE(488),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(488),
[sym_loop_statement] = STATE(488),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(488),
[sym_subprogram_declaration] = STATE(488),
[sym_expression_function_declaration] = STATE(488),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(488),
[aux_sym_compilation_repeat1] = STATE(3),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[ts_builtin_sym_end] = ACTIONS(87),
[sym_identifier] = ACTIONS(89),
[sym_gnatprep_identifier] = ACTIONS(92),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(92),
[sym_character_literal] = ACTIONS(92),
[sym_target_name] = ACTIONS(92),
[anon_sym_LBRACK] = ACTIONS(95),
[aux_sym_iterated_element_association_token1] = ACTIONS(98),
[aux_sym_iterated_element_association_token2] = ACTIONS(101),
[aux_sym_compilation_unit_token1] = ACTIONS(104),
[aux_sym_package_specification_token1] = ACTIONS(107),
[aux_sym_with_clause_token1] = ACTIONS(110),
[aux_sym_with_clause_token2] = ACTIONS(113),
[aux_sym_use_clause_token2] = ACTIONS(116),
[aux_sym_subunit_token1] = ACTIONS(119),
[aux_sym_subprogram_body_token1] = ACTIONS(122),
[aux_sym_relation_membership_token1] = ACTIONS(125),
[aux_sym_raise_expression_token1] = ACTIONS(128),
[aux_sym_primary_null_token1] = ACTIONS(131),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(134),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(137),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(140),
[aux_sym_declare_expression_token1] = ACTIONS(143),
[aux_sym_case_expression_token1] = ACTIONS(146),
[aux_sym_interface_type_definition_token1] = ACTIONS(149),
[aux_sym_entry_declaration_token1] = ACTIONS(152),
[aux_sym_generic_formal_part_token1] = ACTIONS(155),
[aux_sym_global_mode_token1] = ACTIONS(158),
[anon_sym_LT_LT] = ACTIONS(161),
[aux_sym_pragma_g_token1] = ACTIONS(164),
[aux_sym_if_expression_token1] = ACTIONS(167),
[aux_sym_result_profile_token1] = ACTIONS(170),
[aux_sym_asynchronous_select_token1] = ACTIONS(173),
[aux_sym_asynchronous_select_token2] = ACTIONS(176),
[aux_sym_requeue_statement_token1] = ACTIONS(179),
[aux_sym_accept_statement_token1] = ACTIONS(182),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(185),
[aux_sym_exit_statement_token1] = ACTIONS(188),
[aux_sym_goto_statement_token1] = ACTIONS(191),
[aux_sym_delay_until_statement_token1] = ACTIONS(194),
[aux_sym_loop_statement_token1] = ACTIONS(197),
[aux_sym_iteration_scheme_token1] = ACTIONS(200),
[aux_sym_subtype_declaration_token1] = ACTIONS(203),
},
[4] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(10),
[sym_null_statement] = STATE(7),
[sym_pragma_g] = STATE(7),
[sym__simple_statement] = STATE(7),
[sym__statement] = STATE(7),
[sym__compound_statement] = STATE(7),
[sym__select_statement] = STATE(7),
[sym_asynchronous_select] = STATE(7),
[sym_conditional_entry_call] = STATE(7),
[sym_timed_entry_call] = STATE(7),
[sym_selective_accept] = STATE(7),
[sym_abort_statement] = STATE(7),
[sym_requeue_statement] = STATE(7),
[sym_accept_statement] = STATE(7),
[sym_case_statement] = STATE(7),
[sym_block_statement] = STATE(7),
[sym_if_statement] = STATE(7),
[sym_gnatprep_if_statement] = STATE(7),
[sym_exit_statement] = STATE(7),
[sym_goto_statement] = STATE(7),
[sym__delay_statement] = STATE(7),
[sym_delay_until_statement] = STATE(7),
[sym_delay_relative_statement] = STATE(7),
[sym_simple_return_statement] = STATE(7),
[sym_extended_return_statement] = STATE(7),
[sym_procedure_call_statement] = STATE(7),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(7),
[sym_loop_statement] = STATE(7),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(7),
[aux_sym__sequence_of_statements_repeat1] = STATE(7),
[aux_sym__sequence_of_statements_repeat2] = STATE(10),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_iterator_filter_token1] = ACTIONS(210),
[aux_sym_package_specification_token3] = ACTIONS(210),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token2] = ACTIONS(210),
[aux_sym_expression_token3] = ACTIONS(210),
[aux_sym_expression_token4] = ACTIONS(210),
[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(210),
[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(210),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(210),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(210),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(210),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[5] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(5),
[sym__basic_declarative_item] = STATE(5),
[sym__basic_declaration] = STATE(5),
[sym__package_declaration] = STATE(5),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(5),
[sym__proper_body] = STATE(5),
[sym_subprogram_body] = STATE(5),
[sym_package_body] = STATE(5),
[sym__type_declaration] = STATE(5),
[sym_full_type_declaration] = STATE(5),
[sym_private_type_declaration] = STATE(5),
[sym_private_extension_declaration] = STATE(5),
[sym_incomplete_type_declaration] = STATE(5),
[sym__aspect_clause] = STATE(5),
[sym_at_clause] = STATE(5),
[sym_attribute_definition_clause] = STATE(5),
[sym_body_stub] = STATE(5),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(5),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(5),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(5),
[sym_enumeration_representation_clause] = STATE(5),
[sym_exception_declaration] = STATE(5),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(5),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(5),
[sym_generic_package_declaration] = STATE(5),
[sym_generic_instantiation] = STATE(5),
[sym_null_procedure_declaration] = STATE(5),
[sym_number_declaration] = STATE(5),
[sym_object_declaration] = STATE(5),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(5),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(5),
[sym__renaming_declaration] = STATE(5),
[sym_object_renaming_declaration] = STATE(5),
[sym_exception_renaming_declaration] = STATE(5),
[sym_package_renaming_declaration] = STATE(5),
[sym_subprogram_renaming_declaration] = STATE(5),
[sym_generic_renaming_declaration] = STATE(5),
[sym_gnatprep_declarative_if_statement] = STATE(5),
[sym_subprogram_declaration] = STATE(5),
[sym_expression_function_declaration] = STATE(5),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(5),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(5),
[sym_identifier] = ACTIONS(212),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(215),
[aux_sym_iterated_element_association_token2] = ACTIONS(218),
[aux_sym_package_specification_token1] = ACTIONS(221),
[aux_sym_package_specification_token3] = ACTIONS(224),
[aux_sym_use_clause_token2] = ACTIONS(226),
[aux_sym_subprogram_body_token1] = ACTIONS(224),
[aux_sym_relation_membership_token1] = ACTIONS(229),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(232),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(235),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(238),
[aux_sym_interface_type_definition_token1] = ACTIONS(241),
[aux_sym_generic_formal_part_token1] = ACTIONS(244),
[aux_sym_global_mode_token1] = ACTIONS(247),
[aux_sym_pragma_g_token1] = ACTIONS(250),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(253),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(224),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(224),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(224),
[aux_sym_subtype_declaration_token1] = ACTIONS(256),
},
[6] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(5),
[sym__basic_declarative_item] = STATE(5),
[sym__basic_declaration] = STATE(5),
[sym__package_declaration] = STATE(5),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(5),
[sym__proper_body] = STATE(5),
[sym_subprogram_body] = STATE(5),
[sym_package_body] = STATE(5),
[sym__type_declaration] = STATE(5),
[sym_full_type_declaration] = STATE(5),
[sym_private_type_declaration] = STATE(5),
[sym_private_extension_declaration] = STATE(5),
[sym_incomplete_type_declaration] = STATE(5),
[sym__aspect_clause] = STATE(5),
[sym_at_clause] = STATE(5),
[sym_attribute_definition_clause] = STATE(5),
[sym_body_stub] = STATE(5),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(5),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(5),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(5),
[sym_enumeration_representation_clause] = STATE(5),
[sym_exception_declaration] = STATE(5),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(5),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(5),
[sym_generic_package_declaration] = STATE(5),
[sym_generic_instantiation] = STATE(5),
[sym_null_procedure_declaration] = STATE(5),
[sym_number_declaration] = STATE(5),
[sym_object_declaration] = STATE(5),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(5),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(5),
[sym__renaming_declaration] = STATE(5),
[sym_object_renaming_declaration] = STATE(5),
[sym_exception_renaming_declaration] = STATE(5),
[sym_package_renaming_declaration] = STATE(5),
[sym_subprogram_renaming_declaration] = STATE(5),
[sym_generic_renaming_declaration] = STATE(5),
[sym_gnatprep_declarative_if_statement] = STATE(5),
[sym_subprogram_declaration] = STATE(5),
[sym_expression_function_declaration] = STATE(5),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(5),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(5),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_package_specification_token3] = ACTIONS(263),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subprogram_body_token1] = ACTIONS(263),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(263),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(263),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(263),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[7] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(7),
[sym_pragma_g] = STATE(7),
[sym__simple_statement] = STATE(7),
[sym__statement] = STATE(7),
[sym__compound_statement] = STATE(7),
[sym__select_statement] = STATE(7),
[sym_asynchronous_select] = STATE(7),
[sym_conditional_entry_call] = STATE(7),
[sym_timed_entry_call] = STATE(7),
[sym_selective_accept] = STATE(7),
[sym_abort_statement] = STATE(7),
[sym_requeue_statement] = STATE(7),
[sym_accept_statement] = STATE(7),
[sym_case_statement] = STATE(7),
[sym_block_statement] = STATE(7),
[sym_if_statement] = STATE(7),
[sym_gnatprep_if_statement] = STATE(7),
[sym_exit_statement] = STATE(7),
[sym_goto_statement] = STATE(7),
[sym__delay_statement] = STATE(7),
[sym_delay_until_statement] = STATE(7),
[sym_delay_relative_statement] = STATE(7),
[sym_simple_return_statement] = STATE(7),
[sym_extended_return_statement] = STATE(7),
[sym_procedure_call_statement] = STATE(7),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(7),
[sym_loop_statement] = STATE(7),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(7),
[aux_sym__sequence_of_statements_repeat1] = STATE(7),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(267),
[sym_gnatprep_identifier] = ACTIONS(270),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(270),
[sym_character_literal] = ACTIONS(270),
[sym_target_name] = ACTIONS(270),
[anon_sym_LBRACK] = ACTIONS(273),
[aux_sym_iterated_element_association_token1] = ACTIONS(276),
[aux_sym_iterator_filter_token1] = ACTIONS(279),
[aux_sym_package_specification_token3] = ACTIONS(279),
[aux_sym_subprogram_body_token1] = ACTIONS(281),
[aux_sym_expression_token2] = ACTIONS(279),
[aux_sym_expression_token3] = ACTIONS(279),
[aux_sym_expression_token4] = ACTIONS(279),
[aux_sym_raise_expression_token1] = ACTIONS(284),
[aux_sym_primary_null_token1] = ACTIONS(287),
[aux_sym_declare_expression_token1] = ACTIONS(290),
[aux_sym_case_expression_token1] = ACTIONS(293),
[aux_sym_exception_declaration_token1] = ACTIONS(279),
[anon_sym_LT_LT] = ACTIONS(296),
[aux_sym_pragma_g_token1] = ACTIONS(299),
[aux_sym_if_expression_token1] = ACTIONS(302),
[aux_sym_elsif_expression_item_token1] = ACTIONS(279),
[aux_sym_result_profile_token1] = ACTIONS(305),
[aux_sym_asynchronous_select_token1] = ACTIONS(308),
[aux_sym_asynchronous_select_token2] = ACTIONS(311),
[aux_sym_requeue_statement_token1] = ACTIONS(314),
[aux_sym_accept_statement_token1] = ACTIONS(317),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(320),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(279),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(279),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(279),
[aux_sym_exit_statement_token1] = ACTIONS(323),
[aux_sym_goto_statement_token1] = ACTIONS(326),
[aux_sym_delay_until_statement_token1] = ACTIONS(329),
[aux_sym_loop_statement_token1] = ACTIONS(332),
[aux_sym_iteration_scheme_token1] = ACTIONS(335),
},
[8] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1899),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(338),
[aux_sym_subprogram_body_token1] = ACTIONS(340),
[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(342),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[9] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1812),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(344),
[aux_sym_subprogram_body_token1] = ACTIONS(346),
[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(348),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[10] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(523),
[sym_null_statement] = STATE(147),
[sym_pragma_g] = STATE(147),
[sym__simple_statement] = STATE(147),
[sym__compound_statement] = STATE(147),
[sym__select_statement] = STATE(147),
[sym_asynchronous_select] = STATE(147),
[sym_conditional_entry_call] = STATE(147),
[sym_timed_entry_call] = STATE(147),
[sym_selective_accept] = STATE(147),
[sym_abort_statement] = STATE(147),
[sym_requeue_statement] = STATE(147),
[sym_accept_statement] = STATE(147),
[sym_case_statement] = STATE(147),
[sym_block_statement] = STATE(147),
[sym_if_statement] = STATE(147),
[sym_gnatprep_if_statement] = STATE(147),
[sym_exit_statement] = STATE(147),
[sym_goto_statement] = STATE(147),
[sym__delay_statement] = STATE(147),
[sym_delay_until_statement] = STATE(147),
[sym_delay_relative_statement] = STATE(147),
[sym_simple_return_statement] = STATE(147),
[sym_extended_return_statement] = STATE(147),
[sym_procedure_call_statement] = STATE(147),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(147),
[sym_loop_statement] = STATE(147),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(147),
[aux_sym__sequence_of_statements_repeat2] = STATE(523),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_iterator_filter_token1] = ACTIONS(350),
[aux_sym_package_specification_token3] = ACTIONS(350),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token2] = ACTIONS(350),
[aux_sym_expression_token3] = ACTIONS(350),
[aux_sym_expression_token4] = ACTIONS(350),
[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(350),
[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(350),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_gnatprep_declarative_if_statement_token2] = ACTIONS(350),
[aux_sym_gnatprep_declarative_if_statement_token3] = ACTIONS(350),
[aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(350),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[11] = {
[sym_unary_adding_operator] = STATE(508),
[sym__name] = STATE(500),
[sym_selected_component] = STATE(451),
[sym_slice] = STATE(451),
[sym__attribute_reference] = STATE(451),
[sym__reduction_attribute_reference] = STATE(451),
[sym_value_sequence] = STATE(2005),
[sym_iterated_element_association] = STATE(1197),
[sym_qualified_expression] = STATE(451),
[sym__subtype_indication] = STATE(1518),
[sym_range_g] = STATE(1522),
[sym_expression] = STATE(967),
[sym__relation] = STATE(573),
[sym_relation_membership] = STATE(573),
[sym_raise_expression] = STATE(573),
[sym__simple_expression] = STATE(620),
[sym_term] = STATE(528),
[sym__factor] = STATE(504),
[sym_factor_power] = STATE(504),
[sym_factor_abs] = STATE(504),
[sym_factor_not] = STATE(504),
[sym__parenthesized_expression] = STATE(506),
[sym__primary] = STATE(506),
[sym_primary_null] = STATE(506),
[sym_allocator] = STATE(506),
[sym__conditional_expression] = STATE(1906),
[sym_quantified_expression] = STATE(1906),
[sym_declare_expression] = STATE(1906),
[sym_case_expression] = STATE(1906),
[sym_component_choice_list] = STATE(1934),
[sym__aggregate] = STATE(506),
[sym__delta_aggregate] = STATE(506),
[sym_extension_aggregate] = STATE(506),
[sym_record_delta_aggregate] = STATE(506),
[sym_array_delta_aggregate] = STATE(506),
[sym_record_aggregate] = STATE(506),
[sym_record_component_association_list] = STATE(1933),
[sym__named_record_component_association] = STATE(1180),
[sym_null_exclusion] = STATE(771),
[sym__array_aggregate] = STATE(506),
[sym_positional_array_aggregate] = STATE(506),
[sym_null_array_aggregate] = STATE(506),
[sym_named_array_aggregate] = STATE(506),
[sym__array_component_association_list] = STATE(1931),
[sym_array_component_association] = STATE(1156),
[sym_discrete_choice_list] = STATE(1930),
[sym_discrete_choice] = STATE(1275),
[sym_global_aspect_element] = STATE(1341),
[sym_global_mode] = STATE(695),
[sym_non_empty_mode] = STATE(840),
[sym_if_expression] = STATE(1906),
[sym_function_call] = STATE(500),
[sym_identifier] = ACTIONS(352),
[sym_gnatprep_identifier] = ACTIONS(354),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(356),
[sym_character_literal] = ACTIONS(354),
[sym_numeric_literal] = ACTIONS(358),
[anon_sym_PLUS] = ACTIONS(360),
[anon_sym_DASH] = ACTIONS(362),
[sym_target_name] = ACTIONS(354),
[anon_sym_LPAREN] = ACTIONS(364),
[anon_sym_LBRACK] = ACTIONS(366),
[aux_sym_chunk_specification_token1] = ACTIONS(368),
[aux_sym_iterated_element_association_token1] = ACTIONS(370),
[aux_sym_relation_membership_token1] = ACTIONS(372),
[aux_sym_raise_expression_token1] = ACTIONS(374),
[aux_sym_factor_abs_token1] = ACTIONS(376),
[aux_sym_primary_null_token1] = ACTIONS(378),
[aux_sym_allocator_token1] = ACTIONS(380),
[aux_sym_declare_expression_token1] = ACTIONS(382),
[aux_sym_case_expression_token1] = ACTIONS(384),
[aux_sym_component_choice_list_token1] = ACTIONS(386),
[aux_sym_global_mode_token1] = ACTIONS(388),
[aux_sym_non_empty_mode_token1] = ACTIONS(390),
[aux_sym_if_expression_token1] = ACTIONS(392),
},
[12] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1899),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(340),
[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(342),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[13] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1383),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_package_specification_token3] = ACTIONS(394),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subprogram_body_token1] = ACTIONS(396),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[14] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1812),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(346),
[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(348),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[15] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1437),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_package_specification_token3] = ACTIONS(398),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subprogram_body_token1] = ACTIONS(400),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[16] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1752),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(402),
[aux_sym_subprogram_body_token1] = ACTIONS(404),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[17] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1899),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(340),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[18] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1637),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(406),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[19] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1812),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(346),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[20] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1689),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(408),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[21] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1752),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(404),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[22] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1986),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(410),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[23] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1973),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_subprogram_body_token1] = ACTIONS(412),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[24] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1849),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(414),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[25] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1925),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(416),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[26] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1902),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[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(418),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[27] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1178),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[28] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1110),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[29] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1537),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[30] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(6),
[sym__basic_declarative_item] = STATE(6),
[sym__basic_declaration] = STATE(6),
[sym__package_declaration] = STATE(6),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(6),
[sym__proper_body] = STATE(6),
[sym_subprogram_body] = STATE(6),
[sym_package_body] = STATE(6),
[sym__type_declaration] = STATE(6),
[sym_full_type_declaration] = STATE(6),
[sym_private_type_declaration] = STATE(6),
[sym_private_extension_declaration] = STATE(6),
[sym_incomplete_type_declaration] = STATE(6),
[sym__aspect_clause] = STATE(6),
[sym_at_clause] = STATE(6),
[sym_attribute_definition_clause] = STATE(6),
[sym_body_stub] = STATE(6),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(6),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(6),
[sym_protected_body_stub] = STATE(261),
[sym__declarative_item_pragma] = STATE(6),
[sym_non_empty_declarative_part] = STATE(1729),
[sym_enumeration_representation_clause] = STATE(6),
[sym_exception_declaration] = STATE(6),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(6),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(6),
[sym_generic_package_declaration] = STATE(6),
[sym_generic_instantiation] = STATE(6),
[sym_null_procedure_declaration] = STATE(6),
[sym_number_declaration] = STATE(6),
[sym_object_declaration] = STATE(6),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_pragma_g] = STATE(6),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(6),
[sym__renaming_declaration] = STATE(6),
[sym_object_renaming_declaration] = STATE(6),
[sym_exception_renaming_declaration] = STATE(6),
[sym_package_renaming_declaration] = STATE(6),
[sym_subprogram_renaming_declaration] = STATE(6),
[sym_generic_renaming_declaration] = STATE(6),
[sym_gnatprep_declarative_if_statement] = STATE(6),
[sym_subprogram_declaration] = STATE(6),
[sym_expression_function_declaration] = STATE(6),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(6),
[aux_sym_non_empty_declarative_part_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(265),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[31] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1080),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_package_specification_token3] = ACTIONS(420),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token2] = ACTIONS(422),
[aux_sym_expression_token3] = ACTIONS(420),
[aux_sym_expression_token4] = ACTIONS(420),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[32] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1205),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_package_specification_token3] = ACTIONS(424),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token3] = ACTIONS(424),
[aux_sym_expression_token4] = ACTIONS(424),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[33] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1186),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token2] = ACTIONS(422),
[aux_sym_expression_token3] = ACTIONS(426),
[aux_sym_expression_token4] = ACTIONS(426),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[34] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1190),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_package_specification_token3] = ACTIONS(420),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_expression_token3] = ACTIONS(420),
[aux_sym_expression_token4] = ACTIONS(420),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[35] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1926),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[36] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1678),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[37] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1694),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[38] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1639),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[39] = {
[sym_unary_adding_operator] = STATE(508),
[sym__name] = STATE(500),
[sym_selected_component] = STATE(451),
[sym_slice] = STATE(451),
[sym__attribute_reference] = STATE(451),
[sym__reduction_attribute_reference] = STATE(451),
[sym_value_sequence] = STATE(2005),
[sym_iterated_element_association] = STATE(1197),
[sym_qualified_expression] = STATE(451),
[sym__subtype_indication] = STATE(1518),
[sym_range_g] = STATE(1522),
[sym_expression] = STATE(967),
[sym__relation] = STATE(573),
[sym_relation_membership] = STATE(573),
[sym_raise_expression] = STATE(573),
[sym__simple_expression] = STATE(620),
[sym_term] = STATE(528),
[sym__factor] = STATE(504),
[sym_factor_power] = STATE(504),
[sym_factor_abs] = STATE(504),
[sym_factor_not] = STATE(504),
[sym__parenthesized_expression] = STATE(506),
[sym__primary] = STATE(506),
[sym_primary_null] = STATE(506),
[sym_allocator] = STATE(506),
[sym__conditional_expression] = STATE(1906),
[sym_quantified_expression] = STATE(1906),
[sym_declare_expression] = STATE(1906),
[sym_case_expression] = STATE(1906),
[sym_component_choice_list] = STATE(1934),
[sym__aggregate] = STATE(506),
[sym__delta_aggregate] = STATE(506),
[sym_extension_aggregate] = STATE(506),
[sym_record_delta_aggregate] = STATE(506),
[sym_array_delta_aggregate] = STATE(506),
[sym_record_aggregate] = STATE(506),
[sym_record_component_association_list] = STATE(1933),
[sym__named_record_component_association] = STATE(1180),
[sym_null_exclusion] = STATE(771),
[sym__array_aggregate] = STATE(506),
[sym_positional_array_aggregate] = STATE(506),
[sym_null_array_aggregate] = STATE(506),
[sym_named_array_aggregate] = STATE(506),
[sym__array_component_association_list] = STATE(1931),
[sym_array_component_association] = STATE(1156),
[sym_discrete_choice_list] = STATE(1930),
[sym_discrete_choice] = STATE(1275),
[sym_if_expression] = STATE(1906),
[sym_function_call] = STATE(500),
[sym_identifier] = ACTIONS(352),
[sym_gnatprep_identifier] = ACTIONS(354),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(356),
[sym_character_literal] = ACTIONS(354),
[sym_numeric_literal] = ACTIONS(358),
[anon_sym_PLUS] = ACTIONS(360),
[anon_sym_DASH] = ACTIONS(362),
[sym_target_name] = ACTIONS(354),
[anon_sym_LPAREN] = ACTIONS(364),
[anon_sym_LBRACK] = ACTIONS(366),
[aux_sym_iterated_element_association_token1] = ACTIONS(370),
[aux_sym_relation_membership_token1] = ACTIONS(372),
[aux_sym_raise_expression_token1] = ACTIONS(374),
[aux_sym_factor_abs_token1] = ACTIONS(376),
[aux_sym_primary_null_token1] = ACTIONS(378),
[aux_sym_allocator_token1] = ACTIONS(380),
[aux_sym_declare_expression_token1] = ACTIONS(382),
[aux_sym_case_expression_token1] = ACTIONS(384),
[aux_sym_component_choice_list_token1] = ACTIONS(386),
[aux_sym_if_expression_token1] = ACTIONS(392),
},
[40] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1722),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[41] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1940),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[42] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1800),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[43] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1609),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[44] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1702),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[45] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1753),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[46] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1574),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[47] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1809),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[48] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1783),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[49] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1990),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[50] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1992),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[51] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1564),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[52] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1648),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[53] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1827),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[54] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1667),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[55] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1970),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[56] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1867),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[57] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(2004),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[58] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_handled_sequence_of_statements] = STATE(1558),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1379),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[59] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1600),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[60] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1595),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[61] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1726),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[62] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1362),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[63] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1061),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[64] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1901),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[65] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1968),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[66] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1611),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[67] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1532),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[68] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1830),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[69] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1501),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[70] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1478),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[71] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1838),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[72] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1618),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[73] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1087),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[74] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1265),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[75] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1589),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[76] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1724),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[77] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(80),
[sym_null_statement] = STATE(4),
[sym_pragma_g] = STATE(4),
[sym__sequence_of_statements] = STATE(1815),
[sym__simple_statement] = STATE(4),
[sym__statement] = STATE(4),
[sym__compound_statement] = STATE(4),
[sym__select_statement] = STATE(4),
[sym_asynchronous_select] = STATE(4),
[sym_conditional_entry_call] = STATE(4),
[sym_timed_entry_call] = STATE(4),
[sym_selective_accept] = STATE(4),
[sym_abort_statement] = STATE(4),
[sym_requeue_statement] = STATE(4),
[sym_accept_statement] = STATE(4),
[sym_case_statement] = STATE(4),
[sym_block_statement] = STATE(4),
[sym_if_statement] = STATE(4),
[sym_gnatprep_if_statement] = STATE(4),
[sym_exit_statement] = STATE(4),
[sym_goto_statement] = STATE(4),
[sym__delay_statement] = STATE(4),
[sym_delay_until_statement] = STATE(4),
[sym_delay_relative_statement] = STATE(4),
[sym_simple_return_statement] = STATE(4),
[sym_extended_return_statement] = STATE(4),
[sym_procedure_call_statement] = STATE(4),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(4),
[sym_loop_statement] = STATE(4),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(4),
[aux_sym__sequence_of_statements_repeat1] = STATE(4),
[aux_sym__sequence_of_statements_repeat2] = STATE(80),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[78] = {
[sym__defining_identifier_list] = STATE(2006),
[sym__declarative_item] = STATE(493),
[sym__basic_declarative_item] = STATE(493),
[sym__basic_declaration] = STATE(493),
[sym__package_declaration] = STATE(493),
[sym_package_specification] = STATE(2003),
[sym_use_clause] = STATE(493),
[sym__proper_body] = STATE(493),
[sym_subprogram_body] = STATE(493),
[sym_package_body] = STATE(493),
[sym__type_declaration] = STATE(493),
[sym_full_type_declaration] = STATE(493),
[sym_private_type_declaration] = STATE(493),
[sym_private_extension_declaration] = STATE(493),
[sym_incomplete_type_declaration] = STATE(493),
[sym__aspect_clause] = STATE(493),
[sym_at_clause] = STATE(493),
[sym_attribute_definition_clause] = STATE(493),
[sym_body_stub] = STATE(493),
[sym_subprogram_body_stub] = STATE(261),
[sym_package_body_stub] = STATE(261),
[sym_task_body] = STATE(493),
[sym_task_body_stub] = STATE(261),
[sym_protected_type_declaration] = STATE(262),
[sym_single_protected_declaration] = STATE(263),
[sym_protected_body] = STATE(493),
[sym_protected_body_stub] = STATE(261),
[sym_enumeration_representation_clause] = STATE(493),
[sym_exception_declaration] = STATE(493),
[sym_function_specification] = STATE(1097),
[sym__generic_declaration] = STATE(493),
[sym_generic_formal_part] = STATE(944),
[sym_generic_subprogram_declaration] = STATE(493),
[sym_generic_package_declaration] = STATE(493),
[sym_generic_instantiation] = STATE(493),
[sym_null_procedure_declaration] = STATE(493),
[sym_number_declaration] = STATE(493),
[sym_object_declaration] = STATE(493),
[sym_single_task_declaration] = STATE(263),
[sym_task_type_declaration] = STATE(262),
[sym_overriding_indicator] = STATE(1042),
[sym_procedure_specification] = STATE(1106),
[sym_record_representation_clause] = STATE(493),
[sym__renaming_declaration] = STATE(493),
[sym_object_renaming_declaration] = STATE(493),
[sym_exception_renaming_declaration] = STATE(493),
[sym_package_renaming_declaration] = STATE(493),
[sym_subprogram_renaming_declaration] = STATE(493),
[sym_generic_renaming_declaration] = STATE(493),
[sym_subprogram_declaration] = STATE(493),
[sym_expression_function_declaration] = STATE(493),
[sym__subprogram_specification] = STATE(1004),
[sym_subtype_declaration] = STATE(493),
[sym_identifier] = ACTIONS(259),
[sym_comment] = ACTIONS(3),
[aux_sym_iterated_element_association_token1] = ACTIONS(261),
[aux_sym_iterated_element_association_token2] = ACTIONS(15),
[aux_sym_package_specification_token1] = ACTIONS(19),
[aux_sym_with_clause_token2] = ACTIONS(428),
[aux_sym_use_clause_token2] = ACTIONS(25),
[aux_sym_relation_membership_token1] = ACTIONS(31),
[aux_sym_access_to_subprogram_definition_token1] = ACTIONS(37),
[aux_sym_access_to_subprogram_definition_token2] = ACTIONS(39),
[aux_sym_access_to_subprogram_definition_token3] = ACTIONS(41),
[aux_sym_interface_type_definition_token1] = ACTIONS(47),
[aux_sym_generic_formal_part_token1] = ACTIONS(51),
[aux_sym_global_mode_token1] = ACTIONS(53),
[aux_sym_subtype_declaration_token1] = ACTIONS(83),
},
[79] = {
[sym_unary_adding_operator] = STATE(508),
[sym__name] = STATE(500),
[sym_selected_component] = STATE(525),
[sym_slice] = STATE(525),
[sym__attribute_reference] = STATE(525),
[sym__reduction_attribute_reference] = STATE(525),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(525),
[sym__subtype_indication] = STATE(1414),
[sym_range_g] = STATE(1382),
[sym_expression] = STATE(1418),
[sym__relation] = STATE(573),
[sym_relation_membership] = STATE(573),
[sym_raise_expression] = STATE(573),
[sym__simple_expression] = STATE(620),
[sym_term] = STATE(528),
[sym__factor] = STATE(504),
[sym_factor_power] = STATE(504),
[sym_factor_abs] = STATE(504),
[sym_factor_not] = STATE(504),
[sym__parenthesized_expression] = STATE(506),
[sym__primary] = STATE(506),
[sym_primary_null] = STATE(506),
[sym_allocator] = STATE(506),
[sym_parameter_association] = STATE(1342),
[sym__conditional_expression] = STATE(1910),
[sym_quantified_expression] = STATE(1910),
[sym_declare_expression] = STATE(1910),
[sym_case_expression] = STATE(1910),
[sym_component_choice_list] = STATE(1909),
[sym__aggregate] = STATE(506),
[sym__delta_aggregate] = STATE(506),
[sym_extension_aggregate] = STATE(506),
[sym_record_delta_aggregate] = STATE(506),
[sym_array_delta_aggregate] = STATE(506),
[sym_record_aggregate] = STATE(506),
[sym_null_exclusion] = STATE(771),
[sym__discrete_range] = STATE(1335),
[sym__array_aggregate] = STATE(506),
[sym_positional_array_aggregate] = STATE(506),
[sym_null_array_aggregate] = STATE(506),
[sym_named_array_aggregate] = STATE(506),
[sym_if_expression] = STATE(1910),
[sym_function_call] = STATE(500),
[sym_identifier] = ACTIONS(430),
[sym_gnatprep_identifier] = ACTIONS(432),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(434),
[sym_character_literal] = ACTIONS(432),
[sym_numeric_literal] = ACTIONS(358),
[anon_sym_PLUS] = ACTIONS(360),
[anon_sym_DASH] = ACTIONS(362),
[sym_target_name] = ACTIONS(432),
[anon_sym_LPAREN] = ACTIONS(364),
[anon_sym_LBRACK] = ACTIONS(366),
[aux_sym_iterated_element_association_token1] = ACTIONS(436),
[aux_sym_relation_membership_token1] = ACTIONS(372),
[aux_sym_raise_expression_token1] = ACTIONS(374),
[aux_sym_factor_abs_token1] = ACTIONS(376),
[aux_sym_primary_null_token1] = ACTIONS(438),
[aux_sym_allocator_token1] = ACTIONS(380),
[anon_sym_LT_GT] = ACTIONS(440),
[aux_sym_declare_expression_token1] = ACTIONS(382),
[aux_sym_case_expression_token1] = ACTIONS(384),
[aux_sym_component_choice_list_token1] = ACTIONS(442),
[aux_sym_if_expression_token1] = ACTIONS(392),
},
[80] = {
[sym__name] = STATE(973),
[sym_selected_component] = STATE(1030),
[sym_slice] = STATE(1030),
[sym__attribute_reference] = STATE(1030),
[sym__reduction_attribute_reference] = STATE(1030),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(1030),
[sym_loop_label] = STATE(979),
[sym_label] = STATE(523),
[sym_null_statement] = STATE(147),
[sym_pragma_g] = STATE(147),
[sym__simple_statement] = STATE(147),
[sym__compound_statement] = STATE(147),
[sym__select_statement] = STATE(147),
[sym_asynchronous_select] = STATE(147),
[sym_conditional_entry_call] = STATE(147),
[sym_timed_entry_call] = STATE(147),
[sym_selective_accept] = STATE(147),
[sym_abort_statement] = STATE(147),
[sym_requeue_statement] = STATE(147),
[sym_accept_statement] = STATE(147),
[sym_case_statement] = STATE(147),
[sym_block_statement] = STATE(147),
[sym_if_statement] = STATE(147),
[sym_gnatprep_if_statement] = STATE(147),
[sym_exit_statement] = STATE(147),
[sym_goto_statement] = STATE(147),
[sym__delay_statement] = STATE(147),
[sym_delay_until_statement] = STATE(147),
[sym_delay_relative_statement] = STATE(147),
[sym_simple_return_statement] = STATE(147),
[sym_extended_return_statement] = STATE(147),
[sym_procedure_call_statement] = STATE(147),
[sym_function_call] = STATE(973),
[sym_raise_statement] = STATE(147),
[sym_loop_statement] = STATE(147),
[sym_iteration_scheme] = STATE(2002),
[sym_assignment_statement] = STATE(147),
[aux_sym__sequence_of_statements_repeat2] = STATE(523),
[sym_identifier] = ACTIONS(206),
[sym_gnatprep_identifier] = ACTIONS(9),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(9),
[sym_character_literal] = ACTIONS(9),
[sym_target_name] = ACTIONS(9),
[anon_sym_LBRACK] = ACTIONS(11),
[aux_sym_iterated_element_association_token1] = ACTIONS(208),
[aux_sym_subprogram_body_token1] = ACTIONS(29),
[aux_sym_raise_expression_token1] = ACTIONS(33),
[aux_sym_primary_null_token1] = ACTIONS(35),
[aux_sym_declare_expression_token1] = ACTIONS(43),
[aux_sym_case_expression_token1] = ACTIONS(45),
[anon_sym_LT_LT] = ACTIONS(55),
[aux_sym_pragma_g_token1] = ACTIONS(57),
[aux_sym_if_expression_token1] = ACTIONS(59),
[aux_sym_result_profile_token1] = ACTIONS(61),
[aux_sym_asynchronous_select_token1] = ACTIONS(63),
[aux_sym_asynchronous_select_token2] = ACTIONS(65),
[aux_sym_requeue_statement_token1] = ACTIONS(67),
[aux_sym_accept_statement_token1] = ACTIONS(69),
[aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71),
[aux_sym_exit_statement_token1] = ACTIONS(73),
[aux_sym_goto_statement_token1] = ACTIONS(75),
[aux_sym_delay_until_statement_token1] = ACTIONS(77),
[aux_sym_loop_statement_token1] = ACTIONS(79),
[aux_sym_iteration_scheme_token1] = ACTIONS(81),
},
[81] = {
[sym_unary_adding_operator] = STATE(508),
[sym__name] = STATE(500),
[sym_selected_component] = STATE(500),
[sym__defining_identifier_list] = STATE(1870),
[sym_slice] = STATE(500),
[sym__attribute_reference] = STATE(500),
[sym__reduction_attribute_reference] = STATE(500),
[sym_value_sequence] = STATE(2005),
[sym_qualified_expression] = STATE(500),
[sym_range_g] = STATE(1911),
[sym_expression] = STATE(1418),
[sym__relation] = STATE(573),
[sym_relation_membership] = STATE(573),
[sym_raise_expression] = STATE(573),
[sym__simple_expression] = STATE(620),
[sym_term] = STATE(528),
[sym__factor] = STATE(504),
[sym_factor_power] = STATE(504),
[sym_factor_abs] = STATE(504),
[sym_factor_not] = STATE(504),
[sym__parenthesized_expression] = STATE(506),
[sym__primary] = STATE(506),
[sym_primary_null] = STATE(506),
[sym_allocator] = STATE(506),
[sym_parameter_association] = STATE(1342),
[sym__conditional_expression] = STATE(1910),
[sym_quantified_expression] = STATE(1910),
[sym_declare_expression] = STATE(1910),
[sym_case_expression] = STATE(1910),
[sym_component_choice_list] = STATE(1909),
[sym__aggregate] = STATE(506),
[sym__delta_aggregate] = STATE(506),
[sym_extension_aggregate] = STATE(506),
[sym_record_delta_aggregate] = STATE(506),
[sym_array_delta_aggregate] = STATE(506),
[sym_record_aggregate] = STATE(506),
[sym__array_aggregate] = STATE(506),
[sym_positional_array_aggregate] = STATE(506),
[sym_null_array_aggregate] = STATE(506),
[sym_named_array_aggregate] = STATE(506),
[sym_parameter_specification] = STATE(1256),
[sym__parameter_specification_list] = STATE(1868),
[sym_if_expression] = STATE(1910),
[sym_function_call] = STATE(500),
[sym_identifier] = ACTIONS(444),
[sym_gnatprep_identifier] = ACTIONS(446),
[sym_comment] = ACTIONS(3),
[sym_string_literal] = ACTIONS(448),
[sym_character_literal] = ACTIONS(446),
[sym_numeric_literal] = ACTIONS(358),
[anon_sym_PLUS] = ACTIONS(360),
[anon_sym_DASH] = ACTIONS(362),
[sym_target_name] = ACTIONS(446),
[anon_sym_LPAREN] = ACTIONS(364),
[anon_sym_LBRACK] = ACTIONS(366),
[aux_sym_iterated_element_association_token1] = ACTIONS(436),
[aux_sym_relation_membership_token1] = ACTIONS(450),
[aux_sym_raise_expression_token1] = ACTIONS(374),
[aux_sym_factor_abs_token1] = ACTIONS(376),
[aux_sym_primary_null_token1] = ACTIONS(438),
[aux_sym_allocator_token1] = ACTIONS(380),
[anon_sym_LT_GT] = ACTIONS(440),
[aux_sym_declare_expression_token1] = ACTIONS(382),
[aux_sym_case_expression_token1] = ACTIONS(384),
[aux_sym_component_choice_list_token1] = ACTIONS(442),
[aux_sym_if_expression_token1] = ACTIONS(392),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 33,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(382), 1,
aux_sym_declare_expression_token1,
ACTIONS(384), 1,
aux_sym_case_expression_token1,
ACTIONS(392), 1,
aux_sym_if_expression_token1,
ACTIONS(436), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(440), 1,
anon_sym_LT_GT,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(1342), 1,
sym_parameter_association,
STATE(1418), 1,
sym_expression,
STATE(1909), 1,
sym_component_choice_list,
STATE(1911), 1,
sym_range_g,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(446), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(1910), 5,
sym__conditional_expression,
sym_quantified_expression,
sym_declare_expression,
sym_case_expression,
sym_if_expression,
STATE(500), 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,
[130] = 37,
ACTIONS(3), 1,
sym_comment,
ACTIONS(352), 1,
sym_identifier,
ACTIONS(356), 1,
sym_string_literal,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(378), 1,
aux_sym_primary_null_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(386), 1,
aux_sym_component_choice_list_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1150), 1,
sym_expression,
STATE(1156), 1,
sym_array_component_association,
STATE(1180), 1,
sym__named_record_component_association,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1522), 1,
sym_range_g,
STATE(1652), 1,
sym__array_component_association_list,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1653), 2,
sym_record_component_association_list,
sym__record_component_association_list_or_expression,
ACTIONS(354), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[268] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(456), 1,
aux_sym_compilation_unit_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(460), 1,
aux_sym_package_specification_token3,
ACTIONS(462), 1,
aux_sym_allocator_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(86), 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,
[388] = 33,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(382), 1,
aux_sym_declare_expression_token1,
ACTIONS(384), 1,
aux_sym_case_expression_token1,
ACTIONS(392), 1,
aux_sym_if_expression_token1,
ACTIONS(436), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(468), 1,
sym_identifier,
ACTIONS(470), 1,
sym_string_literal,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1333), 1,
sym_discriminant_association,
STATE(1410), 1,
sym_expression,
STATE(1414), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1335), 2,
sym_range_g,
sym__discrete_range,
ACTIONS(432), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 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(1906), 5,
sym__conditional_expression,
sym_quantified_expression,
sym_declare_expression,
sym_case_expression,
sym_if_expression,
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,
[518] = 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(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(472), 1,
aux_sym_compilation_unit_token1,
ACTIONS(474), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[635] = 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(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(456), 1,
aux_sym_compilation_unit_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(460), 1,
aux_sym_package_specification_token3,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(86), 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,
[752] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(476), 1,
sym_identifier,
ACTIONS(479), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(482), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(487), 1,
aux_sym_package_specification_token1,
ACTIONS(490), 1,
aux_sym_use_clause_token2,
ACTIONS(493), 1,
aux_sym_relation_membership_token1,
ACTIONS(496), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(499), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(502), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(505), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(508), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(511), 1,
aux_sym_global_mode_token1,
ACTIONS(514), 1,
aux_sym_pragma_g_token1,
ACTIONS(517), 1,
aux_sym_subtype_declaration_token1,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
ACTIONS(485), 2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token3,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[867] = 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(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(520), 1,
aux_sym_compilation_unit_token1,
ACTIONS(522), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[984] = 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(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(472), 1,
aux_sym_compilation_unit_token1,
ACTIONS(474), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(89), 34,
sym__basic_declarative_item,
sym__basic_declaration,
sym__package_declaration,
sym_use_clause,
sym__basic_declarative_item_pragma,
sym__type_declaration,
sym_full_type_declaration,
sym_private_type_declaration,
sym_private_extension_declaration,
sym_incomplete_type_declaration,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_enumeration_representation_clause,
sym_exception_declaration,
sym__generic_declaration,
sym_generic_subprogram_declaration,
sym_generic_package_declaration,
sym_generic_instantiation,
sym_null_procedure_declaration,
sym_number_declaration,
sym_object_declaration,
sym_pragma_g,
sym_record_representation_clause,
sym__renaming_declaration,
sym_object_renaming_declaration,
sym_exception_renaming_declaration,
sym_package_renaming_declaration,
sym_subprogram_renaming_declaration,
sym_generic_renaming_declaration,
sym_subprogram_declaration,
sym_expression_function_declaration,
sym_subtype_declaration,
aux_sym_package_specification_repeat1,
[1101] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(524), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[1215] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(524), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(93), 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,
[1329] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(526), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[1443] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(522), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(91), 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,
[1557] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(522), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(88), 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,
[1671] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(25), 1,
aux_sym_use_clause_token2,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(39), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(41), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(51), 1,
aux_sym_generic_formal_part_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(83), 1,
aux_sym_subtype_declaration_token1,
ACTIONS(259), 1,
sym_identifier,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(458), 1,
aux_sym_package_specification_token1,
ACTIONS(464), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(466), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(474), 1,
aux_sym_package_specification_token3,
STATE(944), 1,
sym_generic_formal_part,
STATE(1058), 1,
sym_overriding_indicator,
STATE(1072), 1,
sym__subprogram_specification,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(2003), 1,
sym_package_specification,
STATE(2006), 1,
sym__defining_identifier_list,
STATE(262), 2,
sym_protected_type_declaration,
sym_task_type_declaration,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(95), 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,
[1785] = 35,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(530), 1,
aux_sym_value_sequence_token1,
ACTIONS(532), 1,
anon_sym_RBRACK,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(965), 1,
sym_expression,
STATE(1156), 1,
sym_array_component_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1458), 1,
sym_iterated_element_association,
STATE(1518), 1,
sym__subtype_indication,
STATE(1522), 1,
sym_range_g,
STATE(1929), 1,
sym__array_component_association_list,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[1917] = 34,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(532), 1,
anon_sym_RBRACK,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1043), 1,
sym_expression,
STATE(1156), 1,
sym_array_component_association,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1522), 1,
sym_range_g,
STATE(1929), 1,
sym__array_component_association_list,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2046] = 34,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(532), 1,
anon_sym_RBRACK,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(965), 1,
sym_expression,
STATE(1156), 1,
sym_array_component_association,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1522), 1,
sym_range_g,
STATE(1929), 1,
sym__array_component_association_list,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2175] = 32,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1156), 1,
sym_array_component_association,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1650), 1,
sym__array_component_association_list,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2299] = 33,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1138), 1,
sym_expression,
STATE(1156), 1,
sym_array_component_association,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1522), 1,
sym_range_g,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(1931), 1,
sym__array_component_association_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2425] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(384), 1,
aux_sym_case_expression_token1,
ACTIONS(392), 1,
aux_sym_if_expression_token1,
ACTIONS(436), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(536), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1179), 1,
sym_pragma_argument_association,
STATE(1490), 1,
sym_expression,
STATE(1841), 1,
sym__aspect_mark,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(1842), 4,
sym__conditional_quantified_expression,
sym_quantified_expression,
sym_case_expression,
sym_if_expression,
STATE(489), 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,
[2540] = 31,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1197), 1,
sym_iterated_element_association,
STATE(1275), 1,
sym_discrete_choice,
STATE(1372), 1,
sym_array_component_association,
STATE(1518), 1,
sym__subtype_indication,
STATE(1930), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2661] = 27,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(368), 1,
aux_sym_chunk_specification_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(388), 1,
aux_sym_global_mode_token1,
ACTIONS(390), 1,
aux_sym_non_empty_mode_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(542), 1,
anon_sym_LPAREN,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(840), 1,
sym_non_empty_mode,
STATE(1063), 1,
sym_global_mode,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(1062), 3,
sym_expression,
sym__aspect_definition,
sym_global_aspect_definition,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[2772] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(378), 1,
aux_sym_primary_null_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
ACTIONS(544), 1,
aux_sym_attribute_designator_token2,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1180), 1,
sym__named_record_component_association,
STATE(1396), 1,
sym_expression,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(1763), 2,
sym_record_component_association_list,
sym__record_component_association_list_or_expression,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[2884] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1822), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[2996] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1536), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[3108] = 28,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1275), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(1761), 1,
sym_discrete_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[3220] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(548), 1,
sym_identifier,
ACTIONS(546), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3281] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(552), 1,
sym_identifier,
ACTIONS(550), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3342] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(556), 1,
sym_identifier,
ACTIONS(554), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3403] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(560), 1,
sym_identifier,
ACTIONS(558), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3464] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(564), 1,
sym_identifier,
ACTIONS(562), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3525] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(568), 1,
sym_identifier,
ACTIONS(566), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3586] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(572), 1,
sym_identifier,
ACTIONS(570), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3647] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(576), 1,
sym_identifier,
ACTIONS(574), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3708] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(580), 1,
sym_identifier,
ACTIONS(578), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3769] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(584), 1,
sym_identifier,
ACTIONS(582), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3830] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(588), 1,
sym_identifier,
ACTIONS(586), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3891] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(592), 1,
sym_identifier,
ACTIONS(590), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[3952] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(596), 1,
sym_identifier,
ACTIONS(594), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4013] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(600), 1,
sym_identifier,
ACTIONS(598), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4074] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(604), 1,
sym_identifier,
ACTIONS(602), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4135] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(608), 1,
sym_identifier,
ACTIONS(606), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4196] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(612), 1,
sym_identifier,
ACTIONS(610), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4257] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(616), 1,
sym_identifier,
ACTIONS(614), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4318] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(620), 1,
sym_identifier,
ACTIONS(618), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4379] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(624), 1,
sym_identifier,
ACTIONS(622), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4440] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(628), 1,
sym_identifier,
ACTIONS(626), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4501] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(632), 1,
sym_identifier,
ACTIONS(630), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4562] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(636), 1,
sym_identifier,
ACTIONS(634), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4623] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(640), 1,
sym_identifier,
ACTIONS(638), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4684] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(644), 1,
sym_identifier,
ACTIONS(642), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4745] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(648), 1,
sym_identifier,
ACTIONS(646), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4806] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(652), 1,
sym_identifier,
ACTIONS(650), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4867] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(656), 1,
sym_identifier,
ACTIONS(654), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4928] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(660), 1,
sym_identifier,
ACTIONS(658), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[4989] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(664), 1,
sym_identifier,
ACTIONS(662), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5050] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(668), 1,
sym_identifier,
ACTIONS(666), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5111] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(670), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5172] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(676), 1,
sym_identifier,
ACTIONS(674), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5233] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(680), 1,
sym_identifier,
ACTIONS(678), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5294] = 27,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(534), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(620), 1,
sym__simple_expression,
STATE(771), 1,
sym_null_exclusion,
STATE(1375), 1,
sym_discrete_choice,
STATE(1518), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1522), 2,
sym_range_g,
sym_expression,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[5403] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(682), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5464] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(688), 1,
sym_identifier,
ACTIONS(686), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5525] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(692), 1,
sym_identifier,
ACTIONS(690), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5586] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(696), 1,
sym_identifier,
ACTIONS(694), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5647] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(700), 1,
sym_identifier,
ACTIONS(698), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5708] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(704), 1,
sym_identifier,
ACTIONS(702), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5769] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(708), 1,
sym_identifier,
ACTIONS(706), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5830] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(710), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5891] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(716), 1,
sym_identifier,
ACTIONS(714), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[5952] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(720), 1,
sym_identifier,
ACTIONS(718), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6013] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(724), 1,
sym_identifier,
ACTIONS(722), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6074] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(728), 1,
sym_identifier,
ACTIONS(726), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6135] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(732), 1,
sym_identifier,
ACTIONS(730), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6196] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(736), 1,
sym_identifier,
ACTIONS(734), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6257] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(740), 1,
sym_identifier,
ACTIONS(738), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6318] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(744), 1,
sym_identifier,
ACTIONS(742), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6379] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(748), 1,
sym_identifier,
ACTIONS(746), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6440] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(752), 1,
sym_identifier,
ACTIONS(750), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6501] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(756), 1,
sym_identifier,
ACTIONS(754), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6562] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(760), 1,
sym_identifier,
ACTIONS(758), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6623] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(764), 1,
sym_identifier,
ACTIONS(762), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6684] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(768), 1,
sym_identifier,
ACTIONS(766), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6745] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(772), 1,
sym_identifier,
ACTIONS(770), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6806] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(776), 1,
sym_identifier,
ACTIONS(774), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6867] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(780), 1,
sym_identifier,
ACTIONS(778), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6928] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(784), 1,
sym_identifier,
ACTIONS(782), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[6989] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(788), 1,
sym_identifier,
ACTIONS(786), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7050] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(792), 1,
sym_identifier,
ACTIONS(790), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7111] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(796), 1,
sym_identifier,
ACTIONS(794), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7172] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(800), 1,
sym_identifier,
ACTIONS(798), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7233] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(804), 1,
sym_identifier,
ACTIONS(802), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7294] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(808), 1,
sym_identifier,
ACTIONS(806), 52,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_exception_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[7355] = 27,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(440), 1,
anon_sym_LT_GT,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1418), 1,
sym_expression,
STATE(1524), 1,
sym_parameter_association,
STATE(1909), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7463] = 25,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(1343), 2,
sym_expression,
sym__named_record_component_association,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7566] = 25,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(1529), 2,
sym_expression,
sym__named_record_component_association,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7669] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
ACTIONS(810), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1114), 1,
sym_expression,
STATE(1343), 1,
sym__named_record_component_association,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7774] = 25,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(812), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1256), 1,
sym_parameter_specification,
STATE(1828), 1,
sym_expression,
STATE(1868), 1,
sym__parameter_specification_list,
STATE(1870), 1,
sym__defining_identifier_list,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7877] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(448), 1,
sym_string_literal,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(452), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1528), 1,
sym_expression,
STATE(1529), 1,
sym__named_record_component_association,
STATE(1934), 1,
sym_component_choice_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[7982] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(814), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1339), 1,
sym_index_subtype_definition,
STATE(1709), 1,
sym__index_subtype_definition_list,
STATE(1711), 1,
sym__discrete_subtype_definition_list,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(791), 2,
sym__name,
sym_function_call,
STATE(1317), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(816), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(560), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[8086] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(818), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1256), 1,
sym_parameter_specification,
STATE(1868), 1,
sym__parameter_specification_list,
STATE(1870), 1,
sym__defining_identifier_list,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1851), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[8190] = 24,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(822), 1,
sym_identifier,
ACTIONS(824), 1,
anon_sym_SEMI,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1407), 1,
sym_extended_return_object_declaration,
STATE(1976), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8290] = 26,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(818), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1256), 1,
sym_parameter_specification,
STATE(1868), 1,
sym__parameter_specification_list,
STATE(1870), 1,
sym__defining_identifier_list,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1700), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[8394] = 24,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(536), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1415), 1,
sym_pragma_argument_association,
STATE(1490), 1,
sym_expression,
STATE(1841), 1,
sym__aspect_mark,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8494] = 24,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(826), 1,
sym_identifier,
ACTIONS(828), 1,
sym_string_literal,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1516), 1,
sym_discriminant_association,
STATE(1517), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 3,
sym_gnatprep_identifier,
sym_character_literal,
sym_target_name,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8593] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(830), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1173), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8690] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(832), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1544), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8787] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(834), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1364), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8884] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(836), 1,
aux_sym_delay_until_statement_token2,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1971), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[8981] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(838), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1742), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9078] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(840), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1741), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9175] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(842), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1533), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9272] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(844), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1364), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9369] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(846), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1393), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9466] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(848), 1,
aux_sym_component_choice_list_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1364), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9563] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(850), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1369), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9660] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(852), 1,
anon_sym_LT_GT,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1543), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9757] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1334), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9851] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1545), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[9945] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(856), 1,
sym_identifier,
ACTIONS(854), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[10001] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1258), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10095] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(860), 1,
sym_identifier,
ACTIONS(858), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[10151] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1923), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10245] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1364), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10339] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1416), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10433] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1965), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10527] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1499), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10621] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1862), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10715] = 24,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(862), 1,
aux_sym_loop_parameter_specification_token1,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(655), 2,
sym__name,
sym_function_call,
STATE(1071), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[10813] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(866), 1,
sym_identifier,
ACTIONS(864), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[10869] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1432), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[10963] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1972), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11057] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(870), 1,
sym_identifier,
ACTIONS(868), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[11113] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1282), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11207] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(874), 1,
sym_identifier,
ACTIONS(872), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[11263] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1635), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11357] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(878), 1,
sym_identifier,
ACTIONS(876), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[11413] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1542), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11507] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1185), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11601] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1766), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11695] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1682), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11789] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1825), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[11883] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(882), 1,
sym_identifier,
ACTIONS(880), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[11939] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1541), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12033] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1142), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12127] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1977), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12221] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1567), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12315] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1918), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12409] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1513), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12503] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1610), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12597] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1714), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12691] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1804), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12785] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(884), 1,
aux_sym_expression_token4,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(638), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12879] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(886), 1,
aux_sym_expression_token2,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(640), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[12973] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1539), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13067] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1182), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13161] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1984), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13255] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1803), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13349] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1916), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13443] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1474), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13537] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1134), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13631] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(890), 1,
sym_identifier,
ACTIONS(888), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[13687] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1592), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13781] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1877), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13875] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1104), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[13969] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1939), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14063] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1735), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14157] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(894), 1,
sym_identifier,
ACTIONS(892), 47,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_iterator_filter_token1,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14213] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1736), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14307] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1856), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14401] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1859), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14495] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(995), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14589] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(1654), 1,
sym_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(573), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[14683] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(898), 1,
sym_identifier,
ACTIONS(896), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14738] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(902), 1,
sym_identifier,
ACTIONS(900), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14793] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(906), 1,
sym_identifier,
ACTIONS(904), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14848] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(910), 1,
sym_identifier,
ACTIONS(908), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14903] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(914), 1,
sym_identifier,
ACTIONS(912), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[14958] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(918), 1,
sym_identifier,
ACTIONS(916), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15013] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(922), 1,
sym_identifier,
ACTIONS(920), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15068] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(926), 1,
sym_identifier,
ACTIONS(924), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15123] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(930), 1,
sym_identifier,
ACTIONS(928), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15178] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(934), 1,
sym_identifier,
ACTIONS(932), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15233] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(938), 1,
sym_identifier,
ACTIONS(936), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15288] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(942), 1,
sym_identifier,
ACTIONS(940), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15343] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(944), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1684), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[15438] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(948), 1,
sym_identifier,
ACTIONS(946), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15493] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(952), 1,
sym_identifier,
ACTIONS(950), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15548] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(956), 1,
sym_identifier,
ACTIONS(954), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15603] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(960), 1,
sym_identifier,
ACTIONS(958), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15658] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(964), 1,
sym_identifier,
ACTIONS(962), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15713] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(968), 1,
sym_identifier,
ACTIONS(966), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15768] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(972), 1,
sym_identifier,
ACTIONS(970), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15823] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(976), 1,
sym_identifier,
ACTIONS(974), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15878] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(980), 1,
sym_identifier,
ACTIONS(978), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15933] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(984), 1,
sym_identifier,
ACTIONS(982), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[15988] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(988), 1,
sym_identifier,
ACTIONS(986), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16043] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(992), 1,
sym_identifier,
ACTIONS(990), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16098] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(996), 1,
sym_identifier,
ACTIONS(994), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16153] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1000), 1,
sym_identifier,
ACTIONS(998), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16208] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1004), 1,
sym_identifier,
ACTIONS(1002), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16263] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1008), 1,
sym_identifier,
ACTIONS(1006), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16318] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1012), 1,
sym_identifier,
ACTIONS(1010), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16373] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1016), 1,
sym_identifier,
ACTIONS(1014), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16428] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(972), 1,
sym_identifier,
ACTIONS(970), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16483] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1020), 1,
sym_identifier,
ACTIONS(1018), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16538] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1024), 1,
sym_identifier,
ACTIONS(1022), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16593] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1028), 1,
sym_identifier,
ACTIONS(1026), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16648] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1032), 1,
sym_identifier,
ACTIONS(1030), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16703] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1036), 1,
sym_identifier,
ACTIONS(1034), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16758] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1040), 1,
sym_identifier,
ACTIONS(1038), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16813] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1044), 1,
sym_identifier,
ACTIONS(1042), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16868] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1048), 1,
sym_identifier,
ACTIONS(1046), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16923] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1052), 1,
sym_identifier,
ACTIONS(1050), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[16978] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1056), 1,
sym_identifier,
ACTIONS(1054), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17033] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1060), 1,
sym_identifier,
ACTIONS(1058), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17088] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1064), 1,
sym_identifier,
ACTIONS(1062), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17143] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1068), 1,
sym_identifier,
ACTIONS(1066), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17198] = 21,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(637), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[17289] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1072), 1,
sym_identifier,
ACTIONS(1070), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17344] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1076), 1,
sym_identifier,
ACTIONS(1074), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17399] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1080), 1,
sym_identifier,
ACTIONS(1078), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17454] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1084), 1,
sym_identifier,
ACTIONS(1082), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17509] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1088), 1,
sym_identifier,
ACTIONS(1086), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17564] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1092), 1,
sym_identifier,
ACTIONS(1090), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17619] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1096), 1,
sym_identifier,
ACTIONS(1094), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17674] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1100), 1,
sym_identifier,
ACTIONS(1098), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17729] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1104), 1,
sym_identifier,
ACTIONS(1102), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17784] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1108), 1,
sym_identifier,
ACTIONS(1106), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17839] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1112), 1,
sym_identifier,
ACTIONS(1110), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17894] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1116), 1,
sym_identifier,
ACTIONS(1114), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[17949] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1120), 1,
sym_identifier,
ACTIONS(1118), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18004] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1124), 1,
sym_identifier,
ACTIONS(1122), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18059] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1128), 1,
sym_identifier,
ACTIONS(1126), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18114] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1132), 1,
sym_identifier,
ACTIONS(1130), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18169] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1136), 1,
sym_identifier,
ACTIONS(1134), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18224] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(944), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(1414), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1520), 2,
sym_range_g,
sym__discrete_range,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[18319] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1140), 1,
sym_identifier,
ACTIONS(1138), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18374] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1144), 1,
sym_identifier,
ACTIONS(1142), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18429] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1148), 1,
sym_identifier,
ACTIONS(1146), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18484] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1152), 1,
sym_identifier,
ACTIONS(1150), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18539] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1156), 1,
sym_identifier,
ACTIONS(1154), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18594] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1160), 1,
sym_identifier,
ACTIONS(1158), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18649] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1164), 1,
sym_identifier,
ACTIONS(1162), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18704] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1168), 1,
sym_identifier,
ACTIONS(1166), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18759] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1160), 1,
sym_identifier,
ACTIONS(1158), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18814] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1172), 1,
sym_identifier,
ACTIONS(1170), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18869] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1176), 1,
sym_identifier,
ACTIONS(1174), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18924] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1180), 1,
sym_identifier,
ACTIONS(1178), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[18979] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1184), 1,
sym_identifier,
ACTIONS(1182), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19034] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1188), 1,
sym_identifier,
ACTIONS(1186), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19089] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1192), 1,
sym_identifier,
ACTIONS(1190), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19144] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1196), 1,
sym_identifier,
ACTIONS(1194), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19199] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1200), 1,
sym_identifier,
ACTIONS(1198), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19254] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1204), 1,
sym_identifier,
ACTIONS(1202), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19309] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(944), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1428), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[19404] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1208), 1,
sym_identifier,
ACTIONS(1206), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19459] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1212), 1,
sym_identifier,
ACTIONS(1210), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19514] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(944), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(500), 2,
sym__name,
sym_function_call,
STATE(1969), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[19609] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1216), 1,
sym_identifier,
ACTIONS(1214), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19664] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1220), 1,
sym_identifier,
ACTIONS(1218), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19719] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1224), 1,
sym_identifier,
ACTIONS(1222), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19774] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1228), 1,
sym_identifier,
ACTIONS(1226), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19829] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1232), 1,
sym_identifier,
ACTIONS(1230), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19884] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1236), 1,
sym_identifier,
ACTIONS(1234), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19939] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1240), 1,
sym_identifier,
ACTIONS(1238), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[19994] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1244), 1,
sym_identifier,
ACTIONS(1242), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20049] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1248), 1,
sym_identifier,
ACTIONS(1246), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20104] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1252), 1,
sym_identifier,
ACTIONS(1250), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20159] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1256), 1,
sym_identifier,
ACTIONS(1254), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20214] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1260), 1,
sym_identifier,
ACTIONS(1258), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20269] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1264), 1,
sym_identifier,
ACTIONS(1262), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20324] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1268), 1,
sym_identifier,
ACTIONS(1266), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20379] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1272), 1,
sym_identifier,
ACTIONS(1270), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20434] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1276), 1,
sym_identifier,
ACTIONS(1274), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20489] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1280), 1,
sym_identifier,
ACTIONS(1278), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20544] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1284), 1,
sym_identifier,
ACTIONS(1282), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20599] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1288), 1,
sym_identifier,
ACTIONS(1286), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20654] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1292), 1,
sym_identifier,
ACTIONS(1290), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20709] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1296), 1,
sym_identifier,
ACTIONS(1294), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20764] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1300), 1,
sym_identifier,
ACTIONS(1298), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20819] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1304), 1,
sym_identifier,
ACTIONS(1302), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20874] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1160), 1,
sym_identifier,
ACTIONS(1158), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20929] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1308), 1,
sym_identifier,
ACTIONS(1306), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[20984] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1312), 1,
sym_identifier,
ACTIONS(1310), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21039] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1316), 1,
sym_identifier,
ACTIONS(1314), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21094] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1320), 1,
sym_identifier,
ACTIONS(1318), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21149] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1324), 1,
sym_identifier,
ACTIONS(1322), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21204] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1316), 1,
sym_identifier,
ACTIONS(1314), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21259] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1160), 1,
sym_identifier,
ACTIONS(1158), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21314] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1328), 1,
sym_identifier,
ACTIONS(1326), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21369] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1332), 1,
sym_identifier,
ACTIONS(1330), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21424] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1276), 1,
sym_identifier,
ACTIONS(1274), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21479] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1336), 1,
sym_identifier,
ACTIONS(1334), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21534] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1340), 1,
sym_identifier,
ACTIONS(1338), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21589] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1344), 1,
sym_identifier,
ACTIONS(1342), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21644] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1016), 1,
sym_identifier,
ACTIONS(1014), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21699] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1348), 1,
sym_identifier,
ACTIONS(1346), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21754] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1352), 1,
sym_identifier,
ACTIONS(1350), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21809] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1356), 1,
sym_identifier,
ACTIONS(1354), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[21864] = 21,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(643), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[21955] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1348), 1,
sym_identifier,
ACTIONS(1346), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22010] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1360), 1,
sym_identifier,
ACTIONS(1358), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22065] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1364), 1,
sym_identifier,
ACTIONS(1362), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22120] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1368), 1,
sym_identifier,
ACTIONS(1366), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22175] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1372), 1,
sym_identifier,
ACTIONS(1370), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22230] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1376), 1,
sym_identifier,
ACTIONS(1374), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22285] = 21,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(374), 1,
aux_sym_raise_expression_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(544), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(641), 3,
sym__relation,
sym_relation_membership,
sym_raise_expression,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[22376] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1380), 1,
sym_identifier,
ACTIONS(1378), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22431] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1384), 1,
sym_identifier,
ACTIONS(1382), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22486] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1352), 1,
sym_identifier,
ACTIONS(1350), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22541] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1268), 1,
sym_identifier,
ACTIONS(1266), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22596] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1388), 1,
sym_identifier,
ACTIONS(1386), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22651] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1392), 1,
sym_identifier,
ACTIONS(1390), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22706] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1396), 1,
sym_identifier,
ACTIONS(1394), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22761] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1400), 1,
sym_identifier,
ACTIONS(1398), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22816] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1404), 1,
sym_identifier,
ACTIONS(1402), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22871] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1408), 1,
sym_identifier,
ACTIONS(1406), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22926] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1412), 1,
sym_identifier,
ACTIONS(1410), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[22981] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1416), 1,
sym_identifier,
ACTIONS(1414), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23036] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1420), 1,
sym_identifier,
ACTIONS(1418), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23091] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1424), 1,
sym_identifier,
ACTIONS(1422), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23146] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1384), 1,
sym_identifier,
ACTIONS(1382), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23201] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1324), 1,
sym_identifier,
ACTIONS(1322), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23256] = 23,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
aux_sym_relation_membership_token1,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(528), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(771), 1,
sym_null_exclusion,
STATE(980), 1,
sym__subtype_indication,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(648), 2,
sym__name,
sym_function_call,
STATE(1033), 2,
sym__discrete_subtype_definition,
sym_range_g,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
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,
[23351] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1428), 1,
sym_identifier,
ACTIONS(1426), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23406] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1432), 1,
sym_identifier,
ACTIONS(1430), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23461] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1232), 1,
sym_identifier,
ACTIONS(1230), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23516] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1076), 1,
sym_identifier,
ACTIONS(1074), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23571] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1436), 1,
sym_identifier,
ACTIONS(1434), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23626] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1440), 1,
sym_identifier,
ACTIONS(1438), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23681] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1444), 1,
sym_identifier,
ACTIONS(1442), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23736] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1448), 1,
sym_identifier,
ACTIONS(1446), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23791] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1452), 1,
sym_identifier,
ACTIONS(1450), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23846] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1456), 1,
sym_identifier,
ACTIONS(1454), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23901] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1460), 1,
sym_identifier,
ACTIONS(1458), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[23956] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1364), 1,
sym_identifier,
ACTIONS(1362), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24011] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1464), 1,
sym_identifier,
ACTIONS(1462), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24066] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1468), 1,
sym_identifier,
ACTIONS(1466), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24121] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1472), 1,
sym_identifier,
ACTIONS(1470), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24176] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1476), 1,
sym_identifier,
ACTIONS(1474), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24231] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1480), 1,
sym_identifier,
ACTIONS(1478), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24286] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1484), 1,
sym_identifier,
ACTIONS(1482), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24341] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1488), 1,
sym_identifier,
ACTIONS(1486), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24396] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1492), 1,
sym_identifier,
ACTIONS(1490), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24451] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1496), 1,
sym_identifier,
ACTIONS(1494), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24506] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1500), 1,
sym_identifier,
ACTIONS(1498), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24561] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1504), 1,
sym_identifier,
ACTIONS(1502), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24616] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1508), 1,
sym_identifier,
ACTIONS(1506), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24671] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1512), 1,
sym_identifier,
ACTIONS(1510), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24726] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1516), 1,
sym_identifier,
ACTIONS(1514), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24781] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1520), 1,
sym_identifier,
ACTIONS(1518), 46,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[24836] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1522), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1524), 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,
[24890] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1526), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1528), 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,
[24944] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1530), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1532), 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,
[24998] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1534), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1536), 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,
[25052] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1538), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1540), 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,
[25106] = 21,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(1542), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(601), 1,
sym__simple_expression,
STATE(606), 1,
sym_membership_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(600), 2,
sym_range_g,
sym__membership_choice,
ACTIONS(446), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(500), 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,
[25196] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1544), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1546), 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,
[25250] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1548), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1550), 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,
[25304] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1552), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1554), 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,
[25358] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1556), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1558), 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,
[25412] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1560), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1562), 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,
[25466] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1564), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1566), 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,
[25520] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1568), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1570), 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,
[25574] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1572), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1574), 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,
[25628] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1576), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1578), 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,
[25682] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1580), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1582), 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,
[25736] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(751), 1,
sym__parenthesized_expression,
ACTIONS(1598), 3,
anon_sym_SEMI,
anon_sym_COLON_EQ,
aux_sym_accept_statement_token2,
ACTIONS(1591), 5,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
anon_sym_PIPE,
aux_sym_loop_statement_token1,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 19,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
sym_tick,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_with_clause_token2,
anon_sym_DOT_DOT,
aux_sym_expression_token1,
aux_sym_expression_token3,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
[25806] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1602), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1604), 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,
[25860] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1606), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1608), 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,
[25914] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1610), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1612), 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,
[25968] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1614), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1616), 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,
[26022] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1618), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1620), 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,
[26076] = 21,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(1542), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(601), 1,
sym__simple_expression,
STATE(608), 1,
sym_membership_choice_list,
STATE(2005), 1,
sym_value_sequence,
STATE(600), 2,
sym_range_g,
sym__membership_choice,
ACTIONS(446), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(500), 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,
[26166] = 20,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(1542), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(601), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
STATE(605), 2,
sym_range_g,
sym__membership_choice,
ACTIONS(446), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(500), 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,
[26253] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1622), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1624), 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,
[26306] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1626), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1628), 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,
[26359] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1630), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1632), 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,
[26412] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1642), 1,
anon_sym_LPAREN,
STATE(460), 1,
sym_actual_parameter_part,
STATE(505), 1,
sym_index_constraint,
ACTIONS(1634), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1636), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[26474] = 20,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(1644), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1896), 1,
sym__simple_expression,
STATE(1897), 1,
sym_chunk_specification,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[26560] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1648), 1,
sym_identifier,
ACTIONS(1646), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26612] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1652), 1,
sym_identifier,
ACTIONS(1650), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26664] = 20,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(1542), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(697), 1,
sym_range_g,
STATE(1894), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(446), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(500), 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,
[26750] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1656), 1,
sym_identifier,
ACTIONS(1654), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26802] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1660), 1,
sym_identifier,
ACTIONS(1658), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26854] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1664), 1,
sym_identifier,
ACTIONS(1662), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26906] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1668), 1,
sym_identifier,
ACTIONS(1666), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[26958] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1672), 1,
sym_identifier,
ACTIONS(1670), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27010] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1676), 1,
sym_identifier,
ACTIONS(1674), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27062] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1680), 1,
sym_identifier,
ACTIONS(1678), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27114] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1684), 1,
sym_identifier,
ACTIONS(1682), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27166] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1688), 1,
sym_identifier,
ACTIONS(1686), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27218] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1692), 1,
sym_identifier,
ACTIONS(1690), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27270] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1696), 1,
sym_identifier,
ACTIONS(1694), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27322] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1700), 1,
sym_identifier,
ACTIONS(1698), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27374] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1704), 1,
sym_identifier,
ACTIONS(1702), 43,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27426] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1642), 1,
anon_sym_LPAREN,
STATE(460), 1,
sym_actual_parameter_part,
STATE(516), 1,
sym_index_constraint,
ACTIONS(1706), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1708), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[27488] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(668), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[27571] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1712), 1,
sym_identifier,
ACTIONS(1710), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27622] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(666), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[27705] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1449), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[27788] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(585), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[27871] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1716), 1,
sym_identifier,
ACTIONS(1714), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27922] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1720), 1,
sym_identifier,
ACTIONS(1718), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[27973] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1724), 1,
sym_identifier,
ACTIONS(1722), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[28024] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1730), 1,
anon_sym_LPAREN,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(1726), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1728), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[28083] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1806), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28166] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1563), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28249] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(612), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28332] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1734), 1,
sym_identifier,
ACTIONS(1732), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[28383] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1794), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28466] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(616), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28549] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1738), 1,
sym_identifier,
ACTIONS(1736), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[28600] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1377), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28683] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(360), 1,
anon_sym_PLUS,
ACTIONS(362), 1,
anon_sym_DASH,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(508), 1,
sym_unary_adding_operator,
STATE(528), 1,
sym_term,
STATE(1952), 1,
sym__simple_expression,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[28766] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1742), 1,
sym_identifier,
ACTIONS(1740), 42,
ts_builtin_sym_end,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token1,
aux_sym_with_clause_token1,
aux_sym_with_clause_token2,
aux_sym_use_clause_token2,
aux_sym_subunit_token1,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_raise_expression_token1,
aux_sym_primary_null_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_declare_expression_token1,
aux_sym_case_expression_token1,
aux_sym_interface_type_definition_token1,
aux_sym_entry_declaration_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
aux_sym_subtype_declaration_token1,
[28817] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(1744), 1,
sym_tick,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(1726), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1728), 31,
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_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,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[28874] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1746), 1,
anon_sym_EQ_GT,
ACTIONS(1750), 1,
anon_sym_PIPE,
STATE(751), 1,
sym__parenthesized_expression,
STATE(1357), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[28940] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1761), 1,
anon_sym_SLASH,
STATE(502), 1,
aux_sym_term_repeat1,
STATE(517), 1,
sym_multiplying_operator,
ACTIONS(1758), 3,
anon_sym_STAR,
anon_sym_mod,
anon_sym_rem,
ACTIONS(1754), 4,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
ACTIONS(1756), 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,
[28996] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1770), 1,
anon_sym_SLASH,
STATE(502), 1,
aux_sym_term_repeat1,
STATE(517), 1,
sym_multiplying_operator,
ACTIONS(1768), 3,
anon_sym_STAR,
anon_sym_mod,
anon_sym_rem,
ACTIONS(1764), 4,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
ACTIONS(1766), 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,
[29052] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1770), 1,
anon_sym_SLASH,
STATE(503), 1,
aux_sym_term_repeat1,
STATE(517), 1,
sym_multiplying_operator,
ACTIONS(1768), 3,
anon_sym_STAR,
anon_sym_mod,
anon_sym_rem,
ACTIONS(1772), 4,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
ACTIONS(1774), 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,
[29108] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1776), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1778), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29155] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1784), 1,
anon_sym_STAR_STAR,
ACTIONS(1780), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1782), 32,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29204] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1786), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1788), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29251] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(526), 1,
sym_term,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[29322] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1790), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1792), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29369] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1794), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1796), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29416] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1798), 1,
anon_sym_EQ_GT,
ACTIONS(1800), 1,
anon_sym_PIPE,
STATE(751), 1,
sym__parenthesized_expression,
STATE(1357), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1591), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[29483] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1800), 1,
anon_sym_PIPE,
ACTIONS(1802), 1,
anon_sym_EQ_GT,
STATE(751), 1,
sym__parenthesized_expression,
STATE(1231), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1591), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[29550] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(534), 1,
sym_term,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(504), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[29621] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1804), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1806), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29668] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1808), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1810), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29715] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1634), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1636), 33,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
anon_sym_DOT_DOT,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
anon_sym_COLON_EQ,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[29762] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(358), 1,
sym_numeric_literal,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(376), 1,
aux_sym_factor_abs_token1,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(450), 1,
aux_sym_relation_membership_token1,
ACTIONS(540), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(519), 4,
sym__factor,
sym_factor_power,
sym_factor_abs,
sym_factor_not,
STATE(489), 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,
[29830] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1812), 1,
anon_sym_LPAREN,
ACTIONS(1814), 1,
aux_sym_attribute_designator_token1,
ACTIONS(1816), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1818), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1820), 1,
aux_sym_attribute_designator_token4,
ACTIONS(1822), 1,
aux_sym_compilation_unit_token1,
ACTIONS(1824), 1,
aux_sym_with_clause_token1,
ACTIONS(1826), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1832), 1,
aux_sym_allocator_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(1838), 1,
aux_sym_private_type_declaration_token1,
ACTIONS(1840), 1,
aux_sym_private_type_declaration_token2,
ACTIONS(1842), 1,
aux_sym_private_extension_declaration_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(1846), 1,
aux_sym_interface_type_definition_token2,
STATE(1224), 1,
sym_null_exclusion,
STATE(1488), 1,
sym_record_definition,
ACTIONS(1834), 2,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_interface_type_definition_token1,
STATE(1221), 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,
[29914] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1848), 5,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_SLASH,
ACTIONS(1850), 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,
[29960] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1852), 5,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_SLASH,
ACTIONS(1854), 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,
[30006] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1856), 5,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_SLASH,
ACTIONS(1858), 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,
[30052] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1860), 5,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_SLASH,
ACTIONS(1862), 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,
[30098] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1864), 1,
sym_identifier,
ACTIONS(1868), 1,
anon_sym_LT_LT,
STATE(523), 2,
sym_label,
aux_sym__sequence_of_statements_repeat2,
ACTIONS(1866), 34,
sym_gnatprep_identifier,
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_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
[30148] = 20,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1812), 1,
anon_sym_LPAREN,
ACTIONS(1814), 1,
aux_sym_attribute_designator_token1,
ACTIONS(1816), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1818), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1820), 1,
aux_sym_attribute_designator_token4,
ACTIONS(1826), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(1846), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(1871), 1,
aux_sym_with_clause_token1,
ACTIONS(1873), 1,
aux_sym_allocator_token1,
ACTIONS(1875), 1,
aux_sym_private_type_declaration_token1,
ACTIONS(1877), 1,
aux_sym_private_type_declaration_token2,
STATE(1224), 1,
sym_null_exclusion,
STATE(1488), 1,
sym_record_definition,
ACTIONS(1834), 3,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_private_extension_declaration_token1,
aux_sym_interface_type_definition_token1,
STATE(1218), 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,
[30227] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(751), 1,
sym__parenthesized_expression,
ACTIONS(1591), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
ACTIONS(1584), 6,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[30285] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1885), 1,
anon_sym_DASH,
STATE(513), 1,
sym_binary_adding_operator,
STATE(529), 1,
aux_sym__simple_expression_repeat1,
ACTIONS(1883), 2,
anon_sym_PLUS,
anon_sym_AMP,
ACTIONS(1879), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1881), 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,
[30337] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1887), 1,
sym_identifier,
ACTIONS(1889), 35,
sym_gnatprep_identifier,
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,
anon_sym_LT_LT,
aux_sym_pragma_g_token1,
aux_sym_if_expression_token1,
aux_sym_elsif_expression_item_token1,
aux_sym_result_profile_token1,
aux_sym_asynchronous_select_token1,
aux_sym_asynchronous_select_token2,
aux_sym_requeue_statement_token1,
aux_sym_accept_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_exit_statement_token1,
aux_sym_goto_statement_token1,
aux_sym_delay_until_statement_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
[30381] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1885), 1,
anon_sym_DASH,
STATE(513), 1,
sym_binary_adding_operator,
STATE(530), 1,
aux_sym__simple_expression_repeat1,
ACTIONS(1883), 2,
anon_sym_PLUS,
anon_sym_AMP,
ACTIONS(1891), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1893), 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,
[30433] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1885), 1,
anon_sym_DASH,
STATE(513), 1,
sym_binary_adding_operator,
STATE(531), 1,
aux_sym__simple_expression_repeat1,
ACTIONS(1883), 2,
anon_sym_PLUS,
anon_sym_AMP,
ACTIONS(1895), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1897), 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,
[30485] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1885), 1,
anon_sym_DASH,
STATE(513), 1,
sym_binary_adding_operator,
STATE(531), 1,
aux_sym__simple_expression_repeat1,
ACTIONS(1883), 2,
anon_sym_PLUS,
anon_sym_AMP,
ACTIONS(1879), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1881), 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,
[30537] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1906), 1,
anon_sym_DASH,
STATE(513), 1,
sym_binary_adding_operator,
STATE(531), 1,
aux_sym__simple_expression_repeat1,
ACTIONS(1903), 2,
anon_sym_PLUS,
anon_sym_AMP,
ACTIONS(1899), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1901), 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,
[30589] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1814), 1,
aux_sym_attribute_designator_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(1846), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(1909), 1,
anon_sym_LPAREN,
ACTIONS(1911), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1913), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1915), 1,
aux_sym_attribute_designator_token4,
ACTIONS(1917), 1,
aux_sym_compilation_unit_token1,
ACTIONS(1919), 1,
aux_sym_with_clause_token1,
ACTIONS(1921), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1923), 1,
aux_sym_allocator_token1,
ACTIONS(1925), 1,
aux_sym_private_type_declaration_token1,
ACTIONS(1927), 1,
aux_sym_private_type_declaration_token2,
ACTIONS(1929), 1,
aux_sym_private_extension_declaration_token1,
STATE(1224), 1,
sym_null_exclusion,
STATE(1263), 1,
sym_interface_type_definition,
STATE(1264), 1,
sym_array_type_definition,
ACTIONS(1834), 2,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_interface_type_definition_token1,
STATE(1267), 3,
sym__access_type_definition,
sym_access_to_subprogram_definition,
sym_access_to_object_definition,
STATE(1148), 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,
[30670] = 22,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1814), 1,
aux_sym_attribute_designator_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(1846), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(1909), 1,
anon_sym_LPAREN,
ACTIONS(1911), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1913), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1915), 1,
aux_sym_attribute_designator_token4,
ACTIONS(1917), 1,
aux_sym_compilation_unit_token1,
ACTIONS(1919), 1,
aux_sym_with_clause_token1,
ACTIONS(1921), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1923), 1,
aux_sym_allocator_token1,
ACTIONS(1925), 1,
aux_sym_private_type_declaration_token1,
ACTIONS(1929), 1,
aux_sym_private_extension_declaration_token1,
ACTIONS(1931), 1,
aux_sym_private_type_declaration_token2,
STATE(1224), 1,
sym_null_exclusion,
STATE(1263), 1,
sym_interface_type_definition,
STATE(1264), 1,
sym_array_type_definition,
ACTIONS(1834), 2,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_interface_type_definition_token1,
STATE(1267), 3,
sym__access_type_definition,
sym_access_to_subprogram_definition,
sym_access_to_object_definition,
STATE(1139), 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,
[30751] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1899), 4,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
ACTIONS(1901), 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,
[30793] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(1933), 1,
sym_numeric_literal,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(489), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
STATE(521), 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,
[30849] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(751), 1,
sym__parenthesized_expression,
ACTIONS(1584), 3,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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(1598), 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,
[30903] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(1935), 1,
sym_numeric_literal,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(489), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
STATE(520), 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,
[30959] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(1937), 1,
sym_numeric_literal,
ACTIONS(1939), 1,
aux_sym_primary_null_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(489), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
STATE(522), 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,
[31015] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(366), 1,
anon_sym_LBRACK,
ACTIONS(380), 1,
aux_sym_allocator_token1,
ACTIONS(438), 1,
aux_sym_primary_null_token1,
ACTIONS(540), 1,
sym_identifier,
ACTIONS(1937), 1,
sym_numeric_literal,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(538), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(489), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
STATE(522), 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,
[31071] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1941), 1,
sym_identifier,
ACTIONS(1943), 5,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
ACTIONS(1794), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_SLASH,
anon_sym_mod,
anon_sym_rem,
ACTIONS(1796), 18,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_STAR,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
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,
[31114] = 19,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(69), 1,
aux_sym_accept_statement_token1,
ACTIONS(77), 1,
aux_sym_delay_until_statement_token1,
ACTIONS(1945), 1,
sym_identifier,
ACTIONS(1947), 1,
aux_sym_iterator_filter_token1,
ACTIONS(1949), 1,
aux_sym_terminate_alternative_token1,
STATE(32), 1,
sym_accept_statement,
STATE(33), 1,
sym_procedure_call_statement,
STATE(841), 1,
sym_guard,
STATE(1132), 1,
sym_select_alternative,
STATE(1412), 1,
sym_entry_call_alternative,
STATE(1974), 1,
sym_triggering_alternative,
STATE(2005), 1,
sym_value_sequence,
STATE(1129), 2,
sym__name,
sym_function_call,
STATE(31), 3,
sym__delay_statement,
sym_delay_until_statement,
sym_delay_relative_statement,
STATE(1330), 3,
sym_delay_alternative,
sym_accept_alternative,
sym_terminate_alternative,
ACTIONS(9), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1030), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[31184] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1798), 1,
anon_sym_EQ_GT,
ACTIONS(1800), 1,
anon_sym_PIPE,
ACTIONS(1951), 1,
anon_sym_COMMA,
ACTIONS(1954), 1,
anon_sym_COLON,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
STATE(1357), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1586), 17,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
sym_tick,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_chunk_specification_token1,
anon_sym_DOT_DOT,
aux_sym_expression_token1,
aux_sym_expression_token3,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
[31234] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(751), 1,
sym__parenthesized_expression,
ACTIONS(1586), 2,
sym_tick,
anon_sym_DOT,
STATE(708), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1956), 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,
[31283] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1964), 1,
aux_sym_chunk_specification_token1,
ACTIONS(1966), 1,
aux_sym_relation_membership_token1,
STATE(492), 1,
sym_relational_operator,
ACTIONS(1958), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1960), 3,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(1962), 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,
[31328] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1798), 1,
anon_sym_EQ_GT,
ACTIONS(1800), 1,
anon_sym_PIPE,
STATE(1357), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1584), 7,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_DOT,
ACTIONS(1586), 18,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_mod,
anon_sym_rem,
sym_tick,
anon_sym_COMMA,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_chunk_specification_token1,
anon_sym_DOT_DOT,
aux_sym_expression_token1,
aux_sym_expression_token3,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
[31370] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(1598), 1,
anon_sym_RPAREN,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(1954), 1,
anon_sym_COLON,
ACTIONS(1968), 1,
anon_sym_COMMA,
STATE(751), 1,
sym__parenthesized_expression,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
ACTIONS(1584), 3,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[31425] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1800), 1,
anon_sym_PIPE,
ACTIONS(1802), 1,
anon_sym_EQ_GT,
STATE(1231), 1,
aux_sym_discriminant_association_repeat1,
ACTIONS(1584), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1586), 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,
[31466] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(1972), 1,
aux_sym_package_specification_token3,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(554), 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,
[31522] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1954), 1,
anon_sym_COLON,
ACTIONS(1968), 1,
anon_sym_COMMA,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
ACTIONS(1584), 5,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1586), 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,
[31562] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(1978), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(551), 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,
[31618] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(1980), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(554), 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,
[31674] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1982), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(1794), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1796), 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,
[31710] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(1980), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(548), 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,
[31766] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1984), 1,
sym_identifier,
ACTIONS(1987), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1990), 1,
aux_sym_package_specification_token3,
ACTIONS(1992), 1,
aux_sym_relation_membership_token1,
ACTIONS(1995), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1998), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2001), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2004), 1,
aux_sym_global_mode_token1,
ACTIONS(2007), 1,
aux_sym_pragma_g_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(554), 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,
[31822] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2010), 1,
sym_tick,
ACTIONS(2013), 1,
anon_sym_EQ_GT,
ACTIONS(1584), 6,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1586), 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,
[31859] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
ACTIONS(2019), 1,
aux_sym_allocator_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1550), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[31916] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
ACTIONS(2021), 1,
aux_sym_allocator_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1659), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[31973] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
ACTIONS(2023), 1,
aux_sym_allocator_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1771), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32030] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
ACTIONS(2025), 1,
aux_sym_allocator_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1772), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32087] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1588), 1,
anon_sym_LPAREN,
ACTIONS(1594), 1,
aux_sym_attribute_designator_token2,
ACTIONS(1596), 1,
aux_sym_attribute_designator_token3,
ACTIONS(2027), 1,
aux_sym_range_attribute_designator_token1,
STATE(751), 1,
sym__parenthesized_expression,
ACTIONS(1598), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
ACTIONS(1584), 3,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_DOT,
STATE(745), 7,
sym_discriminant_constraint,
sym__constraint,
sym__scalar_constraint,
sym_range_constraint,
sym_index_constraint,
sym_digits_constraint,
sym_delta_constraint,
ACTIONS(1586), 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,
[32134] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
ACTIONS(2030), 1,
aux_sym_allocator_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1876), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32191] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1921), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32245] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1553), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 10,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym__protected_operation_declaration,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym_pragma_g,
sym_record_representation_clause,
sym_subprogram_declaration,
aux_sym_protected_definition_repeat1,
[32299] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2034), 1,
anon_sym_LPAREN,
ACTIONS(2032), 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,
[32331] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2040), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2038), 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,
[32371] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2042), 1,
sym_identifier,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2050), 1,
aux_sym_exception_declaration_token1,
STATE(729), 1,
sym_null_exclusion,
STATE(1954), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2044), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
ACTIONS(2046), 5,
aux_sym_iterated_element_association_token1,
aux_sym_subprogram_body_token1,
aux_sym_declare_expression_token1,
aux_sym_loop_statement_token1,
aux_sym_iteration_scheme_token1,
STATE(993), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[32421] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1707), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32475] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1843), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32529] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2052), 1,
aux_sym_general_access_modifier_token1,
ACTIONS(2054), 1,
aux_sym_component_definition_token1,
ACTIONS(2056), 1,
aux_sym_exception_declaration_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1036), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1035), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[32587] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2058), 1,
aux_sym_package_specification_token3,
ACTIONS(2060), 1,
aux_sym_subunit_token1,
ACTIONS(2062), 1,
aux_sym_entry_declaration_token1,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(582), 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,
[32641] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2064), 1,
anon_sym_COLON,
ACTIONS(1584), 5,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(1586), 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,
aux_sym_chunk_specification_token1,
anon_sym_SEMI,
aux_sym_expression_token1,
aux_sym_expression_token3,
aux_sym_expression_token5,
aux_sym_relation_membership_token1,
anon_sym_STAR_STAR,
[32675] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2015), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2017), 1,
aux_sym_package_specification_token3,
STATE(970), 1,
sym_overriding_indicator,
STATE(1708), 1,
sym_protected_definition,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(579), 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,
[32729] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2068), 1,
aux_sym_expression_token1,
ACTIONS(2070), 1,
aux_sym_expression_token3,
ACTIONS(2072), 1,
aux_sym_expression_token5,
STATE(626), 1,
aux_sym_expression_repeat1,
STATE(629), 1,
aux_sym_expression_repeat2,
STATE(631), 1,
aux_sym_expression_repeat3,
ACTIONS(2066), 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,
[32770] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2074), 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,
[32799] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2076), 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,
[32828] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2078), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2081), 1,
aux_sym_package_specification_token3,
ACTIONS(2083), 1,
aux_sym_relation_membership_token1,
ACTIONS(2086), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2089), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2092), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2095), 1,
aux_sym_global_mode_token1,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(576), 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,
[32879] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2062), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2098), 1,
aux_sym_package_specification_token3,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(576), 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,
[32930] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(693), 1,
sym_null_exclusion,
STATE(987), 1,
sym__subtype_indication,
STATE(1824), 1,
sym__assign_value,
STATE(2005), 1,
sym_value_sequence,
STATE(1027), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[32985] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(1978), 1,
aux_sym_package_specification_token3,
ACTIONS(2102), 1,
aux_sym_compilation_unit_token1,
STATE(970), 1,
sym_overriding_indicator,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(581), 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,
[33036] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2058), 1,
aux_sym_package_specification_token3,
ACTIONS(2062), 1,
aux_sym_entry_declaration_token1,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(582), 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,
[33087] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2104), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2109), 1,
aux_sym_relation_membership_token1,
ACTIONS(2112), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2115), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2118), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2121), 1,
aux_sym_global_mode_token1,
ACTIONS(2124), 1,
aux_sym_pragma_g_token1,
STATE(970), 1,
sym_overriding_indicator,
ACTIONS(2107), 2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token3,
STATE(1171), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(581), 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,
[33136] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2062), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2127), 1,
aux_sym_package_specification_token3,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(576), 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,
[33187] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2131), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2133), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2135), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(675), 1,
sym_general_access_modifier,
STATE(771), 1,
sym_null_exclusion,
STATE(1249), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2129), 2,
aux_sym_use_clause_token1,
aux_sym_general_access_modifier_token1,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33242] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2062), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2127), 1,
aux_sym_package_specification_token3,
STATE(996), 1,
sym_overriding_indicator,
STATE(1097), 1,
sym_function_specification,
STATE(1106), 1,
sym_procedure_specification,
STATE(1108), 1,
sym__subprogram_specification,
STATE(577), 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,
[33293] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2137), 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,
[33322] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2054), 1,
aux_sym_component_definition_token1,
ACTIONS(2139), 1,
aux_sym_general_access_modifier_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1036), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1035), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33377] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2141), 1,
aux_sym_general_access_modifier_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1053), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1027), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33429] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2143), 1,
aux_sym_general_access_modifier_token1,
ACTIONS(2145), 1,
aux_sym_component_definition_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1222), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1086), 2,
sym_access_definition,
sym__return_subtype_indication,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33481] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(368), 1,
aux_sym_chunk_specification_token1,
ACTIONS(390), 1,
aux_sym_non_empty_mode_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2147), 1,
sym_identifier,
ACTIONS(2151), 1,
aux_sym_component_definition_token1,
STATE(691), 1,
sym_non_empty_mode,
STATE(739), 1,
sym_null_exclusion,
STATE(957), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2149), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(851), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[33533] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2153), 1,
aux_sym_general_access_modifier_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1222), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
STATE(1163), 2,
sym_access_definition,
sym__return_subtype_indication,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33582] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2155), 1,
aux_sym_component_definition_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(985), 1,
sym_component_definition,
STATE(1095), 1,
sym_access_definition,
STATE(1096), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33633] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(2157), 1,
aux_sym_package_specification_token1,
ACTIONS(2160), 1,
aux_sym_with_clause_token2,
ACTIONS(2162), 1,
aux_sym_use_clause_token2,
ACTIONS(2164), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2167), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(1980), 1,
sym__defining_identifier_list,
STATE(898), 2,
sym_formal_concrete_subprogram_declaration,
sym_formal_abstract_subprogram_declaration,
STATE(599), 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,
[33680] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2170), 1,
sym_identifier,
ACTIONS(2173), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(2178), 1,
aux_sym_with_clause_token2,
ACTIONS(2181), 1,
aux_sym_use_clause_token2,
ACTIONS(2184), 1,
aux_sym_pragma_g_token1,
STATE(1980), 1,
sym__defining_identifier_list,
STATE(898), 2,
sym_formal_concrete_subprogram_declaration,
sym_formal_abstract_subprogram_declaration,
ACTIONS(2176), 3,
aux_sym_package_specification_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
STATE(593), 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,
[33723] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1047), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1048), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33772] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(368), 1,
aux_sym_chunk_specification_token1,
ACTIONS(390), 1,
aux_sym_non_empty_mode_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2187), 1,
sym_identifier,
STATE(642), 1,
sym_non_empty_mode,
STATE(706), 1,
sym_null_exclusion,
STATE(1003), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2189), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(863), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[33821] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2193), 1,
anon_sym_PIPE,
STATE(596), 1,
aux_sym_membership_choice_list_repeat1,
ACTIONS(2191), 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,
[33852] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(1844), 1,
aux_sym_array_type_definition_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(987), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1027), 2,
sym_access_definition,
sym_array_type_definition,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[33901] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2198), 1,
anon_sym_PIPE,
STATE(596), 1,
aux_sym_membership_choice_list_repeat1,
ACTIONS(2196), 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,
[33932] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(15), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(2160), 1,
aux_sym_with_clause_token2,
ACTIONS(2162), 1,
aux_sym_use_clause_token2,
STATE(1980), 1,
sym__defining_identifier_list,
STATE(898), 2,
sym_formal_concrete_subprogram_declaration,
sym_formal_abstract_subprogram_declaration,
ACTIONS(2200), 3,
aux_sym_package_specification_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
STATE(593), 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,
[33975] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2198), 1,
anon_sym_PIPE,
STATE(598), 1,
aux_sym_membership_choice_list_repeat1,
ACTIONS(2202), 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,
[34006] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2206), 1,
anon_sym_DOT_DOT,
ACTIONS(2204), 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,
[34035] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2155), 1,
aux_sym_component_definition_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1095), 1,
sym_access_definition,
STATE(1096), 1,
sym__subtype_indication,
STATE(1128), 1,
sym_component_definition,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34086] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2155), 1,
aux_sym_component_definition_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1095), 1,
sym_access_definition,
STATE(1096), 1,
sym__subtype_indication,
STATE(1126), 1,
sym_component_definition,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34137] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(2208), 1,
sym_identifier,
ACTIONS(2210), 1,
anon_sym_LBRACK,
ACTIONS(2214), 1,
aux_sym_range_attribute_designator_token1,
STATE(444), 1,
sym_attribute_designator,
STATE(574), 1,
sym_range_attribute_designator,
ACTIONS(2212), 4,
aux_sym_attribute_designator_token1,
aux_sym_attribute_designator_token2,
aux_sym_attribute_designator_token3,
aux_sym_attribute_designator_token4,
STATE(449), 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,
[34178] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2191), 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,
[34204] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2216), 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,
[34230] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2218), 1,
sym_identifier,
ACTIONS(2220), 19,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_use_clause_token2,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_interface_type_definition_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
aux_sym_pragma_g_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_subtype_declaration_token1,
[34258] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2222), 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,
[34284] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2224), 1,
sym_identifier,
ACTIONS(2226), 19,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_use_clause_token2,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_interface_type_definition_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
aux_sym_pragma_g_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_subtype_declaration_token1,
[34312] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1222), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
STATE(1159), 2,
sym_access_definition,
sym__return_subtype_indication,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34358] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1386), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
STATE(1395), 2,
sym__loop_parameter_subtype_indication,
sym_access_definition,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34404] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2228), 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,
[34430] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2230), 1,
sym_identifier,
ACTIONS(2234), 1,
anon_sym_SEMI,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1291), 1,
sym_subprogram_default,
STATE(1630), 1,
sym_aspect_specification,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2238), 2,
aux_sym_primary_null_token1,
anon_sym_LT_GT,
ACTIONS(2232), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(971), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[34474] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(528), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1222), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1127), 2,
sym_access_definition,
sym__return_subtype_indication,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(354), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(451), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34520] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2240), 1,
sym_identifier,
ACTIONS(2242), 19,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_use_clause_token2,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_interface_type_definition_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
aux_sym_pragma_g_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_subtype_declaration_token1,
[34548] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2244), 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,
[34574] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2246), 1,
sym_identifier,
ACTIONS(2248), 19,
aux_sym_iterated_element_association_token1,
aux_sym_iterated_element_association_token2,
aux_sym_package_specification_token1,
aux_sym_package_specification_token3,
aux_sym_use_clause_token2,
aux_sym_subprogram_body_token1,
aux_sym_relation_membership_token1,
aux_sym_access_to_subprogram_definition_token1,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_interface_type_definition_token1,
aux_sym_generic_formal_part_token1,
aux_sym_global_mode_token1,
aux_sym_pragma_g_token1,
aux_sym_gnatprep_declarative_if_statement_token1,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
aux_sym_subtype_declaration_token1,
[34602] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2042), 1,
sym_identifier,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2050), 1,
aux_sym_exception_declaration_token1,
STATE(729), 1,
sym_null_exclusion,
STATE(1954), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2044), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(993), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[34645] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
ACTIONS(2254), 1,
aux_sym_allocator_token1,
STATE(1642), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[34690] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1964), 1,
aux_sym_chunk_specification_token1,
ACTIONS(1966), 1,
aux_sym_relation_membership_token1,
ACTIONS(2206), 1,
anon_sym_DOT_DOT,
STATE(492), 1,
sym_relational_operator,
ACTIONS(1958), 3,
anon_sym_EQ,
anon_sym_LT,
anon_sym_GT,
ACTIONS(1960), 3,
anon_sym_SLASH_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(1962), 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,
[34727] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(693), 1,
sym_null_exclusion,
STATE(1100), 1,
sym_access_definition,
STATE(1101), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[34772] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
ACTIONS(2256), 1,
aux_sym_allocator_token1,
STATE(1755), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[34817] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
ACTIONS(2258), 1,
aux_sym_allocator_token1,
STATE(1754), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[34862] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(368), 1,
aux_sym_chunk_specification_token1,
ACTIONS(390), 1,
aux_sym_non_empty_mode_token1,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2260), 1,
sym_identifier,
STATE(687), 1,
sym_non_empty_mode,
STATE(823), 1,
sym_null_exclusion,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2262), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(855), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[34905] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(2208), 1,
sym_identifier,
ACTIONS(2210), 1,
anon_sym_LBRACK,
STATE(444), 1,
sym_attribute_designator,
ACTIONS(2212), 4,
aux_sym_attribute_designator_token1,
aux_sym_attribute_designator_token2,
aux_sym_attribute_designator_token3,
aux_sym_attribute_designator_token4,
STATE(449), 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,
[34940] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2068), 1,
aux_sym_expression_token1,
STATE(635), 1,
aux_sym_expression_repeat1,
ACTIONS(2264), 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,
[34969] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2266), 1,
sym_identifier,
ACTIONS(2270), 1,
aux_sym_package_specification_token3,
ACTIONS(2272), 1,
aux_sym_at_clause_token1,
STATE(674), 1,
sym_mod_clause,
STATE(2005), 1,
sym_value_sequence,
STATE(657), 2,
sym_component_clause,
aux_sym_record_representation_clause_repeat1,
ACTIONS(2268), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1045), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35010] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
ACTIONS(2274), 1,
aux_sym_allocator_token1,
STATE(1555), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35055] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2070), 1,
aux_sym_expression_token3,
STATE(632), 1,
aux_sym_expression_repeat2,
ACTIONS(2264), 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,
[35084] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2278), 1,
aux_sym_expression_token5,
STATE(630), 1,
aux_sym_expression_repeat3,
ACTIONS(2276), 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,
[35113] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2072), 1,
aux_sym_expression_token5,
STATE(630), 1,
aux_sym_expression_repeat3,
ACTIONS(2264), 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,
[35142] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2283), 1,
aux_sym_expression_token3,
STATE(632), 1,
aux_sym_expression_repeat2,
ACTIONS(2281), 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,
[35171] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
ACTIONS(2286), 1,
aux_sym_allocator_token1,
STATE(1853), 1,
sym_overriding_indicator,
STATE(1854), 1,
sym_task_definition,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35216] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(2208), 1,
sym_identifier,
ACTIONS(2210), 1,
anon_sym_LBRACK,
STATE(1122), 1,
sym_attribute_designator,
ACTIONS(2212), 4,
aux_sym_attribute_designator_token1,
aux_sym_attribute_designator_token2,
aux_sym_attribute_designator_token3,
aux_sym_attribute_designator_token4,
STATE(449), 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,
[35251] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2290), 1,
aux_sym_expression_token1,
STATE(635), 1,
aux_sym_expression_repeat1,
ACTIONS(2288), 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,
[35280] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2293), 1,
sym_identifier,
ACTIONS(2297), 1,
anon_sym_LPAREN,
STATE(515), 1,
sym__subtype_indication_paren_constraint,
STATE(673), 1,
sym_subpool_specification,
STATE(765), 1,
sym_null_exclusion,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2295), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(480), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35323] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2276), 18,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token2,
aux_sym_expression_token4,
aux_sym_expression_token5,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[35347] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2281), 18,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[35371] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(1866), 1,
sym_task_definition,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35413] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2288), 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,
[35437] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2299), 18,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
anon_sym_PIPE,
aux_sym_range_attribute_designator_token1,
aux_sym_expression_token2,
aux_sym_expression_token3,
aux_sym_expression_token4,
aux_sym_elsif_expression_item_token1,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[35461] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2301), 1,
sym_identifier,
STATE(719), 1,
sym_null_exclusion,
STATE(1001), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2303), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(870), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35501] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2305), 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,
[35525] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2042), 1,
sym_identifier,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
STATE(729), 1,
sym_null_exclusion,
STATE(1954), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2044), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(993), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35565] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
STATE(1746), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35607] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2307), 1,
sym_identifier,
ACTIONS(2311), 1,
aux_sym_component_choice_list_token1,
STATE(1174), 1,
sym_exception_choice,
STATE(1777), 1,
sym_exception_choice_list,
STATE(1779), 1,
sym_choice_parameter_specification,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2309), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(975), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35647] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2313), 1,
sym_identifier,
ACTIONS(2317), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2319), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2321), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2323), 1,
aux_sym_general_access_modifier_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2315), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(804), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35687] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(1744), 1,
sym_tick,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1273), 1,
sym_iterator_filter,
ACTIONS(1726), 2,
anon_sym_DASH,
anon_sym_STAR,
ACTIONS(2325), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
ACTIONS(1728), 7,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_SLASH,
anon_sym_mod,
anon_sym_rem,
anon_sym_DOT_DOT,
anon_sym_STAR_STAR,
[35727] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2230), 1,
sym_identifier,
ACTIONS(2329), 1,
aux_sym_private_type_declaration_token1,
STATE(1304), 1,
sym_subprogram_default,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2238), 2,
aux_sym_primary_null_token1,
anon_sym_LT_GT,
ACTIONS(2232), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(971), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35765] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
STATE(1548), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35807] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2331), 1,
sym_identifier,
STATE(738), 1,
sym_null_exclusion,
STATE(853), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2333), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(783), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35847] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2048), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2335), 1,
sym_identifier,
STATE(760), 1,
sym_null_exclusion,
STATE(1137), 1,
sym_access_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2337), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(914), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35887] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2339), 1,
sym_identifier,
ACTIONS(2343), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2345), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2347), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2349), 1,
aux_sym_general_access_modifier_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2341), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(781), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[35927] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(1935), 1,
sym_task_definition,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[35969] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(1744), 1,
sym_tick,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1212), 1,
sym_iterator_filter,
ACTIONS(1726), 2,
anon_sym_DASH,
anon_sym_STAR,
ACTIONS(2351), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
ACTIONS(1728), 7,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_SLASH,
anon_sym_mod,
anon_sym_rem,
anon_sym_DOT_DOT,
anon_sym_STAR_STAR,
[36009] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2250), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2252), 1,
aux_sym_package_specification_token3,
STATE(1745), 1,
sym_task_definition,
STATE(1853), 1,
sym_overriding_indicator,
STATE(664), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[36051] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2266), 1,
sym_identifier,
ACTIONS(2353), 1,
aux_sym_package_specification_token3,
STATE(2005), 1,
sym_value_sequence,
STATE(681), 2,
sym_component_clause,
aux_sym_record_representation_clause_repeat1,
ACTIONS(2268), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1045), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36086] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1154), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36125] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2311), 1,
aux_sym_component_choice_list_token1,
ACTIONS(2355), 1,
sym_identifier,
STATE(1174), 1,
sym_exception_choice,
STATE(1556), 1,
sym_exception_choice_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2309), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(975), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36162] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2357), 1,
sym_identifier,
ACTIONS(2361), 1,
aux_sym_use_clause_token1,
ACTIONS(2363), 1,
aux_sym_use_clause_token2,
STATE(1995), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36199] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1131), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36238] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1074), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36277] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(2365), 1,
aux_sym_primary_null_token1,
ACTIONS(2367), 1,
aux_sym_case_expression_token1,
STATE(1400), 1,
sym_variant_part,
STATE(1790), 1,
sym_component_list,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(669), 9,
sym__component_item,
sym_component_declaration,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_enumeration_representation_clause,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_component_list_repeat1,
[36316] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(49), 1,
aux_sym_entry_declaration_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2369), 1,
aux_sym_compilation_unit_token1,
ACTIONS(2371), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(672), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[36355] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1534), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36394] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(733), 1,
sym_range_constraint,
ACTIONS(2373), 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,
[36421] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1092), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36460] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1600), 1,
aux_sym_range_attribute_designator_token1,
STATE(734), 1,
sym_range_constraint,
ACTIONS(2375), 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,
[36487] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(2367), 1,
aux_sym_case_expression_token1,
STATE(1475), 1,
sym_variant_part,
STATE(1791), 1,
sym__defining_identifier_list,
ACTIONS(2377), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
STATE(684), 9,
sym__component_item,
sym_component_declaration,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_enumeration_representation_clause,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_component_list_repeat1,
[36524] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1463), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36563] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1093), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36602] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2379), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2384), 1,
aux_sym_relation_membership_token1,
ACTIONS(2387), 1,
aux_sym_entry_declaration_token1,
ACTIONS(2390), 1,
aux_sym_global_mode_token1,
ACTIONS(2393), 1,
aux_sym_pragma_g_token1,
STATE(1853), 1,
sym_overriding_indicator,
ACTIONS(2382), 2,
aux_sym_compilation_unit_token1,
aux_sym_package_specification_token3,
STATE(672), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[36639] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2293), 1,
sym_identifier,
STATE(514), 1,
sym__subtype_indication_paren_constraint,
STATE(765), 1,
sym_null_exclusion,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2295), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(480), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36676] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2266), 1,
sym_identifier,
ACTIONS(2353), 1,
aux_sym_package_specification_token3,
STATE(2005), 1,
sym_value_sequence,
STATE(680), 2,
sym_component_clause,
aux_sym_record_representation_clause_repeat1,
ACTIONS(2268), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1045), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36711] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1269), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36750] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1099), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36789] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(57), 1,
aux_sym_pragma_g_token1,
ACTIONS(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(2365), 1,
aux_sym_primary_null_token1,
ACTIONS(2367), 1,
aux_sym_case_expression_token1,
STATE(1400), 1,
sym_variant_part,
STATE(1448), 1,
sym_component_list,
STATE(1791), 1,
sym__defining_identifier_list,
STATE(669), 9,
sym__component_item,
sym_component_declaration,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_enumeration_representation_clause,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_component_list_repeat1,
[36828] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1253), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36867] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(944), 1,
sym_identifier,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
STATE(771), 1,
sym_null_exclusion,
STATE(1511), 1,
sym__subtype_indication,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(820), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(536), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[36906] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2266), 1,
sym_identifier,
ACTIONS(2396), 1,
aux_sym_package_specification_token3,
STATE(2005), 1,
sym_value_sequence,
STATE(681), 2,
sym_component_clause,
aux_sym_record_representation_clause_repeat1,
ACTIONS(2268), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1045), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36941] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2398), 1,
sym_identifier,
ACTIONS(2404), 1,
anon_sym_LBRACK,
ACTIONS(2407), 1,
aux_sym_package_specification_token3,
STATE(2005), 1,
sym_value_sequence,
STATE(681), 2,
sym_component_clause,
aux_sym_record_representation_clause_repeat1,
ACTIONS(2401), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1045), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[36976] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2371), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(686), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[37012] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2409), 1,
sym_identifier,
ACTIONS(2413), 1,
aux_sym_iterator_filter_token1,
ACTIONS(2415), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2411), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(964), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37046] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2417), 1,
sym_identifier,
ACTIONS(2420), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2425), 1,
aux_sym_pragma_g_token1,
STATE(1791), 1,
sym__defining_identifier_list,
ACTIONS(2423), 3,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
aux_sym_case_expression_token1,
STATE(684), 9,
sym__component_item,
sym_component_declaration,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_enumeration_representation_clause,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_component_list_repeat1,
[37078] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2428), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(690), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[37114] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2428), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(672), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[37150] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2430), 1,
sym_identifier,
STATE(794), 1,
sym_null_exclusion,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2432), 4,
sym_gnatprep_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,
[37184] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(31), 1,
aux_sym_relation_membership_token1,
ACTIONS(53), 1,
aux_sym_global_mode_token1,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(2434), 1,
aux_sym_package_specification_token1,
ACTIONS(2436), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2438), 1,
aux_sym_interface_type_definition_token1,
STATE(1029), 1,
sym_overriding_indicator,
STATE(1225), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
STATE(499), 5,
sym__proper_body,
sym_subprogram_body,
sym_package_body,
sym_task_body,
sym_protected_body,
[37224] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2311), 1,
aux_sym_component_choice_list_token1,
ACTIONS(2355), 1,
sym_identifier,
STATE(1479), 1,
sym_exception_choice,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2309), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(975), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37258] = 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(261), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(2440), 1,
aux_sym_package_specification_token3,
STATE(1853), 1,
sym_overriding_indicator,
STATE(672), 9,
sym__aspect_clause,
sym_at_clause,
sym_attribute_definition_clause,
sym_entry_declaration,
sym_enumeration_representation_clause,
sym__task_item,
sym_pragma_g,
sym_record_representation_clause,
aux_sym_task_definition_repeat1,
[37294] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(1828), 1,
aux_sym_relation_membership_token1,
ACTIONS(2260), 1,
sym_identifier,
STATE(823), 1,
sym_null_exclusion,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2262), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(855), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37328] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2442), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
STATE(1997), 2,
sym_loop_parameter_specification,
sym_iterator_specification,
ACTIONS(2444), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1025), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37360] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2446), 1,
sym_identifier,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(2448), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(543), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[37393] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1949), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37422] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1470), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2452), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(929), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37451] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1660), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37480] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2456), 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,
[37501] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1661), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37530] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1991), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37559] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1947), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37588] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2458), 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,
[37609] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2462), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2460), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(992), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37638] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2466), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2464), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(972), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37667] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1944), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37696] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1176), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37725] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2301), 1,
sym_identifier,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2303), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(870), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37756] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1703), 1,
sym_reduction_specification,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2468), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1056), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37785] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2470), 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,
[37806] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1873), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37835] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1434), 1,
sym_index_subtype_definition,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2472), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1022), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37864] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1710), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37893] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1941), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37922] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1645), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37951] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2476), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2474), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1012), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[37980] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1644), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38009] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1773), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38038] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1748), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38067] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1484), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38096] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2478), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2480), 4,
sym_gnatprep_identifier,
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,
[38127] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1445), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38156] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2484), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2482), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1051), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38185] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1696), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38214] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1757), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38243] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1446), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38272] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1831), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38301] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1552), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38330] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1504), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38359] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2488), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2486), 5,
sym_identifier,
sym_gnatprep_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,
[38388] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2490), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2492), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1054), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38419] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2494), 1,
sym_identifier,
ACTIONS(2498), 1,
aux_sym_loop_parameter_specification_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2496), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(858), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38450] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1872), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38479] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2502), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2500), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1052), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38508] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2504), 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,
[38529] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2506), 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,
[38550] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1917), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38579] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2508), 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,
[38600] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1887), 1,
sym__name_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2359), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(925), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38629] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2510), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2512), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(795), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38660] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2260), 1,
sym_identifier,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2262), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(855), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38691] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1551), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38720] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2516), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2514), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1028), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38749] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2520), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2518), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1046), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38778] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1411), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38807] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2524), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2522), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1032), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38836] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2526), 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,
[38857] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2530), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2528), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(991), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38886] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2534), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2532), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1049), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38915] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2538), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2536), 5,
sym_identifier,
sym_gnatprep_identifier,
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,
[38944] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2540), 1,
sym_identifier,
ACTIONS(2544), 1,
aux_sym_package_body_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2542), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(910), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[38975] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2548), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2546), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1020), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39004] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2550), 15,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_chunk_specification_token1,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_iterator_specification_token1,
anon_sym_SEMI,
aux_sym_with_clause_token2,
anon_sym_PIPE,
aux_sym_expression_token1,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
aux_sym_accept_statement_token2,
aux_sym_loop_statement_token1,
[39025] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1762), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39054] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2554), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2552), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(998), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39083] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2558), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2556), 5,
sym_identifier,
sym_gnatprep_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,
[39112] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1452), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39141] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2562), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2560), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1065), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39170] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2564), 1,
sym_identifier,
ACTIONS(2568), 1,
aux_sym_loop_parameter_specification_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2566), 4,
sym_gnatprep_identifier,
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,
[39201] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2570), 1,
sym_identifier,
ACTIONS(2574), 1,
aux_sym_loop_parameter_specification_token1,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2572), 4,
sym_gnatprep_identifier,
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,
[39232] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(1272), 1,
sym__interface_list,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2454), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(868), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39261] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2450), 1,
aux_sym_attribute_designator_token1,
ACTIONS(2576), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2578), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(893), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39292] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2582), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2580), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1007), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39321] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2586), 1,
anon_sym_SEMI,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2584), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1031), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39350] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2588), 2,
sym_identifier,
anon_sym_DASH,
ACTIONS(2590), 12,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_numeric_literal,
anon_sym_PLUS,
sym_target_name,
anon_sym_LPAREN,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
aux_sym_factor_abs_token1,
aux_sym_primary_null_token1,
aux_sym_allocator_token1,
[39372] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2592), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(948), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39398] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2594), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(462), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39424] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2596), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(951), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39450] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2598), 1,
sym_identifier,
ACTIONS(2602), 1,
aux_sym_non_empty_mode_token1,
ACTIONS(2600), 12,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACK,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_relation_membership_token1,
[39474] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2604), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(954), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39500] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2606), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2444), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1025), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39528] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2608), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(953), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39554] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
STATE(1158), 2,
sym__name,
sym_function_call,
ACTIONS(2448), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(543), 5,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
[39582] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2610), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(949), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39608] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2612), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(926), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39634] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2614), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(779), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39660] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2616), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(912), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39686] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2618), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(857), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39712] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2620), 5,
sym_identifier,
sym_gnatprep_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,
[39738] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2622), 5,
sym_identifier,
sym_gnatprep_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,
[39764] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2624), 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,
[39792] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2626), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(909), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39818] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2628), 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,
[39846] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
ACTIONS(2630), 1,
sym_identifier,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2610), 4,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(949), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39874] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2632), 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,
[39902] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2634), 5,
sym_identifier,
sym_gnatprep_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,
[39928] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2636), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(941), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39954] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2638), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1000), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[39980] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2640), 5,
sym_identifier,
sym_gnatprep_identifier,
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,
[40006] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2642), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(856), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40032] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2644), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(933), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40058] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2646), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(897), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40084] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1640), 1,
anon_sym_DOT,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(1744), 1,
sym_tick,
ACTIONS(2648), 1,
aux_sym_range_attribute_designator_token1,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(1726), 2,
anon_sym_DASH,
anon_sym_STAR,
ACTIONS(1728), 7,
anon_sym_PLUS,
anon_sym_AMP,
anon_sym_SLASH,
anon_sym_mod,
anon_sym_rem,
anon_sym_DOT_DOT,
anon_sym_STAR_STAR,
[40116] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2650), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(899), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40142] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2652), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(932), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40168] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2654), 5,
sym_identifier,
sym_gnatprep_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,
[40194] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2656), 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,
[40222] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2658), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(952), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40248] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2660), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1010), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40274] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2662), 5,
sym_identifier,
sym_gnatprep_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,
[40300] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2664), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1039), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40326] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2666), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(989), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40352] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2668), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(884), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40378] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2670), 5,
sym_identifier,
sym_gnatprep_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,
[40404] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2341), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(781), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40430] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2672), 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,
[40458] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2674), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(937), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40484] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2676), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(936), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40510] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2678), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(889), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40536] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2680), 5,
sym_identifier,
sym_gnatprep_identifier,
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,
[40562] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2682), 5,
sym_identifier,
sym_gnatprep_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,
[40588] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2684), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1021), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40614] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2686), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1064), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40640] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2688), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1067), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40666] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2690), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1050), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40692] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2692), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1057), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40718] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2694), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(963), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40744] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2696), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(950), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40770] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2698), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(859), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40796] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2700), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(565), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40822] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2702), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(1014), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40848] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2542), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(910), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40874] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2704), 5,
sym_identifier,
sym_gnatprep_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,
[40900] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2706), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(921), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40926] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2432), 5,
sym_identifier,
sym_gnatprep_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,
[40952] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
anon_sym_LBRACK,
STATE(2005), 1,
sym_value_sequence,
ACTIONS(2708), 5,
sym_identifier,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
STATE(860), 7,
sym__name,
sym_selected_component,
sym_slice,
sym__attribute_reference,
sym__reduction_attribute_reference,
sym_qualified_expression,
sym_function_call,
[40978] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2710), 1,
aux_sym_chunk_specification_token1,
ACTIONS(1584), 2,
anon_sym_DASH,
anon_sym_STAR,
ACTIONS(1586), 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,
[41001] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2712), 1,
sym_identifier,
ACTIONS(2714), 12,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACK,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_relation_membership_token1,
[41022] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(2210), 1,
anon_sym_LBRACK,
STATE(1198), 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,
[41045] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(2210), 1,
anon_sym_LBRACK,
STATE(1313), 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,
[41068] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(69), 1,
aux_sym_accept_statement_token1,
ACTIONS(77), 1,
aux_sym_delay_until_statement_token1,
ACTIONS(1947), 1,
aux_sym_iterator_filter_token1,
ACTIONS(1949), 1,
aux_sym_terminate_alternative_token1,
STATE(32), 1,
sym_accept_statement,
STATE(843), 1,
sym_guard,
STATE(1199), 1,
sym_select_alternative,
STATE(34), 3,
sym__delay_statement,
sym_delay_until_statement,
sym_delay_relative_statement,
STATE(1330), 3,
sym_delay_alternative,
sym_accept_alternative,
sym_terminate_alternative,
[41103] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2598), 1,
sym_identifier,
ACTIONS(2600), 12,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACK,
aux_sym_iterator_filter_token1,
aux_sym_attribute_designator_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_relation_membership_token1,
[41124] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2716), 1,
sym_identifier,
ACTIONS(2718), 11,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_numeric_literal,
sym_target_name,
anon_sym_LPAREN,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
aux_sym_factor_abs_token1,
aux_sym_primary_null_token1,
aux_sym_allocator_token1,
[41144] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(849), 1,
sym_formal_part,
ACTIONS(2722), 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,
[41166] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2724), 12,
anon_sym_RPAREN,
aux_sym_chunk_specification_token1,
aux_sym_iterator_filter_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_result_profile_token1,
aux_sym_accept_statement_token2,
[41184] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(850), 1,
sym_formal_part,
ACTIONS(2726), 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,
[41206] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(847), 1,
sym_formal_part,
ACTIONS(2728), 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,
[41228] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2730), 1,
sym_identifier,
ACTIONS(2732), 11,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_numeric_literal,
sym_target_name,
anon_sym_LPAREN,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
aux_sym_factor_abs_token1,
aux_sym_primary_null_token1,
aux_sym_allocator_token1,
[41248] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2734), 1,
sym_identifier,
ACTIONS(2736), 11,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_numeric_literal,
sym_target_name,
anon_sym_LPAREN,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
aux_sym_factor_abs_token1,
aux_sym_primary_null_token1,
aux_sym_allocator_token1,
[41268] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2738), 1,
sym_identifier,
ACTIONS(2740), 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,
[41287] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2742), 1,
sym_identifier,
ACTIONS(2744), 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,
[41306] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2746), 1,
sym_identifier,
ACTIONS(2748), 10,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACK,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[41325] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(69), 1,
aux_sym_accept_statement_token1,
ACTIONS(77), 1,
aux_sym_delay_until_statement_token1,
ACTIONS(1949), 1,
aux_sym_terminate_alternative_token1,
STATE(32), 1,
sym_accept_statement,
STATE(1088), 1,
sym_select_alternative,
STATE(34), 3,
sym__delay_statement,
sym_delay_until_statement,
sym_delay_relative_statement,
STATE(1330), 3,
sym_delay_alternative,
sym_accept_alternative,
sym_terminate_alternative,
[41354] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2750), 1,
sym_identifier,
ACTIONS(2752), 1,
aux_sym_subprogram_body_token1,
ACTIONS(2754), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2756), 1,
aux_sym_interface_type_definition_token1,
STATE(1860), 1,
sym__defining_identifier_list,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(846), 4,
sym__declare_item,
sym_object_declaration,
sym_object_renaming_declaration,
aux_sym_declare_expression_repeat1,
[41383] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(69), 1,
aux_sym_accept_statement_token1,
ACTIONS(77), 1,
aux_sym_delay_until_statement_token1,
ACTIONS(1949), 1,
aux_sym_terminate_alternative_token1,
STATE(32), 1,
sym_accept_statement,
STATE(1211), 1,
sym_select_alternative,
STATE(34), 3,
sym__delay_statement,
sym_delay_until_statement,
sym_delay_relative_statement,
STATE(1330), 3,
sym_delay_alternative,
sym_accept_alternative,
sym_terminate_alternative,
[41412] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2758), 1,
sym_identifier,
ACTIONS(2760), 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,
[41431] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2762), 1,
sym_identifier,
ACTIONS(2765), 1,
aux_sym_subprogram_body_token1,
ACTIONS(2767), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2770), 1,
aux_sym_interface_type_definition_token1,
STATE(1860), 1,
sym__defining_identifier_list,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(845), 4,
sym__declare_item,
sym_object_declaration,
sym_object_renaming_declaration,
aux_sym_declare_expression_repeat1,
[41460] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2750), 1,
sym_identifier,
ACTIONS(2754), 1,
aux_sym_access_to_subprogram_definition_token1,
ACTIONS(2756), 1,
aux_sym_interface_type_definition_token1,
ACTIONS(2773), 1,
aux_sym_subprogram_body_token1,
STATE(1860), 1,
sym__defining_identifier_list,
STATE(263), 2,
sym_single_protected_declaration,
sym_single_task_declaration,
STATE(845), 4,
sym__declare_item,
sym_object_declaration,
sym_object_renaming_declaration,
aux_sym_declare_expression_repeat1,
[41489] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2775), 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,
[41505] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2777), 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,
[41521] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2726), 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,
[41537] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2728), 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,
[41553] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1081), 1,
sym__assign_value,
STATE(1506), 1,
sym_aspect_specification,
ACTIONS(2779), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[41585] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1162), 1,
sym__assign_value,
STATE(1468), 1,
sym_aspect_specification,
ACTIONS(2781), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[41617] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2783), 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,
[41633] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1147), 1,
sym__assign_value,
STATE(1441), 1,
sym_aspect_specification,
ACTIONS(2785), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[41665] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1168), 1,
sym__assign_value,
STATE(1510), 1,
sym_aspect_specification,
ACTIONS(2787), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[41697] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
ACTIONS(2791), 1,
aux_sym_package_specification_token2,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1509), 1,
sym_formal_part,
STATE(1169), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[41726] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
ACTIONS(2797), 1,
aux_sym_package_specification_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1166), 1,
sym_formal_part,
ACTIONS(2795), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[41753] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1212), 1,
sym_iterator_filter,
ACTIONS(2351), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[41780] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1273), 1,
sym_iterator_filter,
ACTIONS(2325), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[41807] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
ACTIONS(2800), 1,
aux_sym_package_specification_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1509), 1,
sym_formal_part,
STATE(1169), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[41836] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
ACTIONS(2802), 1,
aux_sym_package_specification_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1166), 1,
sym_formal_part,
ACTIONS(2795), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[41863] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1332), 1,
sym_iterator_filter,
ACTIONS(2805), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[41890] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2807), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1241), 1,
sym__assign_value,
STATE(1737), 1,
sym_aspect_specification,
[41921] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1329), 1,
sym_iterator_filter,
ACTIONS(2805), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[41948] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1968), 1,
anon_sym_COMMA,
ACTIONS(2809), 1,
anon_sym_COLON,
ACTIONS(2812), 1,
anon_sym_SEMI,
ACTIONS(2814), 1,
aux_sym_object_renaming_declaration_token1,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
ACTIONS(1586), 4,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
anon_sym_COLON_EQ,
[41973] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1227), 1,
sym_iterator_filter,
ACTIONS(2816), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[42000] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1210), 1,
sym_iterator_filter,
ACTIONS(2816), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[42027] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2820), 1,
aux_sym_expression_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1024), 1,
aux_sym__interface_list_repeat1,
ACTIONS(2818), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[42054] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2822), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1348), 1,
sym__assign_value,
STATE(1593), 1,
sym_aspect_specification,
[42085] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2824), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1324), 1,
sym__assign_value,
STATE(1615), 1,
sym_aspect_specification,
[42116] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2826), 1,
sym_identifier,
ACTIONS(2828), 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,
[42132] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2830), 1,
sym_identifier,
ACTIONS(2832), 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,
[42148] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2834), 1,
sym_identifier,
ACTIONS(2836), 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,
[42164] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2838), 1,
sym_identifier,
ACTIONS(2840), 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,
[42180] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2842), 1,
sym_identifier,
ACTIONS(2844), 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,
[42196] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2846), 1,
sym_identifier,
ACTIONS(2848), 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,
[42212] = 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,
[42228] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2854), 1,
anon_sym_LPAREN,
ACTIONS(2856), 1,
anon_sym_LBRACK,
ACTIONS(2858), 1,
aux_sym_record_component_association_list_token1,
STATE(1892), 1,
sym_enumeration_aggregate,
STATE(1893), 4,
sym__array_aggregate,
sym_positional_array_aggregate,
sym_null_array_aggregate,
sym_named_array_aggregate,
[42250] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2860), 1,
sym_identifier,
ACTIONS(2862), 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,
[42266] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2864), 1,
sym_identifier,
ACTIONS(2866), 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,
[42282] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2868), 1,
sym_identifier,
ACTIONS(2870), 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,
[42298] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2872), 1,
sym_identifier,
ACTIONS(2874), 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,
[42314] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2876), 1,
sym_identifier,
ACTIONS(2878), 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,
[42330] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2882), 1,
aux_sym_with_clause_token2,
ACTIONS(2885), 1,
aux_sym_expression_token1,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2880), 2,
anon_sym_SEMI,
aux_sym_expression_token3,
[42356] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2887), 1,
sym_identifier,
ACTIONS(2889), 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,
[42372] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2891), 1,
sym_identifier,
ACTIONS(2893), 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,
[42388] = 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,
[42404] = 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,
[42420] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2905), 1,
aux_sym_with_clause_token2,
ACTIONS(2908), 1,
aux_sym_expression_token1,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2903), 2,
anon_sym_SEMI,
aux_sym_expression_token3,
[42446] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2910), 1,
sym_identifier,
ACTIONS(2912), 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,
[42462] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2914), 1,
sym_identifier,
ACTIONS(2916), 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,
[42478] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2918), 1,
sym_identifier,
ACTIONS(2920), 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,
[42494] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1487), 1,
sym__assign_value,
ACTIONS(2922), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[42520] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2924), 1,
sym_identifier,
ACTIONS(2926), 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,
[42536] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2928), 1,
sym_identifier,
ACTIONS(2930), 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,
[42552] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2932), 1,
sym_identifier,
ACTIONS(2934), 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,
[42568] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1509), 1,
sym_formal_part,
STATE(1169), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[42594] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2936), 1,
sym_identifier,
ACTIONS(2938), 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,
[42610] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2789), 1,
anon_sym_LPAREN,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1166), 1,
sym_formal_part,
ACTIONS(2795), 3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
[42634] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2940), 1,
sym_identifier,
ACTIONS(2942), 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,
[42650] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2944), 1,
sym_identifier,
ACTIONS(2946), 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,
[42666] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2948), 1,
sym_identifier,
ACTIONS(2950), 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,
[42682] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2952), 1,
sym_identifier,
ACTIONS(2954), 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,
[42698] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2956), 1,
sym_identifier,
ACTIONS(2958), 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,
[42714] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2960), 1,
sym_identifier,
ACTIONS(2962), 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,
[42730] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2964), 1,
sym_identifier,
ACTIONS(2966), 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,
[42746] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2968), 1,
sym_identifier,
ACTIONS(2970), 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,
[42762] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2972), 1,
sym_identifier,
ACTIONS(2974), 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,
[42778] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2978), 1,
aux_sym_with_clause_token2,
ACTIONS(2981), 1,
aux_sym_expression_token1,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2976), 2,
anon_sym_SEMI,
aux_sym_expression_token3,
[42804] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2983), 1,
aux_sym_package_specification_token2,
ACTIONS(2985), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1946), 1,
sym_aspect_specification,
[42832] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2987), 1,
sym_identifier,
ACTIONS(2989), 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,
[42848] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(2991), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token1,
aux_sym_expression_token3,
[42870] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2993), 1,
sym_identifier,
ACTIONS(2995), 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,
[42886] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1436), 1,
sym__assign_value,
ACTIONS(2997), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[42912] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2999), 1,
sym_identifier,
ACTIONS(3001), 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,
[42928] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3003), 1,
sym_identifier,
ACTIONS(3005), 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,
[42944] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3007), 1,
sym_identifier,
ACTIONS(3009), 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,
[42960] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3011), 1,
sym_identifier,
ACTIONS(3013), 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,
[42976] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3015), 1,
anon_sym_LPAREN,
ACTIONS(3017), 1,
aux_sym_iterator_filter_token1,
STATE(1083), 1,
sym_non_empty_entry_body_formal_part,
STATE(1496), 1,
sym_aspect_specification,
STATE(1498), 1,
sym_formal_part,
STATE(1549), 1,
sym_entry_barrier,
[43001] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3019), 1,
sym_tick,
ACTIONS(2013), 6,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[43016] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3021), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1879), 1,
sym_aspect_specification,
[43041] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3023), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1945), 1,
sym_aspect_specification,
[43066] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3025), 1,
anon_sym_LPAREN,
ACTIONS(3027), 1,
anon_sym_SEMI,
ACTIONS(3029), 1,
aux_sym_package_specification_token2,
ACTIONS(3031), 1,
aux_sym_expression_token3,
STATE(1347), 3,
sym__discriminant_part,
sym_unknown_discriminant_part,
sym_known_discriminant_part,
[43087] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3033), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1797), 1,
sym_aspect_specification,
[43112] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3035), 1,
anon_sym_COMMA,
ACTIONS(3037), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1246), 1,
aux_sym__name_list_repeat1,
[43137] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3039), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1573), 1,
sym_aspect_specification,
[43162] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3041), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1677), 1,
sym_aspect_specification,
[43187] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3043), 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,
[43200] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1216), 1,
aux_sym__name_list_repeat1,
ACTIONS(3037), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[43223] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3045), 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,
[43236] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3047), 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,
[43249] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3049), 1,
aux_sym_package_specification_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1946), 1,
sym_aspect_specification,
[43274] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3051), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1641), 1,
sym_aspect_specification,
[43299] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3053), 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,
[43312] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3055), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1686), 1,
sym_aspect_specification,
[43337] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3057), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1687), 1,
sym_aspect_specification,
[43362] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3059), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1688), 1,
sym_aspect_specification,
[43387] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3061), 1,
sym_identifier,
ACTIONS(3063), 6,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_package_specification_token3,
[43402] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3065), 1,
sym_identifier,
ACTIONS(3067), 6,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_package_specification_token3,
[43417] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3069), 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,
[43430] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(3071), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_SEMI,
[43451] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3073), 1,
sym_identifier,
ACTIONS(3075), 6,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
[43466] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3077), 1,
sym_identifier,
ACTIONS(3079), 6,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_relation_membership_token1,
[43481] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(3081), 1,
aux_sym_package_specification_token1,
STATE(1961), 1,
sym_package_specification,
STATE(1280), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
[43502] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1941), 1,
sym_identifier,
ACTIONS(1943), 6,
sym_gnatprep_identifier,
sym_string_literal,
sym_character_literal,
sym_target_name,
anon_sym_LBRACK,
aux_sym_attribute_designator_token1,
[43517] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3083), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1631), 1,
sym_aspect_specification,
[43542] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3085), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1805), 1,
sym_aspect_specification,
[43567] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3087), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1756), 1,
sym_aspect_specification,
[43592] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3089), 1,
aux_sym_package_specification_token2,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1888), 1,
sym_aspect_specification,
[43617] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3035), 1,
anon_sym_COMMA,
ACTIONS(3091), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1346), 1,
aux_sym__name_list_repeat1,
[43642] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3093), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1898), 1,
sym_aspect_specification,
[43667] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3095), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1690), 1,
sym_aspect_specification,
[43692] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3097), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1622), 1,
sym_aspect_specification,
[43717] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3099), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
STATE(1621), 1,
sym_aspect_specification,
[43742] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3101), 1,
aux_sym_chunk_specification_token1,
ACTIONS(3103), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(3106), 1,
anon_sym_COLON,
ACTIONS(3108), 1,
aux_sym_iterator_specification_token1,
ACTIONS(1586), 3,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
[43763] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3110), 1,
anon_sym_COMMA,
STATE(982), 1,
aux_sym_aspect_mark_list_repeat1,
ACTIONS(3112), 4,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[43779] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1079), 1,
sym__assign_value,
STATE(1508), 1,
sym_aspect_specification,
ACTIONS(3114), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[43799] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3116), 1,
anon_sym_COMMA,
STATE(958), 1,
aux_sym_aspect_mark_list_repeat1,
ACTIONS(3119), 4,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[43815] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3121), 6,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[43827] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3123), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3125), 1,
aux_sym_with_clause_token1,
ACTIONS(3127), 1,
aux_sym_allocator_token1,
ACTIONS(3129), 1,
aux_sym_private_type_declaration_token1,
ACTIONS(3131), 1,
aux_sym_private_type_declaration_token2,
ACTIONS(3133), 1,
aux_sym_private_extension_declaration_token1,
[43849] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1970), 1,
sym_identifier,
ACTIONS(3135), 1,
aux_sym_iterated_element_association_token1,
STATE(1256), 1,
sym_parameter_specification,
STATE(1713), 1,
sym_entry_index_specification,
STATE(1868), 1,
sym__parameter_specification_list,
STATE(1870), 1,
sym__defining_identifier_list,
[43871] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3137), 1,
anon_sym_LPAREN,
ACTIONS(3139), 1,
anon_sym_SEMI,
ACTIONS(3141), 1,
aux_sym_package_specification_token2,
STATE(1118), 1,
sym_known_discriminant_part,
STATE(1376), 1,
sym_aspect_specification,
[43893] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3143), 1,
anon_sym_SEMI,
ACTIONS(3145), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
[43915] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3147), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3149), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[43937] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3151), 1,
anon_sym_COMMA,
ACTIONS(3153), 1,
anon_sym_RBRACK,
ACTIONS(3157), 1,
aux_sym_with_clause_token2,
STATE(1270), 1,
aux_sym_positional_array_aggregate_repeat1,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[43957] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3159), 1,
sym_identifier,
STATE(1293), 1,
sym_quantifier,
ACTIONS(3161), 2,
aux_sym_use_clause_token1,
aux_sym_quantifier_token1,
STATE(1459), 2,
sym_loop_parameter_specification,
sym_iterator_specification,
[43975] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3163), 1,
anon_sym_COMMA,
ACTIONS(3165), 1,
anon_sym_RPAREN,
ACTIONS(3167), 1,
aux_sym_with_clause_token2,
STATE(1519), 1,
aux_sym_positional_array_aggregate_repeat1,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[43995] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3025), 1,
anon_sym_LPAREN,
ACTIONS(3169), 1,
anon_sym_SEMI,
ACTIONS(3171), 1,
aux_sym_package_specification_token2,
STATE(1482), 1,
sym_known_discriminant_part,
STATE(1480), 2,
sym__discriminant_part,
sym_unknown_discriminant_part,
[44015] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2812), 1,
anon_sym_SEMI,
ACTIONS(3173), 1,
anon_sym_COLON,
ACTIONS(1586), 4,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
anon_sym_COLON_EQ,
[44031] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(3175), 1,
aux_sym_entry_declaration_token1,
STATE(1107), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
[44049] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(3177), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[44069] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3179), 1,
anon_sym_SEMI,
ACTIONS(3181), 1,
aux_sym_with_clause_token2,
STATE(460), 1,
sym_actual_parameter_part,
[44091] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1026), 1,
sym_actual_parameter_part,
STATE(1962), 1,
sym__assign_value,
[44113] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3183), 1,
anon_sym_COLON,
ACTIONS(1586), 5,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
anon_sym_EQ_GT,
anon_sym_PIPE,
[44127] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
ACTIONS(3185), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[44147] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3123), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3187), 1,
aux_sym_allocator_token1,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
STATE(1424), 1,
sym_record_definition,
[44169] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3193), 1,
anon_sym_EQ_GT,
ACTIONS(3191), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[44183] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3123), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3195), 1,
anon_sym_SEMI,
ACTIONS(3197), 1,
aux_sym_with_clause_token1,
STATE(1424), 1,
sym_record_definition,
[44205] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(81), 1,
aux_sym_iteration_scheme_token1,
ACTIONS(208), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(410), 1,
aux_sym_subprogram_body_token1,
ACTIONS(3199), 1,
aux_sym_declare_expression_token1,
ACTIONS(3201), 1,
aux_sym_loop_statement_token1,
STATE(1960), 1,
sym_iteration_scheme,
[44227] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3203), 6,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_iterator_filter_token1,
aux_sym_loop_statement_token1,
[44239] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
ACTIONS(3205), 1,
aux_sym_package_specification_token1,
STATE(1094), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
[44257] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3110), 1,
anon_sym_COMMA,
STATE(958), 1,
aux_sym_aspect_mark_list_repeat1,
ACTIONS(3207), 4,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[44273] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3175), 1,
aux_sym_entry_declaration_token1,
ACTIONS(3209), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(3211), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(990), 1,
sym__subprogram_specification,
STATE(1143), 1,
sym_function_specification,
STATE(1145), 1,
sym_procedure_specification,
[44295] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(368), 1,
aux_sym_chunk_specification_token1,
ACTIONS(388), 1,
aux_sym_global_mode_token1,
ACTIONS(390), 1,
aux_sym_non_empty_mode_token1,
STATE(695), 1,
sym_global_mode,
STATE(840), 1,
sym_non_empty_mode,
STATE(1530), 1,
sym_global_aspect_element,
[44317] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3213), 1,
anon_sym_SEMI,
STATE(1252), 1,
sym__assign_value,
STATE(1685), 1,
sym_aspect_specification,
[44336] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3215), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44355] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3217), 1,
anon_sym_SEMI,
STATE(1274), 1,
sym__assign_value,
STATE(1671), 1,
sym_aspect_specification,
[44374] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3221), 1,
aux_sym_elsif_expression_item_token1,
ACTIONS(3219), 2,
anon_sym_RPAREN,
aux_sym_expression_token4,
STATE(988), 2,
sym_elsif_expression_item,
aux_sym_if_expression_repeat1,
[44389] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3224), 1,
anon_sym_RPAREN,
STATE(460), 1,
sym_actual_parameter_part,
[44408] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3226), 1,
anon_sym_SEMI,
ACTIONS(3228), 1,
aux_sym_package_specification_token2,
ACTIONS(3230), 1,
aux_sym_object_renaming_declaration_token1,
STATE(1483), 1,
sym_aspect_specification,
[44427] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3232), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44446] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3234), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44465] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3236), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
[44484] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3238), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[44495] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3240), 1,
anon_sym_RPAREN,
ACTIONS(3242), 1,
aux_sym_expression_token4,
ACTIONS(3244), 1,
aux_sym_elsif_expression_item_token1,
STATE(1066), 2,
sym_elsif_expression_item,
aux_sym_if_expression_repeat1,
[44512] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(1143), 1,
sym_function_specification,
STATE(1145), 1,
sym_procedure_specification,
STATE(1164), 1,
sym__subprogram_specification,
[44531] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3246), 1,
aux_sym_package_specification_token2,
ACTIONS(1586), 4,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
aux_sym_with_clause_token2,
[44544] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3249), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44563] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(442), 1,
aux_sym_component_choice_list_token1,
ACTIONS(3251), 1,
sym_identifier,
ACTIONS(3253), 1,
sym_string_literal,
STATE(1389), 1,
sym__named_record_component_association,
STATE(1934), 1,
sym_component_choice_list,
[44582] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3255), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44601] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3257), 1,
anon_sym_SEMI,
STATE(1325), 1,
sym__assign_value,
STATE(1617), 1,
sym_aspect_specification,
[44620] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(1509), 1,
sym_formal_part,
STATE(1204), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[44637] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3259), 1,
anon_sym_SEMI,
STATE(1239), 1,
sym__assign_value,
STATE(1734), 1,
sym_aspect_specification,
[44656] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3261), 1,
anon_sym_SEMI,
ACTIONS(3263), 1,
aux_sym_package_specification_token2,
ACTIONS(3265), 1,
aux_sym_object_renaming_declaration_token1,
STATE(1456), 1,
sym_aspect_specification,
[44675] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3267), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[44686] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(1509), 1,
sym_formal_part,
STATE(850), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[44703] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3269), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44722] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3271), 1,
sym_identifier,
ACTIONS(3273), 1,
anon_sym_LT_GT,
STATE(1328), 1,
sym_discriminant_specification,
STATE(1882), 1,
sym_discriminant_specification_list,
STATE(1883), 1,
sym__defining_identifier_list,
[44741] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3275), 1,
aux_sym_package_specification_token3,
ACTIONS(3277), 1,
aux_sym_expression_token4,
ACTIONS(3279), 1,
aux_sym_elsif_expression_item_token1,
STATE(1069), 2,
sym_elsif_statement_item,
aux_sym_if_statement_repeat1,
[44758] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3281), 1,
anon_sym_RPAREN,
STATE(460), 1,
sym_actual_parameter_part,
[44777] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(1204), 1,
sym_formal_part,
ACTIONS(3283), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[44792] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3285), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44811] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2046), 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,
[44822] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3287), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44841] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3289), 1,
anon_sym_LPAREN,
ACTIONS(3291), 1,
anon_sym_SEMI,
STATE(1345), 1,
sym_formal_part,
STATE(1813), 1,
sym_aspect_specification,
[44860] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3293), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44879] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3137), 1,
anon_sym_LPAREN,
ACTIONS(3295), 1,
aux_sym_package_specification_token2,
STATE(1195), 1,
sym_known_discriminant_part,
STATE(1840), 1,
sym_aspect_specification,
[44898] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3297), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3299), 1,
aux_sym_with_clause_token1,
STATE(1505), 1,
sym_record_definition,
[44917] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3301), 1,
anon_sym_LPAREN,
ACTIONS(3303), 1,
anon_sym_SEMI,
STATE(1323), 1,
sym_formal_part,
STATE(1927), 1,
sym_aspect_specification,
[44936] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3305), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44955] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3307), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[44974] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(2648), 1,
aux_sym_range_attribute_designator_token1,
STATE(460), 1,
sym_actual_parameter_part,
[44993] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(1509), 1,
sym_formal_part,
STATE(849), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[45010] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2820), 1,
aux_sym_expression_token1,
STATE(1034), 1,
aux_sym__interface_list_repeat1,
ACTIONS(3309), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[45025] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3311), 1,
sym_tick,
ACTIONS(3313), 1,
aux_sym_iterated_element_association_token2,
STATE(460), 1,
sym_actual_parameter_part,
[45044] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3315), 1,
anon_sym_SEMI,
ACTIONS(1628), 4,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
anon_sym_COLON_EQ,
[45057] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3317), 1,
anon_sym_SEMI,
STATE(1262), 1,
sym__assign_value,
STATE(1716), 1,
sym_aspect_specification,
[45076] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3319), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45095] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1974), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(1976), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(1188), 3,
sym_function_specification,
sym_procedure_specification,
sym__subprogram_specification,
[45110] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2812), 1,
anon_sym_SEMI,
ACTIONS(1586), 4,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
anon_sym_COLON_EQ,
[45123] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3321), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45142] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3323), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45161] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(1277), 1,
sym_iterator_filter,
ACTIONS(3325), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[45176] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3327), 1,
aux_sym_expression_token1,
STATE(1034), 1,
aux_sym__interface_list_repeat1,
ACTIONS(2991), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[45191] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3330), 1,
anon_sym_SEMI,
STATE(1355), 1,
sym__assign_value,
STATE(1819), 1,
sym_aspect_specification,
[45210] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3332), 1,
anon_sym_SEMI,
STATE(1349), 1,
sym__assign_value,
STATE(1820), 1,
sym_aspect_specification,
[45229] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(3334), 1,
anon_sym_SEMI,
STATE(1271), 1,
sym_formal_part,
STATE(1643), 1,
sym_aspect_specification,
[45248] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(3336), 1,
anon_sym_SEMI,
STATE(1285), 1,
sym_formal_part,
STATE(1629), 1,
sym_aspect_specification,
[45267] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3338), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45286] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(1509), 1,
sym_formal_part,
STATE(1286), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[45303] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(1286), 1,
sym_formal_part,
ACTIONS(3340), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[45318] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3209), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(3211), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(990), 1,
sym__subprogram_specification,
STATE(1143), 1,
sym_function_specification,
STATE(1145), 1,
sym_procedure_specification,
[45337] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3151), 1,
anon_sym_COMMA,
ACTIONS(3153), 1,
anon_sym_RBRACK,
STATE(1270), 1,
aux_sym_positional_array_aggregate_repeat1,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[45354] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3342), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45373] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3344), 1,
aux_sym_at_clause_token1,
STATE(460), 1,
sym_actual_parameter_part,
[45392] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3346), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45411] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3348), 1,
anon_sym_SEMI,
STATE(1363), 1,
sym__assign_value,
STATE(1578), 1,
sym_aspect_specification,
[45430] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3350), 1,
anon_sym_SEMI,
STATE(1360), 1,
sym__assign_value,
STATE(1585), 1,
sym_aspect_specification,
[45449] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3352), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45468] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3354), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45487] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3356), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45506] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3358), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45525] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3360), 1,
anon_sym_SEMI,
STATE(1340), 1,
sym__assign_value,
STATE(1705), 1,
sym_aspect_specification,
[45544] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3362), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
[45563] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3226), 1,
anon_sym_SEMI,
ACTIONS(3230), 1,
aux_sym_object_renaming_declaration_token1,
ACTIONS(3364), 1,
aux_sym_package_specification_token2,
STATE(1674), 1,
sym_aspect_specification,
[45582] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3366), 1,
anon_sym_COMMA,
STATE(460), 1,
sym_actual_parameter_part,
[45601] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3368), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
[45620] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3209), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(3211), 1,
aux_sym_access_to_subprogram_definition_token3,
STATE(1055), 1,
sym__subprogram_specification,
STATE(1143), 1,
sym_function_specification,
STATE(1145), 1,
sym_procedure_specification,
[45639] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(3370), 1,
aux_sym_allocator_token1,
STATE(1424), 1,
sym_record_definition,
[45658] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(1509), 1,
sym_formal_part,
STATE(847), 2,
sym__parameter_and_result_profile,
sym_result_profile,
[45675] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3279), 1,
aux_sym_elsif_expression_item_token1,
ACTIONS(3372), 1,
aux_sym_package_specification_token3,
ACTIONS(3374), 1,
aux_sym_expression_token4,
STATE(1009), 2,
sym_elsif_statement_item,
aux_sym_if_statement_repeat1,
[45692] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3376), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[45703] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3378), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[45714] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3380), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
[45733] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3382), 1,
anon_sym_SEMI,
STATE(460), 1,
sym_actual_parameter_part,
[45752] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3244), 1,
aux_sym_elsif_expression_item_token1,
ACTIONS(3384), 1,
anon_sym_RPAREN,
ACTIONS(3386), 1,
aux_sym_expression_token4,
STATE(988), 2,
sym_elsif_expression_item,
aux_sym_if_expression_repeat1,
[45769] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
ACTIONS(3388), 1,
aux_sym_object_renaming_declaration_token1,
STATE(460), 1,
sym_actual_parameter_part,
[45788] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(77), 1,
aux_sym_delay_until_statement_token1,
STATE(1839), 1,
sym_delay_alternative,
STATE(34), 3,
sym__delay_statement,
sym_delay_until_statement,
sym_delay_relative_statement,
[45803] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3392), 1,
aux_sym_elsif_expression_item_token1,
ACTIONS(3390), 2,
aux_sym_package_specification_token3,
aux_sym_expression_token4,
STATE(1069), 2,
sym_elsif_statement_item,
aux_sym_if_statement_repeat1,
[45818] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3119), 5,
anon_sym_COMMA,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[45829] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2327), 1,
aux_sym_iterator_filter_token1,
STATE(1220), 1,
sym_iterator_filter,
ACTIONS(3395), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[45844] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3261), 1,
anon_sym_SEMI,
ACTIONS(3265), 1,
aux_sym_object_renaming_declaration_token1,
ACTIONS(3397), 1,
aux_sym_package_specification_token2,
STATE(1799), 1,
sym_aspect_specification,
[45863] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3399), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
STATE(1073), 1,
aux_sym_gnatprep_if_statement_repeat1,
ACTIONS(3402), 2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
[45877] = 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(1469), 1,
sym_record_extension_part,
[45893] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3271), 1,
sym_identifier,
STATE(1328), 1,
sym_discriminant_specification,
STATE(1882), 1,
sym_discriminant_specification_list,
STATE(1883), 1,
sym__defining_identifier_list,
[45909] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3411), 1,
aux_sym_package_specification_token3,
ACTIONS(3413), 1,
aux_sym_expression_token3,
ACTIONS(3415), 1,
aux_sym_expression_token4,
STATE(1082), 1,
aux_sym_selective_accept_repeat1,
[45925] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3419), 1,
aux_sym_allocator_token1,
ACTIONS(3421), 1,
aux_sym_private_type_declaration_token2,
ACTIONS(3417), 2,
aux_sym_with_clause_token1,
aux_sym_private_extension_declaration_token1,
[45939] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3423), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
STATE(1078), 1,
aux_sym_gnatprep_declarative_if_statement_repeat1,
ACTIONS(3426), 2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
[45953] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1495), 1,
sym_aspect_specification,
ACTIONS(3428), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[45967] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3432), 1,
aux_sym_expression_token2,
ACTIONS(3430), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[45979] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1503), 1,
sym_aspect_specification,
ACTIONS(3434), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[45993] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3438), 1,
aux_sym_expression_token3,
STATE(1082), 1,
aux_sym_selective_accept_repeat1,
ACTIONS(3436), 2,
aux_sym_package_specification_token3,
aux_sym_expression_token4,
[46007] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3017), 1,
aux_sym_iterator_filter_token1,
STATE(1521), 1,
sym_aspect_specification,
STATE(1715), 1,
sym_entry_barrier,
[46023] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3413), 1,
aux_sym_expression_token3,
ACTIONS(3441), 1,
aux_sym_package_specification_token3,
ACTIONS(3443), 1,
aux_sym_expression_token4,
STATE(1082), 1,
aux_sym_selective_accept_repeat1,
[46039] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3445), 1,
aux_sym_with_clause_token1,
STATE(1424), 1,
sym_record_definition,
[46055] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1489), 1,
sym__assign_value,
ACTIONS(3447), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[46069] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3449), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
ACTIONS(3451), 1,
aux_sym_gnatprep_declarative_if_statement_token3,
ACTIONS(3453), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
STATE(1172), 1,
aux_sym_gnatprep_if_statement_repeat1,
[46085] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3413), 1,
aux_sym_expression_token3,
ACTIONS(3441), 1,
aux_sym_package_specification_token3,
ACTIONS(3443), 1,
aux_sym_expression_token4,
STATE(1076), 1,
aux_sym_selective_accept_repeat1,
[46101] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3455), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[46117] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3459), 1,
aux_sym_expression_token1,
ACTIONS(3457), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[46129] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3461), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3464), 1,
aux_sym_package_specification_token3,
STATE(1091), 2,
sym_variant,
aux_sym_variant_list_repeat1,
[46143] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3466), 1,
anon_sym_SEMI,
ACTIONS(3468), 1,
aux_sym_with_clause_token2,
ACTIONS(3471), 1,
aux_sym_expression_token1,
STATE(1447), 1,
sym_record_extension_part,
[46159] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3473), 1,
anon_sym_SEMI,
ACTIONS(3475), 1,
aux_sym_with_clause_token2,
ACTIONS(3478), 1,
aux_sym_expression_token1,
STATE(1494), 1,
sym_record_extension_part,
[46175] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3480), 1,
anon_sym_SEMI,
ACTIONS(3482), 1,
aux_sym_package_specification_token2,
STATE(1846), 1,
sym_aspect_specification,
[46191] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3484), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46201] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3486), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46211] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3490), 1,
aux_sym_package_specification_token2,
ACTIONS(3488), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[46223] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3493), 1,
aux_sym_iterator_filter_token1,
STATE(1680), 1,
sym_variant_list,
STATE(1111), 2,
sym_variant,
aux_sym_variant_list_repeat1,
[46237] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3473), 1,
anon_sym_SEMI,
ACTIONS(3495), 1,
aux_sym_with_clause_token2,
ACTIONS(3498), 1,
aux_sym_expression_token1,
STATE(1494), 1,
sym_record_extension_part,
[46253] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3500), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46263] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3502), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46273] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3504), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[46289] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3506), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3509), 1,
aux_sym_package_specification_token3,
STATE(1103), 2,
sym_exception_handler,
aux_sym_handled_sequence_of_statements_repeat1,
[46303] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3513), 1,
aux_sym_range_attribute_designator_token1,
STATE(1476), 1,
sym_real_range_specification,
ACTIONS(3511), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[46317] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3133), 1,
aux_sym_private_extension_declaration_token1,
ACTIONS(3187), 1,
aux_sym_allocator_token1,
ACTIONS(3515), 1,
aux_sym_with_clause_token1,
ACTIONS(3517), 1,
aux_sym_private_type_declaration_token2,
[46333] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3519), 1,
aux_sym_package_specification_token2,
ACTIONS(3488), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[46345] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3226), 1,
anon_sym_SEMI,
ACTIONS(3364), 1,
aux_sym_package_specification_token2,
STATE(1674), 1,
sym_aspect_specification,
[46361] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3261), 1,
anon_sym_SEMI,
ACTIONS(3522), 1,
aux_sym_package_specification_token2,
STATE(1456), 1,
sym_aspect_specification,
[46377] = 4,
ACTIONS(3), 1,
sym_comment,
STATE(1358), 1,
sym__enumeration_literal_specification,
STATE(1796), 1,
sym__enumeration_literal_list,
ACTIONS(3524), 2,
sym_identifier,
sym_character_literal,
[46391] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3526), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
ACTIONS(3528), 1,
aux_sym_gnatprep_declarative_if_statement_token3,
ACTIONS(3530), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
STATE(1160), 1,
aux_sym_gnatprep_declarative_if_statement_repeat1,
[46407] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3493), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3532), 1,
aux_sym_package_specification_token3,
STATE(1091), 2,
sym_variant,
aux_sym_variant_list_repeat1,
[46421] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3534), 4,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[46431] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3297), 1,
aux_sym_compilation_unit_token1,
STATE(1505), 1,
sym_record_definition,
[46447] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3536), 1,
anon_sym_COMMA,
ACTIONS(3538), 1,
anon_sym_RPAREN,
STATE(1250), 1,
aux_sym_record_component_association_list_repeat1,
STATE(1251), 1,
aux_sym_positional_array_aggregate_repeat1,
[46463] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1968), 1,
anon_sym_COMMA,
ACTIONS(2814), 1,
aux_sym_object_renaming_declaration_token1,
ACTIONS(3541), 1,
anon_sym_COLON,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
[46479] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3544), 1,
anon_sym_COMMA,
STATE(1116), 1,
aux_sym_positional_array_aggregate_repeat1,
ACTIONS(3547), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
[46493] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3549), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[46509] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3551), 1,
anon_sym_SEMI,
ACTIONS(3553), 1,
aux_sym_package_specification_token2,
STATE(1423), 1,
sym_aspect_specification,
[46525] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3555), 1,
anon_sym_COMMA,
STATE(1119), 1,
aux_sym__array_component_association_list_repeat1,
ACTIONS(3558), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
[46539] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3560), 1,
anon_sym_SEMI,
ACTIONS(3562), 1,
aux_sym_package_specification_token2,
STATE(1444), 1,
sym_aspect_specification,
[46555] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3564), 1,
anon_sym_COMMA,
STATE(1121), 1,
aux_sym__name_list_repeat1,
ACTIONS(3071), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[46569] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3567), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(1558), 3,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
[46581] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3570), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[46597] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3572), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3575), 1,
aux_sym_package_specification_token3,
STATE(1124), 2,
sym_case_statement_alternative,
aux_sym_case_statement_repeat1,
[46611] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3577), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3579), 1,
aux_sym_package_specification_token3,
STATE(1103), 2,
sym_exception_handler,
aux_sym_handled_sequence_of_statements_repeat1,
[46625] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3581), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46635] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1401), 1,
sym__assign_value,
ACTIONS(3583), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[46649] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3585), 4,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
anon_sym_COLON_EQ,
[46659] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(1026), 1,
sym_actual_parameter_part,
[46675] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1968), 1,
anon_sym_COMMA,
ACTIONS(2814), 1,
aux_sym_object_renaming_declaration_token1,
ACTIONS(3587), 1,
anon_sym_COLON,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
[46691] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3404), 1,
anon_sym_SEMI,
ACTIONS(3590), 1,
aux_sym_with_clause_token2,
ACTIONS(3593), 1,
aux_sym_expression_token1,
STATE(1469), 1,
sym_record_extension_part,
[46707] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3413), 1,
aux_sym_expression_token3,
ACTIONS(3595), 1,
aux_sym_package_specification_token3,
ACTIONS(3597), 1,
aux_sym_expression_token4,
STATE(1084), 1,
aux_sym_selective_accept_repeat1,
[46723] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3599), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[46739] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3601), 4,
anon_sym_RPAREN,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_accept_statement_token2,
[46749] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3603), 1,
anon_sym_LPAREN,
ACTIONS(3605), 1,
anon_sym_SEMI,
ACTIONS(3607), 1,
aux_sym_accept_statement_token2,
STATE(1435), 1,
sym_formal_part,
[46765] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3611), 1,
aux_sym_expression_token1,
ACTIONS(3609), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[46777] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1453), 1,
sym__assign_value,
ACTIONS(3613), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[46791] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3615), 1,
anon_sym_COMMA,
STATE(1519), 1,
aux_sym_positional_array_aggregate_repeat1,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[46805] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3617), 1,
anon_sym_SEMI,
ACTIONS(3619), 1,
aux_sym_expression_token3,
STATE(1583), 1,
sym_aspect_specification,
[46821] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3621), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3623), 1,
anon_sym_SEMI,
ACTIONS(3625), 1,
aux_sym_with_clause_token1,
ACTIONS(3627), 1,
aux_sym_expression_token3,
[46837] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3629), 1,
aux_sym_attribute_designator_token3,
ACTIONS(3631), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[46849] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3513), 1,
aux_sym_range_attribute_designator_token1,
STATE(1465), 1,
sym_real_range_specification,
ACTIONS(3633), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[46863] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3635), 1,
aux_sym_package_specification_token2,
ACTIONS(3488), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[46875] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3621), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3625), 1,
aux_sym_with_clause_token1,
ACTIONS(3638), 1,
anon_sym_SEMI,
ACTIONS(3640), 1,
aux_sym_expression_token3,
[46891] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3642), 1,
aux_sym_package_specification_token2,
ACTIONS(3488), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[46903] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3645), 1,
sym_identifier,
STATE(956), 1,
sym_aspect_association,
STATE(977), 1,
sym__aspect_mark,
STATE(1149), 1,
sym_aspect_mark_list,
[46919] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1420), 1,
sym_aspect_specification,
ACTIONS(3647), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[46933] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3649), 1,
anon_sym_SEMI,
ACTIONS(3651), 1,
aux_sym_expression_token3,
STATE(1623), 1,
sym_aspect_specification,
[46949] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3653), 4,
anon_sym_RPAREN,
aux_sym_iterator_filter_token1,
anon_sym_SEMI,
aux_sym_package_specification_token2,
[46959] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3655), 1,
anon_sym_COMMA,
ACTIONS(3657), 1,
anon_sym_RPAREN,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[46973] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3659), 1,
anon_sym_COMMA,
STATE(1119), 1,
aux_sym__array_component_association_list_repeat1,
ACTIONS(3661), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
[46987] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3665), 1,
aux_sym_allocator_token1,
ACTIONS(3667), 1,
aux_sym_private_type_declaration_token2,
ACTIONS(3663), 2,
aux_sym_with_clause_token1,
aux_sym_private_extension_declaration_token1,
[47001] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3103), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(1586), 3,
sym_tick,
anon_sym_DOT,
anon_sym_LPAREN,
[47013] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3466), 1,
anon_sym_SEMI,
ACTIONS(3669), 1,
aux_sym_with_clause_token2,
ACTIONS(3672), 1,
aux_sym_expression_token1,
STATE(1447), 1,
sym_record_extension_part,
[47029] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3674), 1,
aux_sym_iterator_filter_token1,
ACTIONS(3676), 1,
aux_sym_package_specification_token3,
STATE(1124), 2,
sym_case_statement_alternative,
aux_sym_case_statement_repeat1,
[47043] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3659), 1,
anon_sym_COMMA,
STATE(1151), 1,
aux_sym__array_component_association_list_repeat1,
ACTIONS(3678), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
[47057] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3680), 1,
aux_sym_compilation_unit_token1,
STATE(1451), 1,
sym_record_definition,
[47073] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1638), 1,
sym_tick,
ACTIONS(1730), 1,
anon_sym_LPAREN,
ACTIONS(2036), 1,
anon_sym_DOT,
STATE(460), 1,
sym_actual_parameter_part,
[47089] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1404), 1,
sym__assign_value,
ACTIONS(3682), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[47103] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3526), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
ACTIONS(3684), 1,
aux_sym_gnatprep_declarative_if_statement_token3,
ACTIONS(3686), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
STATE(1078), 1,
aux_sym_gnatprep_declarative_if_statement_repeat1,
[47119] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3271), 1,
sym_identifier,
STATE(1256), 1,
sym_parameter_specification,
STATE(1868), 1,
sym__parameter_specification_list,
STATE(1870), 1,
sym__defining_identifier_list,
[47135] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1409), 1,
sym_aspect_specification,
ACTIONS(3688), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[47149] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2100), 1,
anon_sym_COLON_EQ,
STATE(1403), 1,
sym__assign_value,
ACTIONS(3682), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[47163] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3226), 1,
anon_sym_SEMI,
ACTIONS(3690), 1,
aux_sym_package_specification_token2,
STATE(1483), 1,
sym_aspect_specification,
[47179] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
ACTIONS(3692), 1,
anon_sym_SEMI,
ACTIONS(3694), 1,
aux_sym_accept_statement_token2,
STATE(1387), 1,
sym_formal_part,
[47195] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3696), 4,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[47205] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3698), 1,
aux_sym_compilation_unit_token1,
STATE(1462), 1,
sym_record_definition,
[47221] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
STATE(1390), 1,
sym_aspect_specification,
ACTIONS(3700), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[47235] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3702), 4,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_with_clause_token2,
aux_sym_object_renaming_declaration_token1,
[47245] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
ACTIONS(3704), 1,
aux_sym_with_clause_token1,
STATE(1505), 1,
sym_record_definition,
[47261] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3261), 1,
anon_sym_SEMI,
ACTIONS(3397), 1,
aux_sym_package_specification_token2,
STATE(1799), 1,
sym_aspect_specification,
[47277] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3449), 1,
aux_sym_gnatprep_declarative_if_statement_token2,
ACTIONS(3706), 1,
aux_sym_gnatprep_declarative_if_statement_token3,
ACTIONS(3708), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
STATE(1073), 1,
aux_sym_gnatprep_if_statement_repeat1,
[47293] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3710), 1,
anon_sym_COMMA,
ACTIONS(3712), 1,
anon_sym_RPAREN,
STATE(1251), 1,
aux_sym_positional_array_aggregate_repeat1,
[47306] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3714), 1,
anon_sym_EQ_GT,
ACTIONS(3716), 1,
anon_sym_PIPE,
STATE(1194), 1,
aux_sym_exception_choice_list_repeat1,
[47319] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3718), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[47328] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3720), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[47337] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(530), 1,
aux_sym_value_sequence_token1,
STATE(1998), 1,
sym_iterated_element_association,
[47350] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3722), 3,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
[47359] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3724), 1,
anon_sym_COMMA,
ACTIONS(3726), 1,
anon_sym_RPAREN,
STATE(1235), 1,
aux_sym_pragma_g_repeat1,
[47372] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3728), 1,
anon_sym_COMMA,
ACTIONS(3730), 1,
anon_sym_RPAREN,
STATE(1238), 1,
aux_sym_record_component_association_list_repeat2,
[47385] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3732), 1,
anon_sym_COMMA,
ACTIONS(3735), 1,
anon_sym_RPAREN,
STATE(1181), 1,
aux_sym_actual_parameter_part_repeat1,
[47398] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3737), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[47407] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3739), 1,
anon_sym_COMMA,
ACTIONS(3742), 1,
anon_sym_RPAREN,
STATE(1183), 1,
aux_sym_record_component_association_list_repeat1,
[47420] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
STATE(1505), 1,
sym_record_definition,
[47433] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3744), 3,
anon_sym_RPAREN,
aux_sym_expression_token4,
aux_sym_elsif_expression_item_token1,
[47442] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3432), 1,
aux_sym_expression_token2,
ACTIONS(3746), 2,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47453] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3748), 1,
anon_sym_COMMA,
ACTIONS(3750), 1,
anon_sym_RPAREN,
STATE(1245), 1,
aux_sym_case_expression_repeat1,
[47466] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3752), 1,
aux_sym_package_specification_token2,
STATE(1557), 1,
sym_aspect_specification,
[47479] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3754), 1,
anon_sym_COMMA,
ACTIONS(3757), 1,
anon_sym_RPAREN,
STATE(1189), 1,
aux_sym_index_constraint_repeat1,
[47492] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3430), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47501] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3759), 1,
anon_sym_COMMA,
ACTIONS(3762), 1,
anon_sym_RPAREN,
STATE(1191), 1,
aux_sym_discriminant_constraint_repeat1,
[47514] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3764), 1,
anon_sym_SEMI,
STATE(1912), 1,
sym_aspect_specification,
[47527] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3766), 1,
anon_sym_SEMI,
STATE(1837), 1,
sym_aspect_specification,
[47540] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3716), 1,
anon_sym_PIPE,
ACTIONS(3768), 1,
anon_sym_EQ_GT,
STATE(1226), 1,
aux_sym_exception_choice_list_repeat1,
[47553] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3770), 1,
aux_sym_package_specification_token2,
STATE(1770), 1,
sym_aspect_specification,
[47566] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3772), 1,
sym_identifier,
ACTIONS(3774), 1,
aux_sym_use_clause_token2,
ACTIONS(3776), 1,
aux_sym_package_body_token1,
[47579] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3778), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[47588] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3780), 1,
anon_sym_SEMI,
STATE(1818), 1,
sym_aspect_specification,
[47601] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3436), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47610] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3297), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3782), 1,
anon_sym_SEMI,
ACTIONS(3784), 1,
aux_sym_with_clause_token1,
[47623] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3786), 1,
anon_sym_SEMI,
STATE(1955), 1,
sym_aspect_specification,
[47636] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3788), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[47645] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3790), 1,
anon_sym_SEMI,
STATE(1833), 1,
sym_aspect_specification,
[47658] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3340), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[47667] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3792), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47676] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3794), 3,
anon_sym_SEMI,
aux_sym_package_specification_token2,
aux_sym_expression_token3,
[47685] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3796), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[47694] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3798), 1,
aux_sym_package_specification_token2,
STATE(1871), 1,
sym_aspect_specification,
[47707] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3800), 1,
anon_sym_SEMI,
STATE(1561), 1,
sym_aspect_specification,
[47720] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3802), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[47729] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3804), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47738] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3806), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[47747] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3370), 1,
aux_sym_allocator_token1,
ACTIONS(3808), 1,
aux_sym_with_clause_token1,
ACTIONS(3810), 1,
aux_sym_private_type_declaration_token2,
[47760] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3812), 1,
sym_identifier,
ACTIONS(3814), 1,
aux_sym_use_clause_token2,
ACTIONS(3816), 1,
aux_sym_package_body_token1,
[47773] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3577), 1,
aux_sym_iterator_filter_token1,
STATE(1125), 2,
sym_exception_handler,
aux_sym_handled_sequence_of_statements_repeat1,
[47784] = 3,
ACTIONS(3), 1,
sym_comment,
STATE(1121), 1,
aux_sym__name_list_repeat1,
ACTIONS(3818), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[47795] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3820), 3,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_entry_declaration_token1,
[47804] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3822), 1,
anon_sym_SEMI,
STATE(1666), 1,
sym_aspect_specification,
[47817] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3824), 1,
anon_sym_SEMI,
STATE(1908), 1,
sym_aspect_specification,
[47830] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3826), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[47839] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3828), 1,
anon_sym_SEMI,
STATE(1785), 1,
sym_aspect_specification,
[47852] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3830), 3,
anon_sym_SEMI,
anon_sym_COLON_EQ,
aux_sym_accept_statement_token2,
[47861] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3832), 1,
anon_sym_RPAREN,
ACTIONS(3834), 1,
anon_sym_SEMI,
STATE(1223), 1,
aux_sym__parameter_specification_list_repeat1,
[47874] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1814), 1,
aux_sym_attribute_designator_token1,
STATE(1175), 2,
sym_access_to_subprogram_definition,
sym_access_to_object_definition,
[47885] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3837), 1,
aux_sym_package_specification_token2,
STATE(1663), 1,
sym_aspect_specification,
[47898] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3839), 1,
anon_sym_EQ_GT,
ACTIONS(3841), 1,
anon_sym_PIPE,
STATE(1226), 1,
aux_sym_exception_choice_list_repeat1,
[47911] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3802), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[47920] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3844), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[47929] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3846), 1,
aux_sym_package_specification_token2,
STATE(1852), 1,
sym_aspect_specification,
[47942] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3848), 1,
anon_sym_SEMI,
STATE(1811), 1,
sym_aspect_specification,
[47955] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1800), 1,
anon_sym_PIPE,
ACTIONS(3850), 1,
anon_sym_EQ_GT,
STATE(1294), 1,
aux_sym_discriminant_association_repeat1,
[47968] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3852), 1,
anon_sym_SEMI,
STATE(1810), 1,
sym_aspect_specification,
[47981] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3854), 1,
aux_sym_package_specification_token2,
STATE(1871), 1,
sym_aspect_specification,
[47994] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3856), 1,
anon_sym_COMMA,
ACTIONS(3858), 1,
anon_sym_RPAREN,
STATE(1191), 1,
aux_sym_discriminant_constraint_repeat1,
[48007] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3724), 1,
anon_sym_COMMA,
ACTIONS(3860), 1,
anon_sym_RPAREN,
STATE(1331), 1,
aux_sym_pragma_g_repeat1,
[48020] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3862), 1,
anon_sym_SEMI,
STATE(1808), 1,
sym_aspect_specification,
[48033] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3864), 1,
anon_sym_COMMA,
ACTIONS(3866), 1,
anon_sym_RPAREN,
STATE(1189), 1,
aux_sym_index_constraint_repeat1,
[48046] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3728), 1,
anon_sym_COMMA,
ACTIONS(3868), 1,
anon_sym_RPAREN,
STATE(1354), 1,
aux_sym_record_component_association_list_repeat2,
[48059] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3257), 1,
anon_sym_SEMI,
STATE(1617), 1,
sym_aspect_specification,
[48072] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
STATE(1462), 1,
sym_record_definition,
[48085] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3870), 1,
anon_sym_SEMI,
STATE(1620), 1,
sym_aspect_specification,
[48098] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3872), 3,
aux_sym_terminate_alternative_token1,
aux_sym_accept_statement_token1,
aux_sym_delay_until_statement_token1,
[48107] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1830), 1,
aux_sym_primary_null_token1,
ACTIONS(1836), 1,
aux_sym_record_component_association_list_token1,
STATE(1451), 1,
sym_record_definition,
[48120] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3748), 1,
anon_sym_COMMA,
ACTIONS(3874), 1,
anon_sym_RPAREN,
STATE(1187), 1,
aux_sym_case_expression_repeat1,
[48133] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3876), 1,
anon_sym_COMMA,
ACTIONS(3879), 1,
anon_sym_RPAREN,
STATE(1245), 1,
aux_sym_case_expression_repeat1,
[48146] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3035), 1,
anon_sym_COMMA,
ACTIONS(3818), 1,
anon_sym_SEMI,
STATE(1121), 1,
aux_sym__name_list_repeat1,
[48159] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3645), 1,
sym_identifier,
STATE(977), 1,
sym__aspect_mark,
STATE(1070), 1,
sym_aspect_association,
[48172] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3881), 1,
anon_sym_COMMA,
ACTIONS(3884), 1,
anon_sym_RPAREN,
STATE(1248), 1,
aux_sym_global_aspect_definition_repeat1,
[48185] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3886), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48194] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3888), 1,
anon_sym_COMMA,
ACTIONS(3890), 1,
anon_sym_RPAREN,
STATE(1183), 1,
aux_sym_record_component_association_list_repeat1,
[48207] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3710), 1,
anon_sym_COMMA,
ACTIONS(3892), 1,
anon_sym_RPAREN,
STATE(1116), 1,
aux_sym_positional_array_aggregate_repeat1,
[48220] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3894), 1,
anon_sym_SEMI,
STATE(1826), 1,
sym_aspect_specification,
[48233] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3896), 1,
anon_sym_SEMI,
STATE(1718), 1,
sym_aspect_specification,
[48246] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3898), 1,
anon_sym_COMMA,
ACTIONS(3900), 1,
anon_sym_RPAREN,
STATE(1248), 1,
aux_sym_global_aspect_definition_repeat1,
[48259] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3902), 1,
anon_sym_SEMI,
STATE(1692), 1,
sym_aspect_specification,
[48272] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3904), 1,
anon_sym_RPAREN,
ACTIONS(3906), 1,
anon_sym_SEMI,
STATE(1322), 1,
aux_sym__parameter_specification_list_repeat1,
[48285] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3101), 1,
aux_sym_chunk_specification_token1,
ACTIONS(3106), 1,
anon_sym_COLON,
ACTIONS(3108), 1,
aux_sym_iterator_specification_token1,
[48298] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3513), 1,
aux_sym_range_attribute_designator_token1,
ACTIONS(3908), 1,
aux_sym_attribute_designator_token3,
STATE(1461), 1,
sym_real_range_specification,
[48311] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3910), 1,
anon_sym_COMMA,
ACTIONS(3913), 1,
anon_sym_COLON,
STATE(1259), 1,
aux_sym__defining_identifier_list_repeat1,
[48324] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3915), 1,
sym_identifier,
ACTIONS(3917), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[48335] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3919), 1,
anon_sym_EQ_GT,
ACTIONS(3921), 1,
anon_sym_PIPE,
STATE(1367), 1,
aux_sym_discrete_choice_list_repeat1,
[48348] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3350), 1,
anon_sym_SEMI,
STATE(1585), 1,
sym_aspect_specification,
[48361] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3923), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48370] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3925), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48379] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3927), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token4,
aux_sym_elsif_expression_item_token1,
[48388] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3929), 1,
anon_sym_SEMI,
STATE(1821), 1,
sym_aspect_specification,
[48401] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3931), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48410] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3933), 1,
anon_sym_SEMI,
STATE(1676), 1,
sym_aspect_specification,
[48423] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3935), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48432] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3937), 1,
anon_sym_COMMA,
ACTIONS(3939), 1,
anon_sym_RBRACK,
STATE(1116), 1,
aux_sym_positional_array_aggregate_repeat1,
[48445] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3941), 1,
anon_sym_SEMI,
STATE(1798), 1,
sym_aspect_specification,
[48458] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3943), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48467] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3945), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[48476] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3947), 1,
anon_sym_SEMI,
STATE(1586), 1,
sym_aspect_specification,
[48489] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3921), 1,
anon_sym_PIPE,
ACTIONS(3949), 1,
anon_sym_EQ_GT,
STATE(1261), 1,
aux_sym_discrete_choice_list_repeat1,
[48502] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3951), 1,
anon_sym_RPAREN,
ACTIONS(3953), 1,
anon_sym_SEMI,
STATE(1312), 1,
aux_sym_discriminant_specification_list_repeat1,
[48515] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3955), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[48524] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3957), 1,
anon_sym_SEMI,
STATE(1903), 1,
sym_aspect_specification,
[48537] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3959), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48546] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3961), 1,
anon_sym_SEMI,
STATE(1904), 1,
sym_aspect_specification,
[48559] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3963), 1,
anon_sym_SEMI,
STATE(1985), 1,
sym_aspect_specification,
[48572] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3965), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[48581] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3967), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48590] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3969), 1,
anon_sym_SEMI,
STATE(1691), 1,
sym_aspect_specification,
[48603] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3971), 1,
anon_sym_SEMI,
STATE(1562), 1,
sym_aspect_specification,
[48616] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3973), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48625] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3975), 1,
anon_sym_COMMA,
ACTIONS(3978), 1,
anon_sym_RPAREN,
STATE(1287), 1,
aux_sym__enumeration_literal_list_repeat1,
[48638] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3980), 1,
anon_sym_SEMI,
STATE(1695), 1,
sym_aspect_specification,
[48651] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3982), 1,
anon_sym_COMMA,
ACTIONS(3984), 1,
anon_sym_RPAREN,
STATE(1287), 1,
aux_sym__enumeration_literal_list_repeat1,
[48664] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3986), 1,
anon_sym_COMMA,
ACTIONS(3989), 1,
anon_sym_RPAREN,
STATE(1290), 1,
aux_sym__index_subtype_definition_list_repeat1,
[48677] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3991), 1,
anon_sym_SEMI,
STATE(1566), 1,
sym_aspect_specification,
[48690] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(3621), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3665), 1,
aux_sym_allocator_token1,
[48703] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3993), 1,
sym_identifier,
STATE(1767), 2,
sym_loop_parameter_specification,
sym_iterator_specification,
[48714] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3995), 1,
anon_sym_EQ_GT,
ACTIONS(3997), 1,
anon_sym_PIPE,
STATE(1294), 1,
aux_sym_discriminant_association_repeat1,
[48727] = 3,
ACTIONS(3), 1,
sym_comment,
STATE(1439), 1,
sym__enumeration_literal_specification,
ACTIONS(4000), 2,
sym_identifier,
sym_character_literal,
[48738] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4002), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48747] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4004), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48756] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4006), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48765] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4008), 1,
anon_sym_SEMI,
STATE(1697), 1,
sym_aspect_specification,
[48778] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4010), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48787] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4012), 1,
anon_sym_SEMI,
STATE(1966), 1,
sym_aspect_specification,
[48800] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4014), 1,
anon_sym_SEMI,
STATE(1964), 1,
sym_aspect_specification,
[48813] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4016), 1,
anon_sym_SEMI,
STATE(1657), 1,
sym_aspect_specification,
[48826] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4018), 1,
anon_sym_SEMI,
STATE(1568), 1,
sym_aspect_specification,
[48839] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4020), 3,
sym_identifier,
sym_string_literal,
sym_character_literal,
[48848] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4022), 1,
anon_sym_COMMA,
ACTIONS(4025), 1,
anon_sym_RPAREN,
STATE(1306), 1,
aux_sym__discrete_subtype_definition_list_repeat1,
[48861] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3271), 1,
sym_identifier,
STATE(1425), 1,
sym_discriminant_specification,
STATE(1883), 1,
sym__defining_identifier_list,
[48874] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1968), 1,
anon_sym_COMMA,
ACTIONS(4027), 1,
anon_sym_COLON,
STATE(1259), 1,
aux_sym__defining_identifier_list_repeat1,
[48887] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4029), 1,
anon_sym_COMMA,
ACTIONS(4031), 1,
anon_sym_RPAREN,
STATE(1181), 1,
aux_sym_actual_parameter_part_repeat1,
[48900] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4033), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[48909] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
ACTIONS(4035), 1,
anon_sym_LPAREN,
STATE(1953), 1,
sym_iterated_element_association,
[48922] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4037), 1,
anon_sym_RPAREN,
ACTIONS(4039), 1,
anon_sym_SEMI,
STATE(1312), 1,
aux_sym_discriminant_specification_list_repeat1,
[48935] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4042), 1,
anon_sym_SEMI,
STATE(1698), 1,
sym_aspect_specification,
[48948] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4044), 1,
anon_sym_SEMI,
STATE(1987), 1,
sym_aspect_specification,
[48961] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4046), 1,
anon_sym_SEMI,
STATE(1673), 1,
sym_aspect_specification,
[48974] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3993), 1,
sym_identifier,
STATE(1459), 2,
sym_loop_parameter_specification,
sym_iterator_specification,
[48985] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4048), 1,
anon_sym_COMMA,
ACTIONS(4050), 1,
anon_sym_RPAREN,
STATE(1370), 1,
aux_sym__discrete_subtype_definition_list_repeat1,
[48998] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4052), 1,
anon_sym_SEMI,
STATE(1795), 1,
sym_aspect_specification,
[49011] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4054), 1,
anon_sym_SEMI,
STATE(1640), 1,
sym_aspect_specification,
[49024] = 3,
ACTIONS(3), 1,
sym_comment,
STATE(1293), 1,
sym_quantifier,
ACTIONS(3161), 2,
aux_sym_use_clause_token1,
aux_sym_quantifier_token1,
[49035] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3271), 1,
sym_identifier,
STATE(1486), 1,
sym_parameter_specification,
STATE(1870), 1,
sym__defining_identifier_list,
[49048] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3906), 1,
anon_sym_SEMI,
ACTIONS(4056), 1,
anon_sym_RPAREN,
STATE(1223), 1,
aux_sym__parameter_specification_list_repeat1,
[49061] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4058), 1,
anon_sym_SEMI,
STATE(1848), 1,
sym_aspect_specification,
[49074] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4060), 1,
anon_sym_SEMI,
STATE(1590), 1,
sym_aspect_specification,
[49087] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4062), 1,
anon_sym_SEMI,
STATE(1591), 1,
sym_aspect_specification,
[49100] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4064), 1,
anon_sym_SEMI,
STATE(1817), 1,
sym_aspect_specification,
[49113] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4066), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49122] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3953), 1,
anon_sym_SEMI,
ACTIONS(4068), 1,
anon_sym_RPAREN,
STATE(1276), 1,
aux_sym_discriminant_specification_list_repeat1,
[49135] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4070), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[49144] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4072), 3,
aux_sym_package_specification_token3,
aux_sym_expression_token3,
aux_sym_expression_token4,
[49153] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4074), 1,
anon_sym_COMMA,
ACTIONS(4077), 1,
anon_sym_RPAREN,
STATE(1331), 1,
aux_sym_pragma_g_repeat1,
[49166] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4070), 3,
aux_sym_iterated_element_association_token2,
anon_sym_EQ_GT,
aux_sym_loop_statement_token1,
[49175] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3856), 1,
anon_sym_COMMA,
ACTIONS(4079), 1,
anon_sym_RPAREN,
STATE(1234), 1,
aux_sym_discriminant_constraint_repeat1,
[49188] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4081), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[49197] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3864), 1,
anon_sym_COMMA,
ACTIONS(4083), 1,
anon_sym_RPAREN,
STATE(1237), 1,
aux_sym_index_constraint_repeat1,
[49210] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4085), 1,
aux_sym_package_specification_token2,
STATE(1852), 1,
sym_aspect_specification,
[49223] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3674), 1,
aux_sym_iterator_filter_token1,
STATE(1155), 2,
sym_case_statement_alternative,
aux_sym_case_statement_repeat1,
[49234] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4087), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49243] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4089), 1,
anon_sym_COMMA,
ACTIONS(4091), 1,
anon_sym_RPAREN,
STATE(1371), 1,
aux_sym__index_subtype_definition_list_repeat1,
[49256] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4093), 1,
anon_sym_SEMI,
STATE(1577), 1,
sym_aspect_specification,
[49269] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3898), 1,
anon_sym_COMMA,
ACTIONS(4095), 1,
anon_sym_RPAREN,
STATE(1254), 1,
aux_sym_global_aspect_definition_repeat1,
[49282] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4029), 1,
anon_sym_COMMA,
ACTIONS(4097), 1,
anon_sym_RPAREN,
STATE(1309), 1,
aux_sym_actual_parameter_part_repeat1,
[49295] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3888), 1,
anon_sym_COMMA,
ACTIONS(4099), 1,
anon_sym_RPAREN,
STATE(1250), 1,
aux_sym_record_component_association_list_repeat1,
[49308] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4101), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49317] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4103), 1,
anon_sym_SEMI,
STATE(1699), 1,
sym_aspect_specification,
[49330] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3035), 1,
anon_sym_COMMA,
ACTIONS(4105), 1,
anon_sym_SEMI,
STATE(1121), 1,
aux_sym__name_list_repeat1,
[49343] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4107), 1,
anon_sym_SEMI,
ACTIONS(4109), 1,
aux_sym_package_specification_token2,
ACTIONS(4111), 1,
aux_sym_expression_token3,
[49356] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4113), 1,
anon_sym_SEMI,
STATE(1774), 1,
sym_aspect_specification,
[49369] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4115), 1,
anon_sym_SEMI,
STATE(1704), 1,
sym_aspect_specification,
[49382] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1798), 1,
anon_sym_EQ_GT,
ACTIONS(1800), 1,
anon_sym_PIPE,
STATE(1357), 1,
aux_sym_discriminant_association_repeat1,
[49395] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4117), 1,
anon_sym_SEMI,
STATE(2000), 1,
sym_aspect_specification,
[49408] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4119), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49417] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1954), 1,
anon_sym_COLON,
ACTIONS(1968), 1,
anon_sym_COMMA,
STATE(1308), 1,
aux_sym__defining_identifier_list_repeat1,
[49430] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4121), 1,
anon_sym_COMMA,
ACTIONS(4124), 1,
anon_sym_RPAREN,
STATE(1354), 1,
aux_sym_record_component_association_list_repeat2,
[49443] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(3317), 1,
anon_sym_SEMI,
STATE(1716), 1,
sym_aspect_specification,
[49456] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4126), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49465] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1800), 1,
anon_sym_PIPE,
ACTIONS(4128), 1,
anon_sym_EQ_GT,
STATE(1294), 1,
aux_sym_discriminant_association_repeat1,
[49478] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3982), 1,
anon_sym_COMMA,
ACTIONS(4130), 1,
anon_sym_RPAREN,
STATE(1289), 1,
aux_sym__enumeration_literal_list_repeat1,
[49491] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3993), 1,
sym_identifier,
STATE(1997), 2,
sym_loop_parameter_specification,
sym_iterator_specification,
[49502] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4132), 1,
anon_sym_SEMI,
STATE(1633), 1,
sym_aspect_specification,
[49515] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4134), 1,
anon_sym_SEMI,
STATE(1679), 1,
sym_aspect_specification,
[49528] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4136), 3,
aux_sym_gnatprep_declarative_if_statement_token2,
aux_sym_gnatprep_declarative_if_statement_token3,
aux_sym_gnatprep_declarative_if_statement_token4,
[49537] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4138), 1,
anon_sym_SEMI,
STATE(1632), 1,
sym_aspect_specification,
[49550] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3547), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[49559] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4140), 3,
anon_sym_SEMI,
aux_sym_with_clause_token2,
aux_sym_expression_token3,
[49568] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2236), 1,
aux_sym_with_clause_token2,
ACTIONS(4142), 1,
aux_sym_package_specification_token2,
STATE(1943), 1,
sym_aspect_specification,
[49581] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4144), 1,
anon_sym_EQ_GT,
ACTIONS(4146), 1,
anon_sym_PIPE,
STATE(1367), 1,
aux_sym_discrete_choice_list_repeat1,
[49594] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4149), 3,
aux_sym_access_to_subprogram_definition_token2,
aux_sym_access_to_subprogram_definition_token3,
aux_sym_entry_declaration_token1,
[49603] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4151), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[49612] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4048), 1,
anon_sym_COMMA,
ACTIONS(4153), 1,
anon_sym_RPAREN,
STATE(1306), 1,
aux_sym__discrete_subtype_definition_list_repeat1,
[49625] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4089), 1,
anon_sym_COMMA,
ACTIONS(4155), 1,
anon_sym_RPAREN,
STATE(1290), 1,
aux_sym__index_subtype_definition_list_repeat1,
[49638] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3558), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACK,
[49647] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4157), 2,
aux_sym_iterator_filter_token1,
aux_sym_with_clause_token2,
[49655] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4159), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[49663] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4144), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[49671] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3551), 1,
anon_sym_SEMI,
ACTIONS(3553), 1,
aux_sym_package_specification_token2,
[49681] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4161), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[49689] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4163), 1,
sym_identifier,
ACTIONS(4165), 1,
anon_sym_SEMI,
[49699] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4167), 1,
aux_sym_package_specification_token3,
ACTIONS(4169), 1,
aux_sym_exception_declaration_token1,
[49709] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4171), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[49717] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2720), 1,
anon_sym_LPAREN,
STATE(1373), 1,
sym_formal_part,
[49727] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4173), 1,
anon_sym_COMMA,
ACTIONS(4175), 1,
anon_sym_RPAREN,
[49737] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4178), 1,
aux_sym_package_specification_token3,
ACTIONS(4180), 1,
aux_sym_subprogram_body_token1,
[49747] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4182), 1,
sym_identifier,
ACTIONS(4184), 1,
anon_sym_SEMI,
[49757] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4186), 1,
sym_identifier,
ACTIONS(4188), 1,
anon_sym_SEMI,
[49767] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4190), 2,
aux_sym_chunk_specification_token1,
aux_sym_iterator_specification_token1,
[49775] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4192), 1,
anon_sym_SEMI,
ACTIONS(4194), 1,
aux_sym_accept_statement_token2,
[49785] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4196), 1,
sym_identifier,
ACTIONS(4198), 1,
anon_sym_SEMI,
[49795] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4124), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[49803] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4200), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[49811] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4202), 2,
sym_identifier,
sym_string_literal,
[49819] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4204), 1,
sym_identifier,
ACTIONS(4206), 1,
anon_sym_SEMI,
[49829] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4208), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[49837] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4210), 1,
sym_identifier,
ACTIONS(4212), 1,
anon_sym_SEMI,
[49847] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4214), 1,
aux_sym_chunk_specification_token1,
ACTIONS(4216), 1,
aux_sym_iterator_specification_token1,
[49857] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3655), 1,
anon_sym_COMMA,
ACTIONS(3657), 1,
anon_sym_RPAREN,
[49867] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4218), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[49875] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3772), 1,
sym_identifier,
ACTIONS(3774), 1,
aux_sym_use_clause_token2,
[49885] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4220), 1,
sym_identifier,
ACTIONS(4222), 1,
anon_sym_SEMI,
[49895] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2377), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[49903] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4224), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[49911] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4226), 1,
anon_sym_LPAREN,
ACTIONS(4228), 1,
anon_sym_SEMI,
[49921] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4230), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[49929] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4230), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[49937] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3812), 1,
sym_identifier,
ACTIONS(3814), 1,
aux_sym_use_clause_token2,
[49947] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4232), 1,
aux_sym_iterator_filter_token1,
STATE(1244), 1,
sym_case_expression_alternative,
[49957] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4234), 1,
anon_sym_SEMI,
ACTIONS(4236), 1,
aux_sym_accept_statement_token2,
[49967] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3995), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[49975] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4238), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[49983] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4240), 1,
anon_sym_COMMA,
ACTIONS(4242), 1,
anon_sym_RPAREN,
[49993] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4245), 1,
aux_sym_with_clause_token2,
STATE(1397), 1,
sym_record_extension_part,
[50003] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4247), 1,
aux_sym_expression_token3,
ACTIONS(4249), 1,
aux_sym_expression_token4,
[50013] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4251), 1,
sym_identifier,
ACTIONS(4253), 1,
anon_sym_SEMI,
[50023] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4255), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50031] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4077), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50039] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4257), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50047] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4259), 1,
sym_identifier,
ACTIONS(4261), 1,
anon_sym_SEMI,
[50057] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4263), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50065] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4265), 1,
sym_identifier,
ACTIONS(4267), 1,
anon_sym_SEMI,
[50075] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4269), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50083] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4271), 1,
sym_identifier,
ACTIONS(4273), 1,
anon_sym_SEMI,
[50093] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4275), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50101] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4277), 1,
anon_sym_SEMI,
ACTIONS(4279), 1,
aux_sym_package_specification_token2,
[50111] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4281), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50119] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4037), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50127] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4283), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50135] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4285), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50143] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4287), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50151] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4289), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50159] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4291), 1,
aux_sym_compilation_unit_token1,
ACTIONS(4293), 1,
aux_sym_with_clause_token1,
[50169] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4295), 1,
sym_identifier,
ACTIONS(4297), 1,
anon_sym_SEMI,
[50179] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4299), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50187] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2345), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(2347), 1,
aux_sym_access_to_subprogram_definition_token3,
[50197] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3989), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50205] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4301), 1,
anon_sym_SEMI,
ACTIONS(4303), 1,
aux_sym_accept_statement_token2,
[50215] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4305), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50223] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(394), 1,
aux_sym_package_specification_token3,
ACTIONS(396), 1,
aux_sym_subprogram_body_token1,
[50233] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4307), 1,
sym_identifier,
ACTIONS(4309), 1,
anon_sym_SEMI,
[50243] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3978), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50251] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4311), 1,
sym_identifier,
STATE(453), 1,
sym_reduction_attribute_designator,
[50261] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3647), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50269] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4313), 1,
sym_identifier,
ACTIONS(4315), 1,
anon_sym_SEMI,
[50279] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4317), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[50287] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4319), 1,
anon_sym_SEMI,
ACTIONS(4321), 1,
aux_sym_package_specification_token2,
[50297] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4323), 1,
aux_sym_with_clause_token2,
STATE(1454), 1,
sym_record_extension_part,
[50307] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4323), 1,
aux_sym_with_clause_token2,
STATE(1397), 1,
sym_record_extension_part,
[50317] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4325), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50325] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4327), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[50333] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4329), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50341] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4331), 1,
sym_identifier,
ACTIONS(4333), 1,
anon_sym_SEMI,
[50351] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4335), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50359] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4337), 1,
aux_sym_with_clause_token2,
STATE(1454), 1,
sym_record_extension_part,
[50369] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4339), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50377] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4341), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50385] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
ACTIONS(3665), 1,
aux_sym_allocator_token1,
[50395] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3226), 1,
anon_sym_SEMI,
ACTIONS(3752), 1,
aux_sym_package_specification_token2,
[50405] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3913), 2,
anon_sym_COMMA,
anon_sym_COLON,
[50413] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3778), 1,
anon_sym_COMMA,
ACTIONS(4343), 1,
anon_sym_RBRACK,
[50423] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4346), 1,
aux_sym_iterated_element_association_token2,
ACTIONS(4348), 1,
anon_sym_EQ_GT,
[50433] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3127), 1,
aux_sym_allocator_token1,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
[50443] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4350), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50451] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4352), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50459] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4354), 1,
aux_sym_with_clause_token2,
ACTIONS(4356), 1,
aux_sym_expression_token1,
[50469] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4358), 1,
sym_identifier,
ACTIONS(4360), 1,
anon_sym_SEMI,
[50479] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4362), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50487] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4364), 1,
sym_identifier,
ACTIONS(4366), 1,
anon_sym_SEMI,
[50497] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4368), 1,
sym_identifier,
ACTIONS(4370), 1,
anon_sym_SEMI,
[50507] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3688), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50515] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4372), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50523] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4374), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50531] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4376), 1,
sym_identifier,
ACTIONS(4378), 1,
anon_sym_SEMI,
[50541] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3879), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50549] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4380), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[50557] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4382), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50565] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4384), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[50573] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4386), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50581] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4388), 1,
sym_identifier,
ACTIONS(4390), 1,
anon_sym_SEMI,
[50591] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4392), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[50599] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3839), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[50607] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4394), 1,
anon_sym_SEMI,
ACTIONS(4396), 1,
aux_sym_package_specification_token2,
[50617] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4398), 1,
sym_identifier,
ACTIONS(4400), 1,
anon_sym_SEMI,
[50627] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4402), 1,
anon_sym_SEMI,
ACTIONS(4404), 1,
aux_sym_package_specification_token2,
[50637] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4407), 1,
anon_sym_SEMI,
ACTIONS(4409), 1,
aux_sym_package_specification_token2,
[50647] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4323), 1,
aux_sym_with_clause_token2,
STATE(1380), 1,
sym_record_extension_part,
[50657] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4411), 1,
sym_identifier,
ACTIONS(4413), 1,
anon_sym_SEMI,
[50667] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3832), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50675] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4415), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50683] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4417), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50691] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4419), 2,
anon_sym_SEMI,
aux_sym_accept_statement_token2,
[50699] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4421), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50707] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4423), 1,
sym_identifier,
ACTIONS(4425), 1,
anon_sym_SEMI,
[50717] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4427), 1,
sym_identifier,
ACTIONS(4429), 1,
anon_sym_SEMI,
[50727] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4431), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(4433), 1,
aux_sym_access_to_subprogram_definition_token3,
[50737] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4435), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50745] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4437), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50753] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3017), 1,
aux_sym_iterator_filter_token1,
STATE(1715), 1,
sym_entry_barrier,
[50763] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4439), 1,
sym_identifier,
ACTIONS(4441), 1,
anon_sym_SEMI,
[50773] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4443), 2,
aux_sym_iterator_filter_token1,
aux_sym_with_clause_token2,
[50781] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4445), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50789] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4447), 1,
sym_identifier,
ACTIONS(4449), 1,
anon_sym_SEMI,
[50799] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4451), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[50807] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4453), 1,
sym_identifier,
ACTIONS(4455), 1,
anon_sym_SEMI,
[50817] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4457), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50825] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4459), 1,
aux_sym_with_clause_token2,
STATE(1380), 1,
sym_record_extension_part,
[50835] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4461), 2,
anon_sym_SEMI,
aux_sym_with_clause_token2,
[50843] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3434), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50851] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4463), 1,
sym_identifier,
ACTIONS(4465), 1,
anon_sym_SEMI,
[50861] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3428), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50869] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2793), 1,
aux_sym_result_profile_token1,
STATE(848), 1,
sym_result_profile,
[50879] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3700), 2,
anon_sym_RPAREN,
anon_sym_SEMI,
[50887] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4467), 1,
aux_sym_with_clause_token2,
ACTIONS(4469), 1,
aux_sym_expression_token1,
[50897] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3155), 1,
anon_sym_PIPE,
ACTIONS(4471), 1,
anon_sym_EQ_GT,
[50907] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4474), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50915] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4476), 1,
sym_identifier,
ACTIONS(4478), 1,
anon_sym_SEMI,
[50925] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4480), 1,
aux_sym_access_to_subprogram_definition_token2,
ACTIONS(4482), 1,
aux_sym_access_to_subprogram_definition_token3,
[50935] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3762), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50943] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4240), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50951] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4484), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[50959] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4486), 1,
anon_sym_COMMA,
STATE(1116), 1,
aux_sym_positional_array_aggregate_repeat1,
[50969] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4488), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[50977] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3017), 1,
aux_sym_iterator_filter_token1,
STATE(1850), 1,
sym_entry_barrier,
[50987] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3155), 2,
anon_sym_EQ_GT,
anon_sym_PIPE,
[50995] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4232), 1,
aux_sym_iterator_filter_token1,
STATE(1472), 1,
sym_case_expression_alternative,
[51005] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3735), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[51013] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4490), 1,
aux_sym_compilation_unit_token1,
ACTIONS(4492), 1,
aux_sym_with_clause_token2,
[51023] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(454), 1,
aux_sym_iterated_element_association_token1,
STATE(1683), 1,
sym_iterated_element_association,
[51033] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3297), 1,
aux_sym_compilation_unit_token1,
ACTIONS(3419), 1,
aux_sym_allocator_token1,
[51043] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4494), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[51051] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3742), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[51059] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3884), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[51067] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3698), 1,
aux_sym_compilation_unit_token1,
ACTIONS(4497), 1,
aux_sym_with_clause_token1,
[51077] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4499), 2,
aux_sym_iterator_filter_token1,
aux_sym_package_specification_token3,
[51085] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4501), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[51093] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4503), 1,
aux_sym_with_clause_token2,
ACTIONS(4505), 1,
aux_sym_expression_token1,
[51103] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4507), 1,
aux_sym_result_profile_token1,
[51110] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4509), 1,
anon_sym_EQ_GT,
[51117] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4511), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
[51124] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4513), 1,
anon_sym_SEMI,
[51131] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4515), 1,
aux_sym_expression_token2,
[51138] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4517), 1,
aux_sym_if_expression_token1,
[51145] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4519), 1,
anon_sym_RPAREN,
[51152] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4521), 1,
anon_sym_RPAREN,
[51159] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4523), 1,
anon_sym_RBRACK,
[51166] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4523), 1,
anon_sym_RPAREN,
[51173] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4525), 1,
anon_sym_SEMI,
[51180] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4455), 1,
anon_sym_SEMI,
[51187] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4527), 1,
anon_sym_SEMI,
[51194] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4529), 1,
anon_sym_SEMI,
[51201] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4531), 1,
aux_sym_package_specification_token2,
[51208] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4533), 1,
anon_sym_SEMI,
[51215] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4535), 1,
aux_sym_with_clause_token2,
[51222] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4537), 1,
aux_sym_with_clause_token2,
[51229] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4539), 1,
anon_sym_SEMI,
[51236] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4413), 1,
anon_sym_SEMI,
[51243] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4541), 1,
anon_sym_SEMI,
[51250] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4543), 1,
anon_sym_EQ_GT,
[51257] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4409), 1,
aux_sym_package_specification_token2,
[51264] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4545), 1,
aux_sym_package_specification_token3,
[51271] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4547), 1,
aux_sym_compilation_unit_token1,
[51278] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4549), 1,
aux_sym_compilation_unit_token1,
[51285] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3902), 1,
anon_sym_SEMI,
[51292] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4551), 1,
anon_sym_SEMI,
[51299] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4553), 1,
anon_sym_DOT_DOT,
[51306] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4555), 1,
aux_sym_package_specification_token3,
[51313] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4557), 1,
aux_sym_record_component_association_list_token1,
[51320] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4559), 1,
anon_sym_SEMI,
[51327] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4561), 1,
aux_sym_range_attribute_designator_token1,
[51334] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4563), 1,
anon_sym_SEMI,
[51341] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4565), 1,
anon_sym_LT_GT,
[51348] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4567), 1,
anon_sym_EQ_GT,
[51355] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4569), 1,
aux_sym_compilation_unit_token1,
[51362] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4571), 1,
sym_tick,
[51369] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4573), 1,
anon_sym_SEMI,
[51376] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4575), 1,
aux_sym_package_specification_token3,
[51383] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4577), 1,
aux_sym_compilation_unit_token1,
[51390] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4579), 1,
anon_sym_SEMI,
[51397] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4581), 1,
anon_sym_SEMI,
[51404] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4583), 1,
anon_sym_SEMI,
[51411] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4585), 1,
aux_sym_iterator_specification_token1,
[51418] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4587), 1,
aux_sym_iterator_specification_token1,
[51425] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4589), 1,
aux_sym_iterated_element_association_token2,
[51432] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4591), 1,
aux_sym_iterated_element_association_token2,
[51439] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4593), 1,
anon_sym_SEMI,
[51446] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4595), 1,
anon_sym_LT_GT,
[51453] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4132), 1,
anon_sym_SEMI,
[51460] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4597), 1,
anon_sym_SEMI,
[51467] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4599), 1,
aux_sym_if_expression_token1,
[51474] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4601), 1,
anon_sym_SEMI,
[51481] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4603), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
[51488] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4605), 1,
anon_sym_SEMI,
[51495] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4607), 1,
anon_sym_SEMI,
[51502] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4609), 1,
aux_sym_expression_token2,
[51509] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4113), 1,
anon_sym_SEMI,
[51516] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4611), 1,
anon_sym_SEMI,
[51523] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4613), 1,
aux_sym_package_specification_token3,
[51530] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4615), 1,
anon_sym_SEMI,
[51537] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4617), 1,
aux_sym_if_expression_token1,
[51544] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4619), 1,
aux_sym_asynchronous_select_token1,
[51551] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4621), 1,
anon_sym_SEMI,
[51558] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4623), 1,
aux_sym_package_specification_token3,
[51565] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4625), 1,
aux_sym_asynchronous_select_token1,
[51572] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4627), 1,
anon_sym_SEMI,
[51579] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4629), 1,
anon_sym_SEMI,
[51586] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4631), 1,
anon_sym_SEMI,
[51593] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4633), 1,
anon_sym_SEMI,
[51600] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4635), 1,
anon_sym_SEMI,
[51607] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4637), 1,
aux_sym_if_expression_token1,
[51614] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4639), 1,
aux_sym_asynchronous_select_token1,
[51621] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4641), 1,
aux_sym_package_specification_token3,
[51628] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4643), 1,
aux_sym_expression_token2,
[51635] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4645), 1,
aux_sym_package_specification_token3,
[51642] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4647), 1,
anon_sym_SEMI,
[51649] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4649), 1,
anon_sym_SEMI,
[51656] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4651), 1,
anon_sym_SEMI,
[51663] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4060), 1,
anon_sym_SEMI,
[51670] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4653), 1,
aux_sym_if_expression_token1,
[51677] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4062), 1,
anon_sym_SEMI,
[51684] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4655), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
[51691] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4657), 1,
anon_sym_SEMI,
[51698] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4659), 1,
anon_sym_SEMI,
[51705] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4661), 1,
anon_sym_SEMI,
[51712] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4663), 1,
anon_sym_SEMI,
[51719] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3617), 1,
anon_sym_SEMI,
[51726] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4665), 1,
aux_sym_iterated_element_association_token2,
[51733] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4667), 1,
aux_sym_iterated_element_association_token2,
[51740] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4291), 1,
aux_sym_compilation_unit_token1,
[51747] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4669), 1,
aux_sym_allocator_token1,
[51754] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4671), 1,
anon_sym_RPAREN,
[51761] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4673), 1,
anon_sym_SEMI,
[51768] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3991), 1,
anon_sym_SEMI,
[51775] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4675), 1,
anon_sym_SEMI,
[51782] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4677), 1,
anon_sym_SEMI,
[51789] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4679), 1,
anon_sym_SEMI,
[51796] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4681), 1,
aux_sym_record_component_association_list_token1,
[51803] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4683), 1,
anon_sym_RPAREN,
[51810] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4685), 1,
anon_sym_SEMI,
[51817] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4687), 1,
aux_sym_subprogram_body_token1,
[51824] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4689), 1,
anon_sym_SEMI,
[51831] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4691), 1,
aux_sym_package_specification_token3,
[51838] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4693), 1,
anon_sym_SEMI,
[51845] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4695), 1,
anon_sym_SEMI,
[51852] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4697), 1,
anon_sym_SEMI,
[51859] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4699), 1,
anon_sym_SEMI,
[51866] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4701), 1,
aux_sym_with_clause_token2,
[51873] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4703), 1,
aux_sym_with_clause_token2,
[51880] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4705), 1,
anon_sym_SEMI,
[51887] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4707), 1,
anon_sym_SEMI,
[51894] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4709), 1,
aux_sym_package_specification_token3,
[51901] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4711), 1,
anon_sym_EQ_GT,
[51908] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4713), 1,
anon_sym_RBRACK,
[51915] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4715), 1,
anon_sym_EQ_GT,
[51922] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4713), 1,
anon_sym_RPAREN,
[51929] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4717), 1,
anon_sym_RPAREN,
[51936] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4719), 1,
anon_sym_RPAREN,
[51943] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4188), 1,
anon_sym_SEMI,
[51950] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4721), 1,
aux_sym_if_expression_token1,
[51957] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4723), 1,
anon_sym_SEMI,
[51964] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4449), 1,
anon_sym_SEMI,
[51971] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4725), 1,
anon_sym_SEMI,
[51978] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4727), 1,
aux_sym_with_clause_token2,
[51985] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4729), 1,
aux_sym_with_clause_token2,
[51992] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4478), 1,
anon_sym_SEMI,
[51999] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3752), 1,
aux_sym_package_specification_token2,
[52006] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4731), 1,
sym_identifier,
[52013] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4733), 1,
sym_identifier,
[52020] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4735), 1,
anon_sym_SEMI,
[52027] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4737), 1,
aux_sym_package_specification_token3,
[52034] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4739), 1,
aux_sym_allocator_token1,
[52041] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3698), 1,
aux_sym_compilation_unit_token1,
[52048] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4741), 1,
aux_sym_allocator_token1,
[52055] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4743), 1,
anon_sym_SEMI,
[52062] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4745), 1,
aux_sym_package_specification_token2,
[52069] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3800), 1,
anon_sym_SEMI,
[52076] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4407), 1,
anon_sym_SEMI,
[52083] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(348), 1,
aux_sym_private_type_declaration_token1,
[52090] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4747), 1,
anon_sym_SEMI,
[52097] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4749), 1,
anon_sym_SEMI,
[52104] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4178), 1,
aux_sym_package_specification_token3,
[52111] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4751), 1,
anon_sym_SEMI,
[52118] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4753), 1,
aux_sym_package_specification_token3,
[52125] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4755), 1,
aux_sym_record_component_association_list_token1,
[52132] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4757), 1,
anon_sym_SEMI,
[52139] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4759), 1,
anon_sym_RBRACK,
[52146] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4761), 1,
anon_sym_RPAREN,
[52153] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3894), 1,
anon_sym_SEMI,
[52160] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4763), 1,
anon_sym_SEMI,
[52167] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4765), 1,
anon_sym_SEMI,
[52174] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4767), 1,
anon_sym_SEMI,
[52181] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4769), 1,
aux_sym_subprogram_body_token1,
[52188] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4771), 1,
anon_sym_SEMI,
[52195] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4773), 1,
anon_sym_SEMI,
[52202] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3766), 1,
anon_sym_SEMI,
[52209] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4775), 1,
aux_sym_compilation_unit_token1,
[52216] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4777), 1,
aux_sym_package_specification_token3,
[52223] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4779), 1,
anon_sym_SEMI,
[52230] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4781), 1,
aux_sym_with_clause_token2,
[52237] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4783), 1,
anon_sym_SEMI,
[52244] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4785), 1,
anon_sym_SEMI,
[52251] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4787), 1,
anon_sym_SEMI,
[52258] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4789), 1,
anon_sym_RPAREN,
[52265] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4791), 1,
aux_sym_loop_statement_token1,
[52272] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4793), 1,
aux_sym_package_specification_token3,
[52279] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4795), 1,
anon_sym_RPAREN,
[52286] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4797), 1,
anon_sym_SEMI,
[52293] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4799), 1,
anon_sym_SEMI,
[52300] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4801), 1,
anon_sym_SEMI,
[52307] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4803), 1,
anon_sym_SEMI,
[52314] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4805), 1,
anon_sym_SEMI,
[52321] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4807), 1,
anon_sym_RPAREN,
[52328] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4809), 1,
aux_sym_with_clause_token2,
[52335] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4811), 1,
anon_sym_RPAREN,
[52342] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4813), 1,
sym_identifier,
[52349] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4815), 1,
anon_sym_RPAREN,
[52356] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4817), 1,
aux_sym_package_specification_token2,
[52363] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4819), 1,
aux_sym_package_specification_token2,
[52370] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3350), 1,
anon_sym_SEMI,
[52377] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4821), 1,
anon_sym_EQ_GT,
[52384] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4823), 1,
anon_sym_SEMI,
[52391] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4825), 1,
anon_sym_SEMI,
[52398] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4827), 1,
anon_sym_SEMI,
[52405] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4829), 1,
aux_sym_if_expression_token1,
[52412] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4831), 1,
aux_sym_package_specification_token3,
[52419] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4833), 1,
aux_sym_asynchronous_select_token1,
[52426] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4835), 1,
aux_sym_package_specification_token3,
[52433] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4837), 1,
anon_sym_SEMI,
[52440] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4839), 1,
aux_sym_package_specification_token3,
[52447] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4841), 1,
aux_sym_if_expression_token1,
[52454] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4843), 1,
aux_sym_asynchronous_select_token1,
[52461] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4845), 1,
aux_sym_gnatprep_declarative_if_statement_token4,
[52468] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4847), 1,
anon_sym_SEMI,
[52475] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4849), 1,
aux_sym_asynchronous_select_token1,
[52482] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4851), 1,
aux_sym_if_expression_token1,
[52489] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4853), 1,
anon_sym_SEMI,
[52496] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3257), 1,
anon_sym_SEMI,
[52503] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4855), 1,
anon_sym_RPAREN,
[52510] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4857), 1,
aux_sym_expression_token2,
[52517] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3870), 1,
anon_sym_SEMI,
[52524] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4859), 1,
aux_sym_iterated_element_association_token2,
[52531] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4861), 1,
anon_sym_LT_GT,
[52538] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4863), 1,
anon_sym_LT_GT,
[52545] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4865), 1,
anon_sym_RPAREN,
[52552] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4865), 1,
anon_sym_RBRACK,
[52559] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4867), 1,
anon_sym_LT_GT,
[52566] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4869), 1,
anon_sym_SEMI,
[52573] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4871), 1,
anon_sym_SEMI,
[52580] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4873), 1,
anon_sym_SEMI,
[52587] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4875), 1,
anon_sym_LT_GT,
[52594] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4877), 1,
aux_sym_with_clause_token2,
[52601] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4879), 1,
anon_sym_LT_GT,
[52608] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4273), 1,
anon_sym_SEMI,
[52615] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4881), 1,
aux_sym_allocator_token1,
[52622] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(406), 1,
aux_sym_subprogram_body_token1,
[52629] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4883), 1,
aux_sym_package_specification_token3,
[52636] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4277), 1,
anon_sym_SEMI,
[52643] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4885), 1,
anon_sym_SEMI,
[52650] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4887), 1,
anon_sym_SEMI,
[52657] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4889), 1,
aux_sym_with_clause_token2,
[52664] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4891), 1,
anon_sym_SEMI,
[52671] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4893), 1,
aux_sym_compilation_unit_token1,
[52678] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4895), 1,
aux_sym_case_expression_token1,
[52685] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4897), 1,
anon_sym_EQ_GT,
[52692] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4899), 1,
aux_sym_with_clause_token2,
[52699] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4901), 1,
anon_sym_RPAREN,
[52706] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(342), 1,
aux_sym_private_type_declaration_token1,
[52713] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4903), 1,
anon_sym_EQ_GT,
[52720] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4906), 1,
anon_sym_RPAREN,
[52727] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4908), 1,
anon_sym_EQ_GT,
[52734] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4267), 1,
anon_sym_SEMI,
[52741] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4910), 1,
sym_identifier,
[52748] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4912), 1,
aux_sym_package_specification_token2,
[52755] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4914), 1,
anon_sym_SEMI,
[52762] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4916), 1,
anon_sym_SEMI,
[52769] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4918), 1,
aux_sym_with_clause_token2,
[52776] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4920), 1,
anon_sym_SEMI,
[52783] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4922), 1,
anon_sym_SEMI,
[52790] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4309), 1,
anon_sym_SEMI,
[52797] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4924), 1,
anon_sym_EQ_GT,
[52804] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4926), 1,
aux_sym_if_expression_token1,
[52811] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4928), 1,
anon_sym_COLON,
[52818] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4930), 1,
aux_sym_package_body_token1,
[52825] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4932), 1,
anon_sym_SEMI,
[52832] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4934), 1,
aux_sym_package_body_token1,
[52839] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4936), 1,
aux_sym_package_specification_token3,
[52846] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4938), 1,
aux_sym_package_body_token1,
[52853] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3822), 1,
anon_sym_SEMI,
[52860] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4940), 1,
anon_sym_SEMI,
[52867] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4942), 1,
aux_sym_if_expression_token1,
[52874] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3419), 1,
aux_sym_allocator_token1,
[52881] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4944), 1,
aux_sym_allocator_token1,
[52888] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4946), 1,
aux_sym_package_specification_token3,
[52895] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4948), 1,
anon_sym_COLON,
[52902] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4950), 1,
sym_identifier,
[52909] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4952), 1,
aux_sym_component_list_token1,
[52916] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4954), 1,
anon_sym_DOT_DOT,
[52923] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4046), 1,
anon_sym_SEMI,
[52930] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4956), 1,
anon_sym_RPAREN,
[52937] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4958), 1,
anon_sym_SEMI,
[52944] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4960), 1,
anon_sym_SEMI,
[52951] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3226), 1,
anon_sym_SEMI,
[52958] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4962), 1,
aux_sym_package_specification_token3,
[52965] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4964), 1,
aux_sym_attribute_designator_token4,
[52972] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4966), 1,
aux_sym_record_component_association_list_token1,
[52979] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4968), 1,
anon_sym_SEMI,
[52986] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4970), 1,
anon_sym_EQ_GT,
[52993] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4972), 1,
anon_sym_SEMI,
[53000] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4974), 1,
anon_sym_DOT_DOT,
[53007] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4976), 1,
aux_sym__aspect_mark_token1,
[53014] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4978), 1,
anon_sym_SEMI,
[53021] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4980), 1,
aux_sym_package_specification_token3,
[53028] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3980), 1,
anon_sym_SEMI,
[53035] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4008), 1,
anon_sym_SEMI,
[53042] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(408), 1,
aux_sym_subprogram_body_token1,
[53049] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4982), 1,
anon_sym_SEMI,
[53056] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4984), 1,
aux_sym_allocator_token1,
[53063] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4986), 1,
aux_sym_package_specification_token3,
[53070] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4988), 1,
aux_sym_loop_statement_token1,
[53077] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4990), 1,
anon_sym_SEMI,
[53084] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4042), 1,
anon_sym_SEMI,
[53091] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3317), 1,
anon_sym_SEMI,
[53098] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4992), 1,
anon_sym_SEMI,
[53105] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4994), 1,
anon_sym_SEMI,
[53112] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4996), 1,
anon_sym_EQ_GT,
[53119] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4998), 1,
aux_sym_case_expression_token1,
[53126] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5000), 1,
anon_sym_SEMI,
[53133] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5002), 1,
anon_sym_SEMI,
[53140] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5004), 1,
anon_sym_SEMI,
[53147] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5006), 1,
aux_sym_package_specification_token3,
[53154] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5008), 1,
anon_sym_RPAREN,
[53161] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5010), 1,
anon_sym_SEMI,
[53168] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3411), 1,
aux_sym_package_specification_token3,
[53175] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5012), 1,
aux_sym_with_clause_token2,
[53182] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5014), 1,
anon_sym_SEMI,
[53189] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5016), 1,
anon_sym_SEMI,
[53196] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5018), 1,
aux_sym_compilation_unit_token1,
[53203] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5020), 1,
aux_sym_compilation_unit_token1,
[53210] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5022), 1,
aux_sym_asynchronous_select_token1,
[53217] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5024), 1,
anon_sym_SEMI,
[53224] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5026), 1,
aux_sym_package_specification_token3,
[53231] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5028), 1,
aux_sym_package_specification_token3,
[53238] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3770), 1,
aux_sym_package_specification_token2,
[53245] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5030), 1,
anon_sym_EQ_GT,
[53252] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3726), 1,
anon_sym_RPAREN,
[53259] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5032), 1,
anon_sym_SEMI,
[53266] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5034), 1,
aux_sym_iterated_element_association_token2,
[53273] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5036), 1,
aux_sym_chunk_specification_token1,
[53280] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5038), 1,
anon_sym_SEMI,
[53287] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5040), 1,
aux_sym_package_specification_token2,
[53294] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5042), 1,
anon_sym_SEMI,
[53301] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(416), 1,
aux_sym_subprogram_body_token1,
[53308] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5044), 1,
aux_sym_package_specification_token2,
[53315] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5046), 1,
anon_sym_RPAREN,
[53322] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5048), 1,
aux_sym_package_specification_token2,
[53329] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3175), 1,
aux_sym_entry_declaration_token1,
[53336] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5050), 1,
anon_sym_SEMI,
[53343] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5052), 1,
aux_sym_attribute_designator_token2,
[53350] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5054), 1,
aux_sym_expression_token2,
[53357] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5056), 1,
anon_sym_SEMI,
[53364] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5058), 1,
aux_sym_if_expression_token1,
[53371] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5060), 1,
aux_sym_package_specification_token2,
[53378] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5062), 1,
anon_sym_COLON,
[53385] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5064), 1,
sym_identifier,
[53392] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5066), 1,
anon_sym_RPAREN,
[53399] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5068), 1,
sym_identifier,
[53406] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3868), 1,
anon_sym_RPAREN,
[53413] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5070), 1,
sym_identifier,
[53420] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5072), 1,
anon_sym_SEMI,
[53427] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5074), 1,
aux_sym_package_specification_token3,
[53434] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5076), 1,
anon_sym_RPAREN,
[53441] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4390), 1,
anon_sym_SEMI,
[53448] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5078), 1,
anon_sym_COLON,
[53455] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5080), 1,
aux_sym_package_specification_token2,
[53462] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5082), 1,
anon_sym_SEMI,
[53469] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5084), 1,
aux_sym_with_clause_token2,
[53476] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5086), 1,
aux_sym_compilation_unit_token1,
[53483] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5088), 1,
aux_sym_compilation_unit_token1,
[53490] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5090), 1,
anon_sym_SEMI,
[53497] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5092), 1,
anon_sym_SEMI,
[53504] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4212), 1,
anon_sym_SEMI,
[53511] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5094), 1,
anon_sym_SEMI,
[53518] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3189), 1,
aux_sym_interface_type_definition_token2,
[53525] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5096), 1,
aux_sym_record_component_association_list_token1,
[53532] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5098), 1,
anon_sym_RPAREN,
[53539] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5100), 1,
anon_sym_COLON,
[53546] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5102), 1,
anon_sym_SEMI,
[53553] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5104), 1,
anon_sym_RPAREN,
[53560] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5106), 1,
anon_sym_SEMI,
[53567] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5108), 1,
anon_sym_SEMI,
[53574] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5110), 1,
aux_sym_package_specification_token2,
[53581] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5112), 1,
aux_sym_subunit_token1,
[53588] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5114), 1,
anon_sym_SEMI,
[53595] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5116), 1,
anon_sym_LPAREN,
[53602] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5118), 1,
anon_sym_SEMI,
[53609] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5120), 1,
anon_sym_SEMI,
[53616] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(2206), 1,
anon_sym_DOT_DOT,
[53623] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5122), 1,
sym_tick,
[53630] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5124), 1,
anon_sym_RPAREN,
[53637] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5126), 1,
anon_sym_RPAREN,
[53644] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5128), 1,
anon_sym_SEMI,
[53651] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(346), 1,
aux_sym_subprogram_body_token1,
[53658] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5130), 1,
aux_sym_primary_null_token1,
[53665] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5132), 1,
aux_sym_package_specification_token3,
[53672] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5134), 1,
aux_sym_subprogram_body_token1,
[53679] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5136), 1,
anon_sym_SEMI,
[53686] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5138), 1,
anon_sym_SEMI,
[53693] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5140), 1,
anon_sym_SEMI,
[53700] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3165), 1,
anon_sym_RPAREN,
[53707] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5142), 1,
anon_sym_LPAREN,
[53714] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5144), 1,
anon_sym_SEMI,
[53721] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5146), 1,
anon_sym_EQ_GT,
[53728] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4097), 1,
anon_sym_RPAREN,
[53735] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5148), 1,
anon_sym_RPAREN,
[53742] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5150), 1,
anon_sym_SEMI,
[53749] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5152), 1,
aux_sym_compilation_unit_token1,
[53756] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(1798), 1,
anon_sym_EQ_GT,
[53763] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5154), 1,
aux_sym_loop_statement_token1,
[53770] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5156), 1,
anon_sym_SEMI,
[53777] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5158), 1,
aux_sym_with_clause_token2,
[53784] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5160), 1,
anon_sym_SEMI,
[53791] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5162), 1,
aux_sym_asynchronous_select_token2,
[53798] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5164), 1,
aux_sym_asynchronous_select_token1,
[53805] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5166), 1,
anon_sym_SEMI,
[53812] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5168), 1,
aux_sym_asynchronous_select_token2,
[53819] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5170), 1,
anon_sym_EQ_GT,
[53826] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5172), 1,
sym_identifier,
[53833] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(412), 1,
aux_sym_subprogram_body_token1,
[53840] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5174), 1,
aux_sym_package_specification_token3,
[53847] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3291), 1,
anon_sym_SEMI,
[53854] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5176), 1,
aux_sym_chunk_specification_token1,
[53861] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5178), 1,
anon_sym_RBRACK,
[53868] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5180), 1,
anon_sym_EQ_GT,
[53875] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5178), 1,
anon_sym_RPAREN,
[53882] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5182), 1,
anon_sym_SEMI,
[53889] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5184), 1,
anon_sym_RPAREN,
[53896] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5186), 1,
anon_sym_EQ_GT,
[53903] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5188), 1,
anon_sym_SEMI,
[53910] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5190), 1,
anon_sym_SEMI,
[53917] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5192), 1,
anon_sym_SEMI,
[53924] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5194), 1,
aux_sym_compilation_unit_token1,
[53931] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5196), 1,
aux_sym_expression_token2,
[53938] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5198), 1,
aux_sym_package_specification_token3,
[53945] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5200), 1,
aux_sym_with_clause_token2,
[53952] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(462), 1,
aux_sym_allocator_token1,
[53959] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5202), 1,
aux_sym_package_specification_token2,
[53966] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5204), 1,
anon_sym_SEMI,
[53973] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5206), 1,
anon_sym_SEMI,
[53980] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5208), 1,
aux_sym_package_specification_token2,
[53987] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5210), 1,
anon_sym_SEMI,
[53994] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5212), 1,
anon_sym_SEMI,
[54001] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5214), 1,
anon_sym_SEMI,
[54008] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5216), 1,
aux_sym_at_clause_token1,
[54015] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5218), 1,
sym_tick,
[54022] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5220), 1,
anon_sym_SEMI,
[54029] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5222), 1,
anon_sym_RBRACK,
[54036] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5224), 1,
aux_sym_object_renaming_declaration_token1,
[54043] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5226), 1,
anon_sym_SEMI,
[54050] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5228), 1,
aux_sym_object_renaming_declaration_token1,
[54057] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5230), 1,
aux_sym_primary_null_token1,
[54064] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5232), 1,
aux_sym_primary_null_token1,
[54071] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5234), 1,
sym_identifier,
[54078] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5236), 1,
aux_sym_loop_statement_token1,
[54085] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5238), 1,
anon_sym_SEMI,
[54092] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5240), 1,
anon_sym_SEMI,
[54099] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5242), 1,
aux_sym_package_specification_token2,
[54106] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5244), 1,
anon_sym_SEMI,
[54113] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5246), 1,
aux_sym_loop_statement_token1,
[54120] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5248), 1,
anon_sym_SEMI,
[54127] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5250), 1,
aux_sym_compilation_unit_token1,
[54134] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5252), 1,
aux_sym_package_specification_token3,
[54141] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5254), 1,
anon_sym_RPAREN,
[54148] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5256), 1,
aux_sym_package_specification_token3,
[54155] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5258), 1,
anon_sym_SEMI,
[54162] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5260), 1,
aux_sym_expression_token2,
[54169] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5262), 1,
aux_sym_subprogram_body_token1,
[54176] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5264), 1,
aux_sym_expression_token2,
[54183] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5266), 1,
sym_identifier,
[54190] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5268), 1,
anon_sym_SEMI,
[54197] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5270), 1,
aux_sym_expression_token2,
[54204] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5272), 1,
anon_sym_GT_GT,
[54211] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5274), 1,
aux_sym_compilation_unit_token1,
[54218] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5276), 1,
anon_sym_COLON,
[54225] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5278), 1,
sym_identifier,
[54232] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5280), 1,
sym_identifier,
[54239] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5282), 1,
sym_identifier,
[54246] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5284), 1,
aux_sym_package_specification_token2,
[54253] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5286), 1,
anon_sym_SEMI,
[54260] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(418), 1,
aux_sym_subprogram_body_token1,
[54267] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5288), 1,
anon_sym_SEMI,
[54274] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5290), 1,
sym_identifier,
[54281] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5292), 1,
sym_identifier,
[54288] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5294), 1,
aux_sym_package_specification_token3,
[54295] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5296), 1,
anon_sym_SEMI,
[54302] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5298), 1,
aux_sym_package_specification_token3,
[54309] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4206), 1,
anon_sym_SEMI,
[54316] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5300), 1,
aux_sym_with_clause_token2,
[54323] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5302), 1,
anon_sym_SEMI,
[54330] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5304), 1,
aux_sym_use_clause_token2,
[54337] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5306), 1,
aux_sym_loop_statement_token1,
[54344] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5308), 1,
anon_sym_RBRACK,
[54351] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5310), 1,
sym_identifier,
[54358] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5312), 1,
anon_sym_SEMI,
[54365] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4360), 1,
anon_sym_SEMI,
[54372] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(3201), 1,
aux_sym_loop_statement_token1,
[54379] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5314), 1,
anon_sym_SEMI,
[54386] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5316), 1,
aux_sym_package_specification_token3,
[54393] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5318), 1,
sym_tick,
[54400] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5320), 1,
anon_sym_COLON,
[54407] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(4400), 1,
anon_sym_SEMI,
[54414] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5322), 1,
ts_builtin_sym_end,
[54421] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5324), 1,
sym_identifier,
[54428] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5326), 1,
anon_sym_SEMI,
[54435] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5328), 1,
sym_identifier,
[54442] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5330), 1,
sym_identifier,
[54449] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5332), 1,
sym_identifier,
[54456] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5334), 1,
sym_identifier,
[54463] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5336), 1,
anon_sym_SEMI,
[54470] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5338), 1,
aux_sym_global_mode_token1,
[54477] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(5340), 1,
anon_sym_LPAREN,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(82)] = 0,
[SMALL_STATE(83)] = 130,
[SMALL_STATE(84)] = 268,
[SMALL_STATE(85)] = 388,
[SMALL_STATE(86)] = 518,
[SMALL_STATE(87)] = 635,
[SMALL_STATE(88)] = 752,
[SMALL_STATE(89)] = 867,
[SMALL_STATE(90)] = 984,
[SMALL_STATE(91)] = 1101,
[SMALL_STATE(92)] = 1215,
[SMALL_STATE(93)] = 1329,
[SMALL_STATE(94)] = 1443,
[SMALL_STATE(95)] = 1557,
[SMALL_STATE(96)] = 1671,
[SMALL_STATE(97)] = 1785,
[SMALL_STATE(98)] = 1917,
[SMALL_STATE(99)] = 2046,
[SMALL_STATE(100)] = 2175,
[SMALL_STATE(101)] = 2299,
[SMALL_STATE(102)] = 2425,
[SMALL_STATE(103)] = 2540,
[SMALL_STATE(104)] = 2661,
[SMALL_STATE(105)] = 2772,
[SMALL_STATE(106)] = 2884,
[SMALL_STATE(107)] = 2996,
[SMALL_STATE(108)] = 3108,
[SMALL_STATE(109)] = 3220,
[SMALL_STATE(110)] = 3281,
[SMALL_STATE(111)] = 3342,
[SMALL_STATE(112)] = 3403,
[SMALL_STATE(113)] = 3464,
[SMALL_STATE(114)] = 3525,
[SMALL_STATE(115)] = 3586,
[SMALL_STATE(116)] = 3647,
[SMALL_STATE(117)] = 3708,
[SMALL_STATE(118)] = 3769,
[SMALL_STATE(119)] = 3830,
[SMALL_STATE(120)] = 3891,
[SMALL_STATE(121)] = 3952,
[SMALL_STATE(122)] = 4013,
[SMALL_STATE(123)] = 4074,
[SMALL_STATE(124)] = 4135,
[SMALL_STATE(125)] = 4196,
[SMALL_STATE(126)] = 4257,
[SMALL_STATE(127)] = 4318,
[SMALL_STATE(128)] = 4379,
[SMALL_STATE(129)] = 4440,
[SMALL_STATE(130)] = 4501,
[SMALL_STATE(131)] = 4562,
[SMALL_STATE(132)] = 4623,
[SMALL_STATE(133)] = 4684,
[SMALL_STATE(134)] = 4745,
[SMALL_STATE(135)] = 4806,
[SMALL_STATE(136)] = 4867,
[SMALL_STATE(137)] = 4928,
[SMALL_STATE(138)] = 4989,
[SMALL_STATE(139)] = 5050,
[SMALL_STATE(140)] = 5111,
[SMALL_STATE(141)] = 5172,
[SMALL_STATE(142)] = 5233,
[SMALL_STATE(143)] = 5294,
[SMALL_STATE(144)] = 5403,
[SMALL_STATE(145)] = 5464,
[SMALL_STATE(146)] = 5525,
[SMALL_STATE(147)] = 5586,
[SMALL_STATE(148)] = 5647,
[SMALL_STATE(149)] = 5708,
[SMALL_STATE(150)] = 5769,
[SMALL_STATE(151)] = 5830,
[SMALL_STATE(152)] = 5891,
[SMALL_STATE(153)] = 5952,
[SMALL_STATE(154)] = 6013,
[SMALL_STATE(155)] = 6074,
[SMALL_STATE(156)] = 6135,
[SMALL_STATE(157)] = 6196,
[SMALL_STATE(158)] = 6257,
[SMALL_STATE(159)] = 6318,
[SMALL_STATE(160)] = 6379,
[SMALL_STATE(161)] = 6440,
[SMALL_STATE(162)] = 6501,
[SMALL_STATE(163)] = 6562,
[SMALL_STATE(164)] = 6623,
[SMALL_STATE(165)] = 6684,
[SMALL_STATE(166)] = 6745,
[SMALL_STATE(167)] = 6806,
[SMALL_STATE(168)] = 6867,
[SMALL_STATE(169)] = 6928,
[SMALL_STATE(170)] = 6989,
[SMALL_STATE(171)] = 7050,
[SMALL_STATE(172)] = 7111,
[SMALL_STATE(173)] = 7172,
[SMALL_STATE(174)] = 7233,
[SMALL_STATE(175)] = 7294,
[SMALL_STATE(176)] = 7355,
[SMALL_STATE(177)] = 7463,
[SMALL_STATE(178)] = 7566,
[SMALL_STATE(179)] = 7669,
[SMALL_STATE(180)] = 7774,
[SMALL_STATE(181)] = 7877,
[SMALL_STATE(182)] = 7982,
[SMALL_STATE(183)] = 8086,
[SMALL_STATE(184)] = 8190,
[SMALL_STATE(185)] = 8290,
[SMALL_STATE(186)] = 8394,
[SMALL_STATE(187)] = 8494,
[SMALL_STATE(188)] = 8593,
[SMALL_STATE(189)] = 8690,
[SMALL_STATE(190)] = 8787,
[SMALL_STATE(191)] = 8884,
[SMALL_STATE(192)] = 8981,
[SMALL_STATE(193)] = 9078,
[SMALL_STATE(194)] = 9175,
[SMALL_STATE(195)] = 9272,
[SMALL_STATE(196)] = 9369,
[SMALL_STATE(197)] = 9466,
[SMALL_STATE(198)] = 9563,
[SMALL_STATE(199)] = 9660,
[SMALL_STATE(200)] = 9757,
[SMALL_STATE(201)] = 9851,
[SMALL_STATE(202)] = 9945,
[SMALL_STATE(203)] = 10001,
[SMALL_STATE(204)] = 10095,
[SMALL_STATE(205)] = 10151,
[SMALL_STATE(206)] = 10245,
[SMALL_STATE(207)] = 10339,
[SMALL_STATE(208)] = 10433,
[SMALL_STATE(209)] = 10527,
[SMALL_STATE(210)] = 10621,
[SMALL_STATE(211)] = 10715,
[SMALL_STATE(212)] = 10813,
[SMALL_STATE(213)] = 10869,
[SMALL_STATE(214)] = 10963,
[SMALL_STATE(215)] = 11057,
[SMALL_STATE(216)] = 11113,
[SMALL_STATE(217)] = 11207,
[SMALL_STATE(218)] = 11263,
[SMALL_STATE(219)] = 11357,
[SMALL_STATE(220)] = 11413,
[SMALL_STATE(221)] = 11507,
[SMALL_STATE(222)] = 11601,
[SMALL_STATE(223)] = 11695,
[SMALL_STATE(224)] = 11789,
[SMALL_STATE(225)] = 11883,
[SMALL_STATE(226)] = 11939,
[SMALL_STATE(227)] = 12033,
[SMALL_STATE(228)] = 12127,
[SMALL_STATE(229)] = 12221,
[SMALL_STATE(230)] = 12315,
[SMALL_STATE(231)] = 12409,
[SMALL_STATE(232)] = 12503,
[SMALL_STATE(233)] = 12597,
[SMALL_STATE(234)] = 12691,
[SMALL_STATE(235)] = 12785,
[SMALL_STATE(236)] = 12879,
[SMALL_STATE(237)] = 12973,
[SMALL_STATE(238)] = 13067,
[SMALL_STATE(239)] = 13161,
[SMALL_STATE(240)] = 13255,
[SMALL_STATE(241)] = 13349,
[SMALL_STATE(242)] = 13443,
[SMALL_STATE(243)] = 13537,
[SMALL_STATE(244)] = 13631,
[SMALL_STATE(245)] = 13687,
[SMALL_STATE(246)] = 13781,
[SMALL_STATE(247)] = 13875,
[SMALL_STATE(248)] = 13969,
[SMALL_STATE(249)] = 14063,
[SMALL_STATE(250)] = 14157,
[SMALL_STATE(251)] = 14213,
[SMALL_STATE(252)] = 14307,
[SMALL_STATE(253)] = 14401,
[SMALL_STATE(254)] = 14495,
[SMALL_STATE(255)] = 14589,
[SMALL_STATE(256)] = 14683,
[SMALL_STATE(257)] = 14738,
[SMALL_STATE(258)] = 14793,
[SMALL_STATE(259)] = 14848,
[SMALL_STATE(260)] = 14903,
[SMALL_STATE(261)] = 14958,
[SMALL_STATE(262)] = 15013,
[SMALL_STATE(263)] = 15068,
[SMALL_STATE(264)] = 15123,
[SMALL_STATE(265)] = 15178,
[SMALL_STATE(266)] = 15233,
[SMALL_STATE(267)] = 15288,
[SMALL_STATE(268)] = 15343,
[SMALL_STATE(269)] = 15438,
[SMALL_STATE(270)] = 15493,
[SMALL_STATE(271)] = 15548,
[SMALL_STATE(272)] = 15603,
[SMALL_STATE(273)] = 15658,
[SMALL_STATE(274)] = 15713,
[SMALL_STATE(275)] = 15768,
[SMALL_STATE(276)] = 15823,
[SMALL_STATE(277)] = 15878,
[SMALL_STATE(278)] = 15933,
[SMALL_STATE(279)] = 15988,
[SMALL_STATE(280)] = 16043,
[SMALL_STATE(281)] = 16098,
[SMALL_STATE(282)] = 16153,
[SMALL_STATE(283)] = 16208,
[SMALL_STATE(284)] = 16263,
[SMALL_STATE(285)] = 16318,
[SMALL_STATE(286)] = 16373,
[SMALL_STATE(287)] = 16428,
[SMALL_STATE(288)] = 16483,
[SMALL_STATE(289)] = 16538,
[SMALL_STATE(290)] = 16593,
[SMALL_STATE(291)] = 16648,
[SMALL_STATE(292)] = 16703,
[SMALL_STATE(293)] = 16758,
[SMALL_STATE(294)] = 16813,
[SMALL_STATE(295)] = 16868,
[SMALL_STATE(296)] = 16923,
[SMALL_STATE(297)] = 16978,
[SMALL_STATE(298)] = 17033,
[SMALL_STATE(299)] = 17088,
[SMALL_STATE(300)] = 17143,
[SMALL_STATE(301)] = 17198,
[SMALL_STATE(302)] = 17289,
[SMALL_STATE(303)] = 17344,
[SMALL_STATE(304)] = 17399,
[SMALL_STATE(305)] = 17454,
[SMALL_STATE(306)] = 17509,
[SMALL_STATE(307)] = 17564,
[SMALL_STATE(308)] = 17619,
[SMALL_STATE(309)] = 17674,
[SMALL_STATE(310)] = 17729,
[SMALL_STATE(311)] = 17784,
[SMALL_STATE(312)] = 17839,
[SMALL_STATE(313)] = 17894,
[SMALL_STATE(314)] = 17949,
[SMALL_STATE(315)] = 18004,
[SMALL_STATE(316)] = 18059,
[SMALL_STATE(317)] = 18114,
[SMALL_STATE(318)] = 18169,
[SMALL_STATE(319)] = 18224,
[SMALL_STATE(320)] = 18319,
[SMALL_STATE(321)] = 18374,
[SMALL_STATE(322)] = 18429,
[SMALL_STATE(323)] = 18484,
[SMALL_STATE(324)] = 18539,
[SMALL_STATE(325)] = 18594,
[SMALL_STATE(326)] = 18649,
[SMALL_STATE(327)] = 18704,
[SMALL_STATE(328)] = 18759,
[SMALL_STATE(329)] = 18814,
[SMALL_STATE(330)] = 18869,
[SMALL_STATE(331)] = 18924,
[SMALL_STATE(332)] = 18979,
[SMALL_STATE(333)] = 19034,
[SMALL_STATE(334)] = 19089,
[SMALL_STATE(335)] = 19144,
[SMALL_STATE(336)] = 19199,
[SMALL_STATE(337)] = 19254,
[SMALL_STATE(338)] = 19309,
[SMALL_STATE(339)] = 19404,
[SMALL_STATE(340)] = 19459,
[SMALL_STATE(341)] = 19514,
[SMALL_STATE(342)] = 19609,
[SMALL_STATE(343)] = 19664,
[SMALL_STATE(344)] = 19719,
[SMALL_STATE(345)] = 19774,
[SMALL_STATE(346)] = 19829,
[SMALL_STATE(347)] = 19884,
[SMALL_STATE(348)] = 19939,
[SMALL_STATE(349)] = 19994,
[SMALL_STATE(350)] = 20049,
[SMALL_STATE(351)] = 20104,
[SMALL_STATE(352)] = 20159,
[SMALL_STATE(353)] = 20214,
[SMALL_STATE(354)] = 20269,
[SMALL_STATE(355)] = 20324,
[SMALL_STATE(356)] = 20379,
[SMALL_STATE(357)] = 20434,
[SMALL_STATE(358)] = 20489,
[SMALL_STATE(359)] = 20544,
[SMALL_STATE(360)] = 20599,
[SMALL_STATE(361)] = 20654,
[SMALL_STATE(362)] = 20709,
[SMALL_STATE(363)] = 20764,
[SMALL_STATE(364)] = 20819,
[SMALL_STATE(365)] = 20874,
[SMALL_STATE(366)] = 20929,
[SMALL_STATE(367)] = 20984,
[SMALL_STATE(368)] = 21039,
[SMALL_STATE(369)] = 21094,
[SMALL_STATE(370)] = 21149,
[SMALL_STATE(371)] = 21204,
[SMALL_STATE(372)] = 21259,
[SMALL_STATE(373)] = 21314,
[SMALL_STATE(374)] = 21369,
[SMALL_STATE(375)] = 21424,
[SMALL_STATE(376)] = 21479,
[SMALL_STATE(377)] = 21534,
[SMALL_STATE(378)] = 21589,
[SMALL_STATE(379)] = 21644,
[SMALL_STATE(380)] = 21699,
[SMALL_STATE(381)] = 21754,
[SMALL_STATE(382)] = 21809,
[SMALL_STATE(383)] = 21864,
[SMALL_STATE(384)] = 21955,
[SMALL_STATE(385)] = 22010,
[SMALL_STATE(386)] = 22065,
[SMALL_STATE(387)] = 22120,
[SMALL_STATE(388)] = 22175,
[SMALL_STATE(389)] = 22230,
[SMALL_STATE(390)] = 22285,
[SMALL_STATE(391)] = 22376,
[SMALL_STATE(392)] = 22431,
[SMALL_STATE(393)] = 22486,
[SMALL_STATE(394)] = 22541,
[SMALL_STATE(395)] = 22596,
[SMALL_STATE(396)] = 22651,
[SMALL_STATE(397)] = 22706,
[SMALL_STATE(398)] = 22761,
[SMALL_STATE(399)] = 22816,
[SMALL_STATE(400)] = 22871,
[SMALL_STATE(401)] = 22926,
[SMALL_STATE(402)] = 22981,
[SMALL_STATE(403)] = 23036,
[SMALL_STATE(404)] = 23091,
[SMALL_STATE(405)] = 23146,
[SMALL_STATE(406)] = 23201,
[SMALL_STATE(407)] = 23256,
[SMALL_STATE(408)] = 23351,
[SMALL_STATE(409)] = 23406,
[SMALL_STATE(410)] = 23461,
[SMALL_STATE(411)] = 23516,
[SMALL_STATE(412)] = 23571,
[SMALL_STATE(413)] = 23626,
[SMALL_STATE(414)] = 23681,
[SMALL_STATE(415)] = 23736,
[SMALL_STATE(416)] = 23791,
[SMALL_STATE(417)] = 23846,
[SMALL_STATE(418)] = 23901,
[SMALL_STATE(419)] = 23956,
[SMALL_STATE(420)] = 24011,
[SMALL_STATE(421)] = 24066,
[SMALL_STATE(422)] = 24121,
[SMALL_STATE(423)] = 24176,
[SMALL_STATE(424)] = 24231,
[SMALL_STATE(425)] = 24286,
[SMALL_STATE(426)] = 24341,
[SMALL_STATE(427)] = 24396,
[SMALL_STATE(428)] = 24451,
[SMALL_STATE(429)] = 24506,
[SMALL_STATE(430)] = 24561,
[SMALL_STATE(431)] = 24616,
[SMALL_STATE(432)] = 24671,
[SMALL_STATE(433)] = 24726,
[SMALL_STATE(434)] = 24781,
[SMALL_STATE(435)] = 24836,
[SMALL_STATE(436)] = 24890,
[SMALL_STATE(437)] = 24944,
[SMALL_STATE(438)] = 24998,
[SMALL_STATE(439)] = 25052,
[SMALL_STATE(440)] = 25106,
[SMALL_STATE(441)] = 25196,
[SMALL_STATE(442)] = 25250,
[SMALL_STATE(443)] = 25304,
[SMALL_STATE(444)] = 25358,
[SMALL_STATE(445)] = 25412,
[SMALL_STATE(446)] = 25466,
[SMALL_STATE(447)] = 25520,
[SMALL_STATE(448)] = 25574,
[SMALL_STATE(449)] = 25628,
[SMALL_STATE(450)] = 25682,
[SMALL_STATE(451)] = 25736,
[SMALL_STATE(452)] = 25806,
[SMALL_STATE(453)] = 25860,
[SMALL_STATE(454)] = 25914,
[SMALL_STATE(455)] = 25968,
[SMALL_STATE(456)] = 26022,
[SMALL_STATE(457)] = 26076,
[SMALL_STATE(458)] = 26166,
[SMALL_STATE(459)] = 26253,
[SMALL_STATE(460)] = 26306,
[SMALL_STATE(461)] = 26359,
[SMALL_STATE(462)] = 26412,
[SMALL_STATE(463)] = 26474,
[SMALL_STATE(464)] = 26560,
[SMALL_STATE(465)] = 26612,
[SMALL_STATE(466)] = 26664,
[SMALL_STATE(467)] = 26750,
[SMALL_STATE(468)] = 26802,
[SMALL_STATE(469)] = 26854,
[SMALL_STATE(470)] = 26906,
[SMALL_STATE(471)] = 26958,
[SMALL_STATE(472)] = 27010,
[SMALL_STATE(473)] = 27062,
[SMALL_STATE(474)] = 27114,
[SMALL_STATE(475)] = 27166,
[SMALL_STATE(476)] = 27218,
[SMALL_STATE(477)] = 27270,
[SMALL_STATE(478)] = 27322,
[SMALL_STATE(479)] = 27374,
[SMALL_STATE(480)] = 27426,
[SMALL_STATE(481)] = 27488,
[SMALL_STATE(482)] = 27571,
[SMALL_STATE(483)] = 27622,
[SMALL_STATE(484)] = 27705,
[SMALL_STATE(485)] = 27788,
[SMALL_STATE(486)] = 27871,
[SMALL_STATE(487)] = 27922,
[SMALL_STATE(488)] = 27973,
[SMALL_STATE(489)] = 28024,
[SMALL_STATE(490)] = 28083,
[SMALL_STATE(491)] = 28166,
[SMALL_STATE(492)] = 28249,
[SMALL_STATE(493)] = 28332,
[SMALL_STATE(494)] = 28383,
[SMALL_STATE(495)] = 28466,
[SMALL_STATE(496)] = 28549,
[SMALL_STATE(497)] = 28600,
[SMALL_STATE(498)] = 28683,
[SMALL_STATE(499)] = 28766,
[SMALL_STATE(500)] = 28817,
[SMALL_STATE(501)] = 28874,
[SMALL_STATE(502)] = 28940,
[SMALL_STATE(503)] = 28996,
[SMALL_STATE(504)] = 29052,
[SMALL_STATE(505)] = 29108,
[SMALL_STATE(506)] = 29155,
[SMALL_STATE(507)] = 29204,
[SMALL_STATE(508)] = 29251,
[SMALL_STATE(509)] = 29322,
[SMALL_STATE(510)] = 29369,
[SMALL_STATE(511)] = 29416,
[SMALL_STATE(512)] = 29483,
[SMALL_STATE(513)] = 29550,
[SMALL_STATE(514)] = 29621,
[SMALL_STATE(515)] = 29668,
[SMALL_STATE(516)] = 29715,
[SMALL_STATE(517)] = 29762,
[SMALL_STATE(518)] = 29830,
[SMALL_STATE(519)] = 29914,
[SMALL_STATE(520)] = 29960,
[SMALL_STATE(521)] = 30006,
[SMALL_STATE(522)] = 30052,
[SMALL_STATE(523)] = 30098,
[SMALL_STATE(524)] = 30148,
[SMALL_STATE(525)] = 30227,
[SMALL_STATE(526)] = 30285,
[SMALL_STATE(527)] = 30337,
[SMALL_STATE(528)] = 30381,
[SMALL_STATE(529)] = 30433,
[SMALL_STATE(530)] = 30485,
[SMALL_STATE(531)] = 30537,
[SMALL_STATE(532)] = 30589,
[SMALL_STATE(533)] = 30670,
[SMALL_STATE(534)] = 30751,
[SMALL_STATE(535)] = 30793,
[SMALL_STATE(536)] = 30849,
[SMALL_STATE(537)] = 30903,
[SMALL_STATE(538)] = 30959,
[SMALL_STATE(539)] = 31015,
[SMALL_STATE(540)] = 31071,
[SMALL_STATE(541)] = 31114,
[SMALL_STATE(542)] = 31184,
[SMALL_STATE(543)] = 31234,
[SMALL_STATE(544)] = 31283,
[SMALL_STATE(545)] = 31328,
[SMALL_STATE(546)] = 31370,
[SMALL_STATE(547)] = 31425,
[SMALL_STATE(548)] = 31466,
[SMALL_STATE(549)] = 31522,
[SMALL_STATE(550)] = 31562,
[SMALL_STATE(551)] = 31618,
[SMALL_STATE(552)] = 31674,
[SMALL_STATE(553)] = 31710,
[SMALL_STATE(554)] = 31766,
[SMALL_STATE(555)] = 31822,
[SMALL_STATE(556)] = 31859,
[SMALL_STATE(557)] = 31916,
[SMALL_STATE(558)] = 31973,
[SMALL_STATE(559)] = 32030,
[SMALL_STATE(560)] = 32087,
[SMALL_STATE(561)] = 32134,
[SMALL_STATE(562)] = 32191,
[SMALL_STATE(563)] = 32245,
[SMALL_STATE(564)] = 32299,
[SMALL_STATE(565)] = 32331,
[SMALL_STATE(566)] = 32371,
[SMALL_STATE(567)] = 32421,
[SMALL_STATE(568)] = 32475,
[SMALL_STATE(569)] = 32529,
[SMALL_STATE(570)] = 32587,
[SMALL_STATE(571)] = 32641,
[SMALL_STATE(572)] = 32675,
[SMALL_STATE(573)] = 32729,
[SMALL_STATE(574)] = 32770,
[SMALL_STATE(575)] = 32799,
[SMALL_STATE(576)] = 32828,
[SMALL_STATE(577)] = 32879,
[SMALL_STATE(578)] = 32930,
[SMALL_STATE(579)] = 32985,
[SMALL_STATE(580)] = 33036,
[SMALL_STATE(581)] = 33087,
[SMALL_STATE(582)] = 33136,
[SMALL_STATE(583)] = 33187,
[SMALL_STATE(584)] = 33242,
[SMALL_STATE(585)] = 33293,
[SMALL_STATE(586)] = 33322,
[SMALL_STATE(587)] = 33377,
[SMALL_STATE(588)] = 33429,
[SMALL_STATE(589)] = 33481,
[SMALL_STATE(590)] = 33533,
[SMALL_STATE(591)] = 33582,
[SMALL_STATE(592)] = 33633,
[SMALL_STATE(593)] = 33680,
[SMALL_STATE(594)] = 33723,
[SMALL_STATE(595)] = 33772,
[SMALL_STATE(596)] = 33821,
[SMALL_STATE(597)] = 33852,
[SMALL_STATE(598)] = 33901,
[SMALL_STATE(599)] = 33932,
[SMALL_STATE(600)] = 33975,
[SMALL_STATE(601)] = 34006,
[SMALL_STATE(602)] = 34035,
[SMALL_STATE(603)] = 34086,
[SMALL_STATE(604)] = 34137,
[SMALL_STATE(605)] = 34178,
[SMALL_STATE(606)] = 34204,
[SMALL_STATE(607)] = 34230,
[SMALL_STATE(608)] = 34258,
[SMALL_STATE(609)] = 34284,
[SMALL_STATE(610)] = 34312,
[SMALL_STATE(611)] = 34358,
[SMALL_STATE(612)] = 34404,
[SMALL_STATE(613)] = 34430,
[SMALL_STATE(614)] = 34474,
[SMALL_STATE(615)] = 34520,
[SMALL_STATE(616)] = 34548,
[SMALL_STATE(617)] = 34574,
[SMALL_STATE(618)] = 34602,
[SMALL_STATE(619)] = 34645,
[SMALL_STATE(620)] = 34690,
[SMALL_STATE(621)] = 34727,
[SMALL_STATE(622)] = 34772,
[SMALL_STATE(623)] = 34817,
[SMALL_STATE(624)] = 34862,
[SMALL_STATE(625)] = 34905,
[SMALL_STATE(626)] = 34940,
[SMALL_STATE(627)] = 34969,
[SMALL_STATE(628)] = 35010,
[SMALL_STATE(629)] = 35055,
[SMALL_STATE(630)] = 35084,
[SMALL_STATE(631)] = 35113,
[SMALL_STATE(632)] = 35142,
[SMALL_STATE(633)] = 35171,
[SMALL_STATE(634)] = 35216,
[SMALL_STATE(635)] = 35251,
[SMALL_STATE(636)] = 35280,
[SMALL_STATE(637)] = 35323,
[SMALL_STATE(638)] = 35347,
[SMALL_STATE(639)] = 35371,
[SMALL_STATE(640)] = 35413,
[SMALL_STATE(641)] = 35437,
[SMALL_STATE(642)] = 35461,
[SMALL_STATE(643)] = 35501,
[SMALL_STATE(644)] = 35525,
[SMALL_STATE(645)] = 35565,
[SMALL_STATE(646)] = 35607,
[SMALL_STATE(647)] = 35647,
[SMALL_STATE(648)] = 35687,
[SMALL_STATE(649)] = 35727,
[SMALL_STATE(650)] = 35765,
[SMALL_STATE(651)] = 35807,
[SMALL_STATE(652)] = 35847,
[SMALL_STATE(653)] = 35887,
[SMALL_STATE(654)] = 35927,
[SMALL_STATE(655)] = 35969,
[SMALL_STATE(656)] = 36009,
[SMALL_STATE(657)] = 36051,
[SMALL_STATE(658)] = 36086,
[SMALL_STATE(659)] = 36125,
[SMALL_STATE(660)] = 36162,
[SMALL_STATE(661)] = 36199,
[SMALL_STATE(662)] = 36238,
[SMALL_STATE(663)] = 36277,
[SMALL_STATE(664)] = 36316,
[SMALL_STATE(665)] = 36355,
[SMALL_STATE(666)] = 36394,
[SMALL_STATE(667)] = 36421,
[SMALL_STATE(668)] = 36460,
[SMALL_STATE(669)] = 36487,
[SMALL_STATE(670)] = 36524,
[SMALL_STATE(671)] = 36563,
[SMALL_STATE(672)] = 36602,
[SMALL_STATE(673)] = 36639,
[SMALL_STATE(674)] = 36676,
[SMALL_STATE(675)] = 36711,
[SMALL_STATE(676)] = 36750,
[SMALL_STATE(677)] = 36789,
[SMALL_STATE(678)] = 36828,
[SMALL_STATE(679)] = 36867,
[SMALL_STATE(680)] = 36906,
[SMALL_STATE(681)] = 36941,
[SMALL_STATE(682)] = 36976,
[SMALL_STATE(683)] = 37012,
[SMALL_STATE(684)] = 37046,
[SMALL_STATE(685)] = 37078,
[SMALL_STATE(686)] = 37114,
[SMALL_STATE(687)] = 37150,
[SMALL_STATE(688)] = 37184,
[SMALL_STATE(689)] = 37224,
[SMALL_STATE(690)] = 37258,
[SMALL_STATE(691)] = 37294,
[SMALL_STATE(692)] = 37328,
[SMALL_STATE(693)] = 37360,
[SMALL_STATE(694)] = 37393,
[SMALL_STATE(695)] = 37422,
[SMALL_STATE(696)] = 37451,
[SMALL_STATE(697)] = 37480,
[SMALL_STATE(698)] = 37501,
[SMALL_STATE(699)] = 37530,
[SMALL_STATE(700)] = 37559,
[SMALL_STATE(701)] = 37588,
[SMALL_STATE(702)] = 37609,
[SMALL_STATE(703)] = 37638,
[SMALL_STATE(704)] = 37667,
[SMALL_STATE(705)] = 37696,
[SMALL_STATE(706)] = 37725,
[SMALL_STATE(707)] = 37756,
[SMALL_STATE(708)] = 37785,
[SMALL_STATE(709)] = 37806,
[SMALL_STATE(710)] = 37835,
[SMALL_STATE(711)] = 37864,
[SMALL_STATE(712)] = 37893,
[SMALL_STATE(713)] = 37922,
[SMALL_STATE(714)] = 37951,
[SMALL_STATE(715)] = 37980,
[SMALL_STATE(716)] = 38009,
[SMALL_STATE(717)] = 38038,
[SMALL_STATE(718)] = 38067,
[SMALL_STATE(719)] = 38096,
[SMALL_STATE(720)] = 38127,
[SMALL_STATE(721)] = 38156,
[SMALL_STATE(722)] = 38185,
[SMALL_STATE(723)] = 38214,
[SMALL_STATE(724)] = 38243,
[SMALL_STATE(725)] = 38272,
[SMALL_STATE(726)] = 38301,
[SMALL_STATE(727)] = 38330,
[SMALL_STATE(728)] = 38359,
[SMALL_STATE(729)] = 38388,
[SMALL_STATE(730)] = 38419,
[SMALL_STATE(731)] = 38450,
[SMALL_STATE(732)] = 38479,
[SMALL_STATE(733)] = 38508,
[SMALL_STATE(734)] = 38529,
[SMALL_STATE(735)] = 38550,
[SMALL_STATE(736)] = 38579,
[SMALL_STATE(737)] = 38600,
[SMALL_STATE(738)] = 38629,
[SMALL_STATE(739)] = 38660,
[SMALL_STATE(740)] = 38691,
[SMALL_STATE(741)] = 38720,
[SMALL_STATE(742)] = 38749,
[SMALL_STATE(743)] = 38778,
[SMALL_STATE(744)] = 38807,
[SMALL_STATE(745)] = 38836,
[SMALL_STATE(746)] = 38857,
[SMALL_STATE(747)] = 38886,
[SMALL_STATE(748)] = 38915,
[SMALL_STATE(749)] = 38944,
[SMALL_STATE(750)] = 38975,
[SMALL_STATE(751)] = 39004,
[SMALL_STATE(752)] = 39025,
[SMALL_STATE(753)] = 39054,
[SMALL_STATE(754)] = 39083,
[SMALL_STATE(755)] = 39112,
[SMALL_STATE(756)] = 39141,
[SMALL_STATE(757)] = 39170,
[SMALL_STATE(758)] = 39201,
[SMALL_STATE(759)] = 39232,
[SMALL_STATE(760)] = 39261,
[SMALL_STATE(761)] = 39292,
[SMALL_STATE(762)] = 39321,
[SMALL_STATE(763)] = 39350,
[SMALL_STATE(764)] = 39372,
[SMALL_STATE(765)] = 39398,
[SMALL_STATE(766)] = 39424,
[SMALL_STATE(767)] = 39450,
[SMALL_STATE(768)] = 39474,
[SMALL_STATE(769)] = 39500,
[SMALL_STATE(770)] = 39528,
[SMALL_STATE(771)] = 39554,
[SMALL_STATE(772)] = 39582,
[SMALL_STATE(773)] = 39608,
[SMALL_STATE(774)] = 39634,
[SMALL_STATE(775)] = 39660,
[SMALL_STATE(776)] = 39686,
[SMALL_STATE(777)] = 39712,
[SMALL_STATE(778)] = 39738,
[SMALL_STATE(779)] = 39764,
[SMALL_STATE(780)] = 39792,
[SMALL_STATE(781)] = 39818,
[SMALL_STATE(782)] = 39846,
[SMALL_STATE(783)] = 39874,
[SMALL_STATE(784)] = 39902,
[SMALL_STATE(785)] = 39928,
[SMALL_STATE(786)] = 39954,
[SMALL_STATE(787)] = 39980,
[SMALL_STATE(788)] = 40006,
[SMALL_STATE(789)] = 40032,
[SMALL_STATE(790)] = 40058,
[SMALL_STATE(791)] = 40084,
[SMALL_STATE(792)] = 40116,
[SMALL_STATE(793)] = 40142,
[SMALL_STATE(794)] = 40168,
[SMALL_STATE(795)] = 40194,
[SMALL_STATE(796)] = 40222,
[SMALL_STATE(797)] = 40248,
[SMALL_STATE(798)] = 40274,
[SMALL_STATE(799)] = 40300,
[SMALL_STATE(800)] = 40326,
[SMALL_STATE(801)] = 40352,
[SMALL_STATE(802)] = 40378,
[SMALL_STATE(803)] = 40404,
[SMALL_STATE(804)] = 40430,
[SMALL_STATE(805)] = 40458,
[SMALL_STATE(806)] = 40484,
[SMALL_STATE(807)] = 40510,
[SMALL_STATE(808)] = 40536,
[SMALL_STATE(809)] = 40562,
[SMALL_STATE(810)] = 40588,
[SMALL_STATE(811)] = 40614,
[SMALL_STATE(812)] = 40640,
[SMALL_STATE(813)] = 40666,
[SMALL_STATE(814)] = 40692,
[SMALL_STATE(815)] = 40718,
[SMALL_STATE(816)] = 40744,
[SMALL_STATE(817)] = 40770,
[SMALL_STATE(818)] = 40796,
[SMALL_STATE(819)] = 40822,
[SMALL_STATE(820)] = 40848,
[SMALL_STATE(821)] = 40874,
[SMALL_STATE(822)] = 40900,
[SMALL_STATE(823)] = 40926,
[SMALL_STATE(824)] = 40952,
[SMALL_STATE(825)] = 40978,
[SMALL_STATE(826)] = 41001,
[SMALL_STATE(827)] = 41022,
[SMALL_STATE(828)] = 41045,
[SMALL_STATE(829)] = 41068,
[SMALL_STATE(830)] = 41103,
[SMALL_STATE(831)] = 41124,
[SMALL_STATE(832)] = 41144,
[SMALL_STATE(833)] = 41166,
[SMALL_STATE(834)] = 41184,
[SMALL_STATE(835)] = 41206,
[SMALL_STATE(836)] = 41228,
[SMALL_STATE(837)] = 41248,
[SMALL_STATE(838)] = 41268,
[SMALL_STATE(839)] = 41287,
[SMALL_STATE(840)] = 41306,
[SMALL_STATE(841)] = 41325,
[SMALL_STATE(842)] = 41354,
[SMALL_STATE(843)] = 41383,
[SMALL_STATE(844)] = 41412,
[SMALL_STATE(845)] = 41431,
[SMALL_STATE(846)] = 41460,
[SMALL_STATE(847)] = 41489,
[SMALL_STATE(848)] = 41505,
[SMALL_STATE(849)] = 41521,
[SMALL_STATE(850)] = 41537,
[SMALL_STATE(851)] = 41553,
[SMALL_STATE(852)] = 41585,
[SMALL_STATE(853)] = 41617,
[SMALL_STATE(854)] = 41633,
[SMALL_STATE(855)] = 41665,
[SMALL_STATE(856)] = 41697,
[SMALL_STATE(857)] = 41726,
[SMALL_STATE(858)] = 41753,
[SMALL_STATE(859)] = 41780,
[SMALL_STATE(860)] = 41807,
[SMALL_STATE(861)] = 41836,
[SMALL_STATE(862)] = 41863,
[SMALL_STATE(863)] = 41890,
[SMALL_STATE(864)] = 41921,
[SMALL_STATE(865)] = 41948,
[SMALL_STATE(866)] = 41973,
[SMALL_STATE(867)] = 42000,
[SMALL_STATE(868)] = 42027,
[SMALL_STATE(869)] = 42054,
[SMALL_STATE(870)] = 42085,
[SMALL_STATE(871)] = 42116,
[SMALL_STATE(872)] = 42132,
[SMALL_STATE(873)] = 42148,
[SMALL_STATE(874)] = 42164,
[SMALL_STATE(875)] = 42180,
[SMALL_STATE(876)] = 42196,
[SMALL_STATE(877)] = 42212,
[SMALL_STATE(878)] = 42228,
[SMALL_STATE(879)] = 42250,
[SMALL_STATE(880)] = 42266,
[SMALL_STATE(881)] = 42282,
[SMALL_STATE(882)] = 42298,
[SMALL_STATE(883)] = 42314,
[SMALL_STATE(884)] = 42330,
[SMALL_STATE(885)] = 42356,
[SMALL_STATE(886)] = 42372,
[SMALL_STATE(887)] = 42388,
[SMALL_STATE(888)] = 42404,
[SMALL_STATE(889)] = 42420,
[SMALL_STATE(890)] = 42446,
[SMALL_STATE(891)] = 42462,
[SMALL_STATE(892)] = 42478,
[SMALL_STATE(893)] = 42494,
[SMALL_STATE(894)] = 42520,
[SMALL_STATE(895)] = 42536,
[SMALL_STATE(896)] = 42552,
[SMALL_STATE(897)] = 42568,
[SMALL_STATE(898)] = 42594,
[SMALL_STATE(899)] = 42610,
[SMALL_STATE(900)] = 42634,
[SMALL_STATE(901)] = 42650,
[SMALL_STATE(902)] = 42666,
[SMALL_STATE(903)] = 42682,
[SMALL_STATE(904)] = 42698,
[SMALL_STATE(905)] = 42714,
[SMALL_STATE(906)] = 42730,
[SMALL_STATE(907)] = 42746,
[SMALL_STATE(908)] = 42762,
[SMALL_STATE(909)] = 42778,
[SMALL_STATE(910)] = 42804,
[SMALL_STATE(911)] = 42832,
[SMALL_STATE(912)] = 42848,
[SMALL_STATE(913)] = 42870,
[SMALL_STATE(914)] = 42886,
[SMALL_STATE(915)] = 42912,
[SMALL_STATE(916)] = 42928,
[SMALL_STATE(917)] = 42944,
[SMALL_STATE(918)] = 42960,
[SMALL_STATE(919)] = 42976,
[SMALL_STATE(920)] = 43001,
[SMALL_STATE(921)] = 43016,
[SMALL_STATE(922)] = 43041,
[SMALL_STATE(923)] = 43066,
[SMALL_STATE(924)] = 43087,
[SMALL_STATE(925)] = 43112,
[SMALL_STATE(926)] = 43137,
[SMALL_STATE(927)] = 43162,
[SMALL_STATE(928)] = 43187,
[SMALL_STATE(929)] = 43200,
[SMALL_STATE(930)] = 43223,
[SMALL_STATE(931)] = 43236,
[SMALL_STATE(932)] = 43249,
[SMALL_STATE(933)] = 43274,
[SMALL_STATE(934)] = 43299,
[SMALL_STATE(935)] = 43312,
[SMALL_STATE(936)] = 43337,
[SMALL_STATE(937)] = 43362,
[SMALL_STATE(938)] = 43387,
[SMALL_STATE(939)] = 43402,
[SMALL_STATE(940)] = 43417,
[SMALL_STATE(941)] = 43430,
[SMALL_STATE(942)] = 43451,
[SMALL_STATE(943)] = 43466,
[SMALL_STATE(944)] = 43481,
[SMALL_STATE(945)] = 43502,
[SMALL_STATE(946)] = 43517,
[SMALL_STATE(947)] = 43542,
[SMALL_STATE(948)] = 43567,
[SMALL_STATE(949)] = 43592,
[SMALL_STATE(950)] = 43617,
[SMALL_STATE(951)] = 43642,
[SMALL_STATE(952)] = 43667,
[SMALL_STATE(953)] = 43692,
[SMALL_STATE(954)] = 43717,
[SMALL_STATE(955)] = 43742,
[SMALL_STATE(956)] = 43763,
[SMALL_STATE(957)] = 43779,
[SMALL_STATE(958)] = 43799,
[SMALL_STATE(959)] = 43815,
[SMALL_STATE(960)] = 43827,
[SMALL_STATE(961)] = 43849,
[SMALL_STATE(962)] = 43871,
[SMALL_STATE(963)] = 43893,
[SMALL_STATE(964)] = 43915,
[SMALL_STATE(965)] = 43937,
[SMALL_STATE(966)] = 43957,
[SMALL_STATE(967)] = 43975,
[SMALL_STATE(968)] = 43995,
[SMALL_STATE(969)] = 44015,
[SMALL_STATE(970)] = 44031,
[SMALL_STATE(971)] = 44049,
[SMALL_STATE(972)] = 44069,
[SMALL_STATE(973)] = 44091,
[SMALL_STATE(974)] = 44113,
[SMALL_STATE(975)] = 44127,
[SMALL_STATE(976)] = 44147,
[SMALL_STATE(977)] = 44169,
[SMALL_STATE(978)] = 44183,
[SMALL_STATE(979)] = 44205,
[SMALL_STATE(980)] = 44227,
[SMALL_STATE(981)] = 44239,
[SMALL_STATE(982)] = 44257,
[SMALL_STATE(983)] = 44273,
[SMALL_STATE(984)] = 44295,
[SMALL_STATE(985)] = 44317,
[SMALL_STATE(986)] = 44336,
[SMALL_STATE(987)] = 44355,
[SMALL_STATE(988)] = 44374,
[SMALL_STATE(989)] = 44389,
[SMALL_STATE(990)] = 44408,
[SMALL_STATE(991)] = 44427,
[SMALL_STATE(992)] = 44446,
[SMALL_STATE(993)] = 44465,
[SMALL_STATE(994)] = 44484,
[SMALL_STATE(995)] = 44495,
[SMALL_STATE(996)] = 44512,
[SMALL_STATE(997)] = 44531,
[SMALL_STATE(998)] = 44544,
[SMALL_STATE(999)] = 44563,
[SMALL_STATE(1000)] = 44582,
[SMALL_STATE(1001)] = 44601,
[SMALL_STATE(1002)] = 44620,
[SMALL_STATE(1003)] = 44637,
[SMALL_STATE(1004)] = 44656,
[SMALL_STATE(1005)] = 44675,
[SMALL_STATE(1006)] = 44686,
[SMALL_STATE(1007)] = 44703,
[SMALL_STATE(1008)] = 44722,
[SMALL_STATE(1009)] = 44741,
[SMALL_STATE(1010)] = 44758,
[SMALL_STATE(1011)] = 44777,
[SMALL_STATE(1012)] = 44792,
[SMALL_STATE(1013)] = 44811,
[SMALL_STATE(1014)] = 44822,
[SMALL_STATE(1015)] = 44841,
[SMALL_STATE(1016)] = 44860,
[SMALL_STATE(1017)] = 44879,
[SMALL_STATE(1018)] = 44898,
[SMALL_STATE(1019)] = 44917,
[SMALL_STATE(1020)] = 44936,
[SMALL_STATE(1021)] = 44955,
[SMALL_STATE(1022)] = 44974,
[SMALL_STATE(1023)] = 44993,
[SMALL_STATE(1024)] = 45010,
[SMALL_STATE(1025)] = 45025,
[SMALL_STATE(1026)] = 45044,
[SMALL_STATE(1027)] = 45057,
[SMALL_STATE(1028)] = 45076,
[SMALL_STATE(1029)] = 45095,
[SMALL_STATE(1030)] = 45110,
[SMALL_STATE(1031)] = 45123,
[SMALL_STATE(1032)] = 45142,
[SMALL_STATE(1033)] = 45161,
[SMALL_STATE(1034)] = 45176,
[SMALL_STATE(1035)] = 45191,
[SMALL_STATE(1036)] = 45210,
[SMALL_STATE(1037)] = 45229,
[SMALL_STATE(1038)] = 45248,
[SMALL_STATE(1039)] = 45267,
[SMALL_STATE(1040)] = 45286,
[SMALL_STATE(1041)] = 45303,
[SMALL_STATE(1042)] = 45318,
[SMALL_STATE(1043)] = 45337,
[SMALL_STATE(1044)] = 45354,
[SMALL_STATE(1045)] = 45373,
[SMALL_STATE(1046)] = 45392,
[SMALL_STATE(1047)] = 45411,
[SMALL_STATE(1048)] = 45430,
[SMALL_STATE(1049)] = 45449,
[SMALL_STATE(1050)] = 45468,
[SMALL_STATE(1051)] = 45487,
[SMALL_STATE(1052)] = 45506,
[SMALL_STATE(1053)] = 45525,
[SMALL_STATE(1054)] = 45544,
[SMALL_STATE(1055)] = 45563,
[SMALL_STATE(1056)] = 45582,
[SMALL_STATE(1057)] = 45601,
[SMALL_STATE(1058)] = 45620,
[SMALL_STATE(1059)] = 45639,
[SMALL_STATE(1060)] = 45658,
[SMALL_STATE(1061)] = 45675,
[SMALL_STATE(1062)] = 45692,
[SMALL_STATE(1063)] = 45703,
[SMALL_STATE(1064)] = 45714,
[SMALL_STATE(1065)] = 45733,
[SMALL_STATE(1066)] = 45752,
[SMALL_STATE(1067)] = 45769,
[SMALL_STATE(1068)] = 45788,
[SMALL_STATE(1069)] = 45803,
[SMALL_STATE(1070)] = 45818,
[SMALL_STATE(1071)] = 45829,
[SMALL_STATE(1072)] = 45844,
[SMALL_STATE(1073)] = 45863,
[SMALL_STATE(1074)] = 45877,
[SMALL_STATE(1075)] = 45893,
[SMALL_STATE(1076)] = 45909,
[SMALL_STATE(1077)] = 45925,
[SMALL_STATE(1078)] = 45939,
[SMALL_STATE(1079)] = 45953,
[SMALL_STATE(1080)] = 45967,
[SMALL_STATE(1081)] = 45979,
[SMALL_STATE(1082)] = 45993,
[SMALL_STATE(1083)] = 46007,
[SMALL_STATE(1084)] = 46023,
[SMALL_STATE(1085)] = 46039,
[SMALL_STATE(1086)] = 46055,
[SMALL_STATE(1087)] = 46069,
[SMALL_STATE(1088)] = 46085,
[SMALL_STATE(1089)] = 46101,
[SMALL_STATE(1090)] = 46117,
[SMALL_STATE(1091)] = 46129,
[SMALL_STATE(1092)] = 46143,
[SMALL_STATE(1093)] = 46159,
[SMALL_STATE(1094)] = 46175,
[SMALL_STATE(1095)] = 46191,
[SMALL_STATE(1096)] = 46201,
[SMALL_STATE(1097)] = 46211,
[SMALL_STATE(1098)] = 46223,
[SMALL_STATE(1099)] = 46237,
[SMALL_STATE(1100)] = 46253,
[SMALL_STATE(1101)] = 46263,
[SMALL_STATE(1102)] = 46273,
[SMALL_STATE(1103)] = 46289,
[SMALL_STATE(1104)] = 46303,
[SMALL_STATE(1105)] = 46317,
[SMALL_STATE(1106)] = 46333,
[SMALL_STATE(1107)] = 46345,
[SMALL_STATE(1108)] = 46361,
[SMALL_STATE(1109)] = 46377,
[SMALL_STATE(1110)] = 46391,
[SMALL_STATE(1111)] = 46407,
[SMALL_STATE(1112)] = 46421,
[SMALL_STATE(1113)] = 46431,
[SMALL_STATE(1114)] = 46447,
[SMALL_STATE(1115)] = 46463,
[SMALL_STATE(1116)] = 46479,
[SMALL_STATE(1117)] = 46493,
[SMALL_STATE(1118)] = 46509,
[SMALL_STATE(1119)] = 46525,
[SMALL_STATE(1120)] = 46539,
[SMALL_STATE(1121)] = 46555,
[SMALL_STATE(1122)] = 46569,
[SMALL_STATE(1123)] = 46581,
[SMALL_STATE(1124)] = 46597,
[SMALL_STATE(1125)] = 46611,
[SMALL_STATE(1126)] = 46625,
[SMALL_STATE(1127)] = 46635,
[SMALL_STATE(1128)] = 46649,
[SMALL_STATE(1129)] = 46659,
[SMALL_STATE(1130)] = 46675,
[SMALL_STATE(1131)] = 46691,
[SMALL_STATE(1132)] = 46707,
[SMALL_STATE(1133)] = 46723,
[SMALL_STATE(1134)] = 46739,
[SMALL_STATE(1135)] = 46749,
[SMALL_STATE(1136)] = 46765,
[SMALL_STATE(1137)] = 46777,
[SMALL_STATE(1138)] = 46791,
[SMALL_STATE(1139)] = 46805,
[SMALL_STATE(1140)] = 46821,
[SMALL_STATE(1141)] = 46837,
[SMALL_STATE(1142)] = 46849,
[SMALL_STATE(1143)] = 46863,
[SMALL_STATE(1144)] = 46875,
[SMALL_STATE(1145)] = 46891,
[SMALL_STATE(1146)] = 46903,
[SMALL_STATE(1147)] = 46919,
[SMALL_STATE(1148)] = 46933,
[SMALL_STATE(1149)] = 46949,
[SMALL_STATE(1150)] = 46959,
[SMALL_STATE(1151)] = 46973,
[SMALL_STATE(1152)] = 46987,
[SMALL_STATE(1153)] = 47001,
[SMALL_STATE(1154)] = 47013,
[SMALL_STATE(1155)] = 47029,
[SMALL_STATE(1156)] = 47043,
[SMALL_STATE(1157)] = 47057,
[SMALL_STATE(1158)] = 47073,
[SMALL_STATE(1159)] = 47089,
[SMALL_STATE(1160)] = 47103,
[SMALL_STATE(1161)] = 47119,
[SMALL_STATE(1162)] = 47135,
[SMALL_STATE(1163)] = 47149,
[SMALL_STATE(1164)] = 47163,
[SMALL_STATE(1165)] = 47179,
[SMALL_STATE(1166)] = 47195,
[SMALL_STATE(1167)] = 47205,
[SMALL_STATE(1168)] = 47221,
[SMALL_STATE(1169)] = 47235,
[SMALL_STATE(1170)] = 47245,
[SMALL_STATE(1171)] = 47261,
[SMALL_STATE(1172)] = 47277,
[SMALL_STATE(1173)] = 47293,
[SMALL_STATE(1174)] = 47306,
[SMALL_STATE(1175)] = 47319,
[SMALL_STATE(1176)] = 47328,
[SMALL_STATE(1177)] = 47337,
[SMALL_STATE(1178)] = 47350,
[SMALL_STATE(1179)] = 47359,
[SMALL_STATE(1180)] = 47372,
[SMALL_STATE(1181)] = 47385,
[SMALL_STATE(1182)] = 47398,
[SMALL_STATE(1183)] = 47407,
[SMALL_STATE(1184)] = 47420,
[SMALL_STATE(1185)] = 47433,
[SMALL_STATE(1186)] = 47442,
[SMALL_STATE(1187)] = 47453,
[SMALL_STATE(1188)] = 47466,
[SMALL_STATE(1189)] = 47479,
[SMALL_STATE(1190)] = 47492,
[SMALL_STATE(1191)] = 47501,
[SMALL_STATE(1192)] = 47514,
[SMALL_STATE(1193)] = 47527,
[SMALL_STATE(1194)] = 47540,
[SMALL_STATE(1195)] = 47553,
[SMALL_STATE(1196)] = 47566,
[SMALL_STATE(1197)] = 47579,
[SMALL_STATE(1198)] = 47588,
[SMALL_STATE(1199)] = 47601,
[SMALL_STATE(1200)] = 47610,
[SMALL_STATE(1201)] = 47623,
[SMALL_STATE(1202)] = 47636,
[SMALL_STATE(1203)] = 47645,
[SMALL_STATE(1204)] = 47658,
[SMALL_STATE(1205)] = 47667,
[SMALL_STATE(1206)] = 47676,
[SMALL_STATE(1207)] = 47685,
[SMALL_STATE(1208)] = 47694,
[SMALL_STATE(1209)] = 47707,
[SMALL_STATE(1210)] = 47720,
[SMALL_STATE(1211)] = 47729,
[SMALL_STATE(1212)] = 47738,
[SMALL_STATE(1213)] = 47747,
[SMALL_STATE(1214)] = 47760,
[SMALL_STATE(1215)] = 47773,
[SMALL_STATE(1216)] = 47784,
[SMALL_STATE(1217)] = 47795,
[SMALL_STATE(1218)] = 47804,
[SMALL_STATE(1219)] = 47817,
[SMALL_STATE(1220)] = 47830,
[SMALL_STATE(1221)] = 47839,
[SMALL_STATE(1222)] = 47852,
[SMALL_STATE(1223)] = 47861,
[SMALL_STATE(1224)] = 47874,
[SMALL_STATE(1225)] = 47885,
[SMALL_STATE(1226)] = 47898,
[SMALL_STATE(1227)] = 47911,
[SMALL_STATE(1228)] = 47920,
[SMALL_STATE(1229)] = 47929,
[SMALL_STATE(1230)] = 47942,
[SMALL_STATE(1231)] = 47955,
[SMALL_STATE(1232)] = 47968,
[SMALL_STATE(1233)] = 47981,
[SMALL_STATE(1234)] = 47994,
[SMALL_STATE(1235)] = 48007,
[SMALL_STATE(1236)] = 48020,
[SMALL_STATE(1237)] = 48033,
[SMALL_STATE(1238)] = 48046,
[SMALL_STATE(1239)] = 48059,
[SMALL_STATE(1240)] = 48072,
[SMALL_STATE(1241)] = 48085,
[SMALL_STATE(1242)] = 48098,
[SMALL_STATE(1243)] = 48107,
[SMALL_STATE(1244)] = 48120,
[SMALL_STATE(1245)] = 48133,
[SMALL_STATE(1246)] = 48146,
[SMALL_STATE(1247)] = 48159,
[SMALL_STATE(1248)] = 48172,
[SMALL_STATE(1249)] = 48185,
[SMALL_STATE(1250)] = 48194,
[SMALL_STATE(1251)] = 48207,
[SMALL_STATE(1252)] = 48220,
[SMALL_STATE(1253)] = 48233,
[SMALL_STATE(1254)] = 48246,
[SMALL_STATE(1255)] = 48259,
[SMALL_STATE(1256)] = 48272,
[SMALL_STATE(1257)] = 48285,
[SMALL_STATE(1258)] = 48298,
[SMALL_STATE(1259)] = 48311,
[SMALL_STATE(1260)] = 48324,
[SMALL_STATE(1261)] = 48335,
[SMALL_STATE(1262)] = 48348,
[SMALL_STATE(1263)] = 48361,
[SMALL_STATE(1264)] = 48370,
[SMALL_STATE(1265)] = 48379,
[SMALL_STATE(1266)] = 48388,
[SMALL_STATE(1267)] = 48401,
[SMALL_STATE(1268)] = 48410,
[SMALL_STATE(1269)] = 48423,
[SMALL_STATE(1270)] = 48432,
[SMALL_STATE(1271)] = 48445,
[SMALL_STATE(1272)] = 48458,
[SMALL_STATE(1273)] = 48467,
[SMALL_STATE(1274)] = 48476,
[SMALL_STATE(1275)] = 48489,
[SMALL_STATE(1276)] = 48502,
[SMALL_STATE(1277)] = 48515,
[SMALL_STATE(1278)] = 48524,
[SMALL_STATE(1279)] = 48537,
[SMALL_STATE(1280)] = 48546,
[SMALL_STATE(1281)] = 48559,
[SMALL_STATE(1282)] = 48572,
[SMALL_STATE(1283)] = 48581,
[SMALL_STATE(1284)] = 48590,
[SMALL_STATE(1285)] = 48603,
[SMALL_STATE(1286)] = 48616,
[SMALL_STATE(1287)] = 48625,
[SMALL_STATE(1288)] = 48638,
[SMALL_STATE(1289)] = 48651,
[SMALL_STATE(1290)] = 48664,
[SMALL_STATE(1291)] = 48677,
[SMALL_STATE(1292)] = 48690,
[SMALL_STATE(1293)] = 48703,
[SMALL_STATE(1294)] = 48714,
[SMALL_STATE(1295)] = 48727,
[SMALL_STATE(1296)] = 48738,
[SMALL_STATE(1297)] = 48747,
[SMALL_STATE(1298)] = 48756,
[SMALL_STATE(1299)] = 48765,
[SMALL_STATE(1300)] = 48778,
[SMALL_STATE(1301)] = 48787,
[SMALL_STATE(1302)] = 48800,
[SMALL_STATE(1303)] = 48813,
[SMALL_STATE(1304)] = 48826,
[SMALL_STATE(1305)] = 48839,
[SMALL_STATE(1306)] = 48848,
[SMALL_STATE(1307)] = 48861,
[SMALL_STATE(1308)] = 48874,
[SMALL_STATE(1309)] = 48887,
[SMALL_STATE(1310)] = 48900,
[SMALL_STATE(1311)] = 48909,
[SMALL_STATE(1312)] = 48922,
[SMALL_STATE(1313)] = 48935,
[SMALL_STATE(1314)] = 48948,
[SMALL_STATE(1315)] = 48961,
[SMALL_STATE(1316)] = 48974,
[SMALL_STATE(1317)] = 48985,
[SMALL_STATE(1318)] = 48998,
[SMALL_STATE(1319)] = 49011,
[SMALL_STATE(1320)] = 49024,
[SMALL_STATE(1321)] = 49035,
[SMALL_STATE(1322)] = 49048,
[SMALL_STATE(1323)] = 49061,
[SMALL_STATE(1324)] = 49074,
[SMALL_STATE(1325)] = 49087,
[SMALL_STATE(1326)] = 49100,
[SMALL_STATE(1327)] = 49113,
[SMALL_STATE(1328)] = 49122,
[SMALL_STATE(1329)] = 49135,
[SMALL_STATE(1330)] = 49144,
[SMALL_STATE(1331)] = 49153,
[SMALL_STATE(1332)] = 49166,
[SMALL_STATE(1333)] = 49175,
[SMALL_STATE(1334)] = 49188,
[SMALL_STATE(1335)] = 49197,
[SMALL_STATE(1336)] = 49210,
[SMALL_STATE(1337)] = 49223,
[SMALL_STATE(1338)] = 49234,
[SMALL_STATE(1339)] = 49243,
[SMALL_STATE(1340)] = 49256,
[SMALL_STATE(1341)] = 49269,
[SMALL_STATE(1342)] = 49282,
[SMALL_STATE(1343)] = 49295,
[SMALL_STATE(1344)] = 49308,
[SMALL_STATE(1345)] = 49317,
[SMALL_STATE(1346)] = 49330,
[SMALL_STATE(1347)] = 49343,
[SMALL_STATE(1348)] = 49356,
[SMALL_STATE(1349)] = 49369,
[SMALL_STATE(1350)] = 49382,
[SMALL_STATE(1351)] = 49395,
[SMALL_STATE(1352)] = 49408,
[SMALL_STATE(1353)] = 49417,
[SMALL_STATE(1354)] = 49430,
[SMALL_STATE(1355)] = 49443,
[SMALL_STATE(1356)] = 49456,
[SMALL_STATE(1357)] = 49465,
[SMALL_STATE(1358)] = 49478,
[SMALL_STATE(1359)] = 49491,
[SMALL_STATE(1360)] = 49502,
[SMALL_STATE(1361)] = 49515,
[SMALL_STATE(1362)] = 49528,
[SMALL_STATE(1363)] = 49537,
[SMALL_STATE(1364)] = 49550,
[SMALL_STATE(1365)] = 49559,
[SMALL_STATE(1366)] = 49568,
[SMALL_STATE(1367)] = 49581,
[SMALL_STATE(1368)] = 49594,
[SMALL_STATE(1369)] = 49603,
[SMALL_STATE(1370)] = 49612,
[SMALL_STATE(1371)] = 49625,
[SMALL_STATE(1372)] = 49638,
[SMALL_STATE(1373)] = 49647,
[SMALL_STATE(1374)] = 49655,
[SMALL_STATE(1375)] = 49663,
[SMALL_STATE(1376)] = 49671,
[SMALL_STATE(1377)] = 49681,
[SMALL_STATE(1378)] = 49689,
[SMALL_STATE(1379)] = 49699,
[SMALL_STATE(1380)] = 49709,
[SMALL_STATE(1381)] = 49717,
[SMALL_STATE(1382)] = 49727,
[SMALL_STATE(1383)] = 49737,
[SMALL_STATE(1384)] = 49747,
[SMALL_STATE(1385)] = 49757,
[SMALL_STATE(1386)] = 49767,
[SMALL_STATE(1387)] = 49775,
[SMALL_STATE(1388)] = 49785,
[SMALL_STATE(1389)] = 49795,
[SMALL_STATE(1390)] = 49803,
[SMALL_STATE(1391)] = 49811,
[SMALL_STATE(1392)] = 49819,
[SMALL_STATE(1393)] = 49829,
[SMALL_STATE(1394)] = 49837,
[SMALL_STATE(1395)] = 49847,
[SMALL_STATE(1396)] = 49857,
[SMALL_STATE(1397)] = 49867,
[SMALL_STATE(1398)] = 49875,
[SMALL_STATE(1399)] = 49885,
[SMALL_STATE(1400)] = 49895,
[SMALL_STATE(1401)] = 49903,
[SMALL_STATE(1402)] = 49911,
[SMALL_STATE(1403)] = 49921,
[SMALL_STATE(1404)] = 49929,
[SMALL_STATE(1405)] = 49937,
[SMALL_STATE(1406)] = 49947,
[SMALL_STATE(1407)] = 49957,
[SMALL_STATE(1408)] = 49967,
[SMALL_STATE(1409)] = 49975,
[SMALL_STATE(1410)] = 49983,
[SMALL_STATE(1411)] = 49993,
[SMALL_STATE(1412)] = 50003,
[SMALL_STATE(1413)] = 50013,
[SMALL_STATE(1414)] = 50023,
[SMALL_STATE(1415)] = 50031,
[SMALL_STATE(1416)] = 50039,
[SMALL_STATE(1417)] = 50047,
[SMALL_STATE(1418)] = 50057,
[SMALL_STATE(1419)] = 50065,
[SMALL_STATE(1420)] = 50075,
[SMALL_STATE(1421)] = 50083,
[SMALL_STATE(1422)] = 50093,
[SMALL_STATE(1423)] = 50101,
[SMALL_STATE(1424)] = 50111,
[SMALL_STATE(1425)] = 50119,
[SMALL_STATE(1426)] = 50127,
[SMALL_STATE(1427)] = 50135,
[SMALL_STATE(1428)] = 50143,
[SMALL_STATE(1429)] = 50151,
[SMALL_STATE(1430)] = 50159,
[SMALL_STATE(1431)] = 50169,
[SMALL_STATE(1432)] = 50179,
[SMALL_STATE(1433)] = 50187,
[SMALL_STATE(1434)] = 50197,
[SMALL_STATE(1435)] = 50205,
[SMALL_STATE(1436)] = 50215,
[SMALL_STATE(1437)] = 50223,
[SMALL_STATE(1438)] = 50233,
[SMALL_STATE(1439)] = 50243,
[SMALL_STATE(1440)] = 50251,
[SMALL_STATE(1441)] = 50261,
[SMALL_STATE(1442)] = 50269,
[SMALL_STATE(1443)] = 50279,
[SMALL_STATE(1444)] = 50287,
[SMALL_STATE(1445)] = 50297,
[SMALL_STATE(1446)] = 50307,
[SMALL_STATE(1447)] = 50317,
[SMALL_STATE(1448)] = 50325,
[SMALL_STATE(1449)] = 50333,
[SMALL_STATE(1450)] = 50341,
[SMALL_STATE(1451)] = 50351,
[SMALL_STATE(1452)] = 50359,
[SMALL_STATE(1453)] = 50369,
[SMALL_STATE(1454)] = 50377,
[SMALL_STATE(1455)] = 50385,
[SMALL_STATE(1456)] = 50395,
[SMALL_STATE(1457)] = 50405,
[SMALL_STATE(1458)] = 50413,
[SMALL_STATE(1459)] = 50423,
[SMALL_STATE(1460)] = 50433,
[SMALL_STATE(1461)] = 50443,
[SMALL_STATE(1462)] = 50451,
[SMALL_STATE(1463)] = 50459,
[SMALL_STATE(1464)] = 50469,
[SMALL_STATE(1465)] = 50479,
[SMALL_STATE(1466)] = 50487,
[SMALL_STATE(1467)] = 50497,
[SMALL_STATE(1468)] = 50507,
[SMALL_STATE(1469)] = 50515,
[SMALL_STATE(1470)] = 50523,
[SMALL_STATE(1471)] = 50531,
[SMALL_STATE(1472)] = 50541,
[SMALL_STATE(1473)] = 50549,
[SMALL_STATE(1474)] = 50557,
[SMALL_STATE(1475)] = 50565,
[SMALL_STATE(1476)] = 50573,
[SMALL_STATE(1477)] = 50581,
[SMALL_STATE(1478)] = 50591,
[SMALL_STATE(1479)] = 50599,
[SMALL_STATE(1480)] = 50607,
[SMALL_STATE(1481)] = 50617,
[SMALL_STATE(1482)] = 50627,
[SMALL_STATE(1483)] = 50637,
[SMALL_STATE(1484)] = 50647,
[SMALL_STATE(1485)] = 50657,
[SMALL_STATE(1486)] = 50667,
[SMALL_STATE(1487)] = 50675,
[SMALL_STATE(1488)] = 50683,
[SMALL_STATE(1489)] = 50691,
[SMALL_STATE(1490)] = 50699,
[SMALL_STATE(1491)] = 50707,
[SMALL_STATE(1492)] = 50717,
[SMALL_STATE(1493)] = 50727,
[SMALL_STATE(1494)] = 50737,
[SMALL_STATE(1495)] = 50745,
[SMALL_STATE(1496)] = 50753,
[SMALL_STATE(1497)] = 50763,
[SMALL_STATE(1498)] = 50773,
[SMALL_STATE(1499)] = 50781,
[SMALL_STATE(1500)] = 50789,
[SMALL_STATE(1501)] = 50799,
[SMALL_STATE(1502)] = 50807,
[SMALL_STATE(1503)] = 50817,
[SMALL_STATE(1504)] = 50825,
[SMALL_STATE(1505)] = 50835,
[SMALL_STATE(1506)] = 50843,
[SMALL_STATE(1507)] = 50851,
[SMALL_STATE(1508)] = 50861,
[SMALL_STATE(1509)] = 50869,
[SMALL_STATE(1510)] = 50879,
[SMALL_STATE(1511)] = 50887,
[SMALL_STATE(1512)] = 50897,
[SMALL_STATE(1513)] = 50907,
[SMALL_STATE(1514)] = 50915,
[SMALL_STATE(1515)] = 50925,
[SMALL_STATE(1516)] = 50935,
[SMALL_STATE(1517)] = 50943,
[SMALL_STATE(1518)] = 50951,
[SMALL_STATE(1519)] = 50959,
[SMALL_STATE(1520)] = 50969,
[SMALL_STATE(1521)] = 50977,
[SMALL_STATE(1522)] = 50987,
[SMALL_STATE(1523)] = 50995,
[SMALL_STATE(1524)] = 51005,
[SMALL_STATE(1525)] = 51013,
[SMALL_STATE(1526)] = 51023,
[SMALL_STATE(1527)] = 51033,
[SMALL_STATE(1528)] = 51043,
[SMALL_STATE(1529)] = 51051,
[SMALL_STATE(1530)] = 51059,
[SMALL_STATE(1531)] = 51067,
[SMALL_STATE(1532)] = 51077,
[SMALL_STATE(1533)] = 51085,
[SMALL_STATE(1534)] = 51093,
[SMALL_STATE(1535)] = 51103,
[SMALL_STATE(1536)] = 51110,
[SMALL_STATE(1537)] = 51117,
[SMALL_STATE(1538)] = 51124,
[SMALL_STATE(1539)] = 51131,
[SMALL_STATE(1540)] = 51138,
[SMALL_STATE(1541)] = 51145,
[SMALL_STATE(1542)] = 51152,
[SMALL_STATE(1543)] = 51159,
[SMALL_STATE(1544)] = 51166,
[SMALL_STATE(1545)] = 51173,
[SMALL_STATE(1546)] = 51180,
[SMALL_STATE(1547)] = 51187,
[SMALL_STATE(1548)] = 51194,
[SMALL_STATE(1549)] = 51201,
[SMALL_STATE(1550)] = 51208,
[SMALL_STATE(1551)] = 51215,
[SMALL_STATE(1552)] = 51222,
[SMALL_STATE(1553)] = 51229,
[SMALL_STATE(1554)] = 51236,
[SMALL_STATE(1555)] = 51243,
[SMALL_STATE(1556)] = 51250,
[SMALL_STATE(1557)] = 51257,
[SMALL_STATE(1558)] = 51264,
[SMALL_STATE(1559)] = 51271,
[SMALL_STATE(1560)] = 51278,
[SMALL_STATE(1561)] = 51285,
[SMALL_STATE(1562)] = 51292,
[SMALL_STATE(1563)] = 51299,
[SMALL_STATE(1564)] = 51306,
[SMALL_STATE(1565)] = 51313,
[SMALL_STATE(1566)] = 51320,
[SMALL_STATE(1567)] = 51327,
[SMALL_STATE(1568)] = 51334,
[SMALL_STATE(1569)] = 51341,
[SMALL_STATE(1570)] = 51348,
[SMALL_STATE(1571)] = 51355,
[SMALL_STATE(1572)] = 51362,
[SMALL_STATE(1573)] = 51369,
[SMALL_STATE(1574)] = 51376,
[SMALL_STATE(1575)] = 51383,
[SMALL_STATE(1576)] = 51390,
[SMALL_STATE(1577)] = 51397,
[SMALL_STATE(1578)] = 51404,
[SMALL_STATE(1579)] = 51411,
[SMALL_STATE(1580)] = 51418,
[SMALL_STATE(1581)] = 51425,
[SMALL_STATE(1582)] = 51432,
[SMALL_STATE(1583)] = 51439,
[SMALL_STATE(1584)] = 51446,
[SMALL_STATE(1585)] = 51453,
[SMALL_STATE(1586)] = 51460,
[SMALL_STATE(1587)] = 51467,
[SMALL_STATE(1588)] = 51474,
[SMALL_STATE(1589)] = 51481,
[SMALL_STATE(1590)] = 51488,
[SMALL_STATE(1591)] = 51495,
[SMALL_STATE(1592)] = 51502,
[SMALL_STATE(1593)] = 51509,
[SMALL_STATE(1594)] = 51516,
[SMALL_STATE(1595)] = 51523,
[SMALL_STATE(1596)] = 51530,
[SMALL_STATE(1597)] = 51537,
[SMALL_STATE(1598)] = 51544,
[SMALL_STATE(1599)] = 51551,
[SMALL_STATE(1600)] = 51558,
[SMALL_STATE(1601)] = 51565,
[SMALL_STATE(1602)] = 51572,
[SMALL_STATE(1603)] = 51579,
[SMALL_STATE(1604)] = 51586,
[SMALL_STATE(1605)] = 51593,
[SMALL_STATE(1606)] = 51600,
[SMALL_STATE(1607)] = 51607,
[SMALL_STATE(1608)] = 51614,
[SMALL_STATE(1609)] = 51621,
[SMALL_STATE(1610)] = 51628,
[SMALL_STATE(1611)] = 51635,
[SMALL_STATE(1612)] = 51642,
[SMALL_STATE(1613)] = 51649,
[SMALL_STATE(1614)] = 51656,
[SMALL_STATE(1615)] = 51663,
[SMALL_STATE(1616)] = 51670,
[SMALL_STATE(1617)] = 51677,
[SMALL_STATE(1618)] = 51684,
[SMALL_STATE(1619)] = 51691,
[SMALL_STATE(1620)] = 51698,
[SMALL_STATE(1621)] = 51705,
[SMALL_STATE(1622)] = 51712,
[SMALL_STATE(1623)] = 51719,
[SMALL_STATE(1624)] = 51726,
[SMALL_STATE(1625)] = 51733,
[SMALL_STATE(1626)] = 51740,
[SMALL_STATE(1627)] = 51747,
[SMALL_STATE(1628)] = 51754,
[SMALL_STATE(1629)] = 51761,
[SMALL_STATE(1630)] = 51768,
[SMALL_STATE(1631)] = 51775,
[SMALL_STATE(1632)] = 51782,
[SMALL_STATE(1633)] = 51789,
[SMALL_STATE(1634)] = 51796,
[SMALL_STATE(1635)] = 51803,
[SMALL_STATE(1636)] = 51810,
[SMALL_STATE(1637)] = 51817,
[SMALL_STATE(1638)] = 51824,
[SMALL_STATE(1639)] = 51831,
[SMALL_STATE(1640)] = 51838,
[SMALL_STATE(1641)] = 51845,
[SMALL_STATE(1642)] = 51852,
[SMALL_STATE(1643)] = 51859,
[SMALL_STATE(1644)] = 51866,
[SMALL_STATE(1645)] = 51873,
[SMALL_STATE(1646)] = 51880,
[SMALL_STATE(1647)] = 51887,
[SMALL_STATE(1648)] = 51894,
[SMALL_STATE(1649)] = 51901,
[SMALL_STATE(1650)] = 51908,
[SMALL_STATE(1651)] = 51915,
[SMALL_STATE(1652)] = 51922,
[SMALL_STATE(1653)] = 51929,
[SMALL_STATE(1654)] = 51936,
[SMALL_STATE(1655)] = 51943,
[SMALL_STATE(1656)] = 51950,
[SMALL_STATE(1657)] = 51957,
[SMALL_STATE(1658)] = 51964,
[SMALL_STATE(1659)] = 51971,
[SMALL_STATE(1660)] = 51978,
[SMALL_STATE(1661)] = 51985,
[SMALL_STATE(1662)] = 51992,
[SMALL_STATE(1663)] = 51999,
[SMALL_STATE(1664)] = 52006,
[SMALL_STATE(1665)] = 52013,
[SMALL_STATE(1666)] = 52020,
[SMALL_STATE(1667)] = 52027,
[SMALL_STATE(1668)] = 52034,
[SMALL_STATE(1669)] = 52041,
[SMALL_STATE(1670)] = 52048,
[SMALL_STATE(1671)] = 52055,
[SMALL_STATE(1672)] = 52062,
[SMALL_STATE(1673)] = 52069,
[SMALL_STATE(1674)] = 52076,
[SMALL_STATE(1675)] = 52083,
[SMALL_STATE(1676)] = 52090,
[SMALL_STATE(1677)] = 52097,
[SMALL_STATE(1678)] = 52104,
[SMALL_STATE(1679)] = 52111,
[SMALL_STATE(1680)] = 52118,
[SMALL_STATE(1681)] = 52125,
[SMALL_STATE(1682)] = 52132,
[SMALL_STATE(1683)] = 52139,
[SMALL_STATE(1684)] = 52146,
[SMALL_STATE(1685)] = 52153,
[SMALL_STATE(1686)] = 52160,
[SMALL_STATE(1687)] = 52167,
[SMALL_STATE(1688)] = 52174,
[SMALL_STATE(1689)] = 52181,
[SMALL_STATE(1690)] = 52188,
[SMALL_STATE(1691)] = 52195,
[SMALL_STATE(1692)] = 52202,
[SMALL_STATE(1693)] = 52209,
[SMALL_STATE(1694)] = 52216,
[SMALL_STATE(1695)] = 52223,
[SMALL_STATE(1696)] = 52230,
[SMALL_STATE(1697)] = 52237,
[SMALL_STATE(1698)] = 52244,
[SMALL_STATE(1699)] = 52251,
[SMALL_STATE(1700)] = 52258,
[SMALL_STATE(1701)] = 52265,
[SMALL_STATE(1702)] = 52272,
[SMALL_STATE(1703)] = 52279,
[SMALL_STATE(1704)] = 52286,
[SMALL_STATE(1705)] = 52293,
[SMALL_STATE(1706)] = 52300,
[SMALL_STATE(1707)] = 52307,
[SMALL_STATE(1708)] = 52314,
[SMALL_STATE(1709)] = 52321,
[SMALL_STATE(1710)] = 52328,
[SMALL_STATE(1711)] = 52335,
[SMALL_STATE(1712)] = 52342,
[SMALL_STATE(1713)] = 52349,
[SMALL_STATE(1714)] = 52356,
[SMALL_STATE(1715)] = 52363,
[SMALL_STATE(1716)] = 52370,
[SMALL_STATE(1717)] = 52377,
[SMALL_STATE(1718)] = 52384,
[SMALL_STATE(1719)] = 52391,
[SMALL_STATE(1720)] = 52398,
[SMALL_STATE(1721)] = 52405,
[SMALL_STATE(1722)] = 52412,
[SMALL_STATE(1723)] = 52419,
[SMALL_STATE(1724)] = 52426,
[SMALL_STATE(1725)] = 52433,
[SMALL_STATE(1726)] = 52440,
[SMALL_STATE(1727)] = 52447,
[SMALL_STATE(1728)] = 52454,
[SMALL_STATE(1729)] = 52461,
[SMALL_STATE(1730)] = 52468,
[SMALL_STATE(1731)] = 52475,
[SMALL_STATE(1732)] = 52482,
[SMALL_STATE(1733)] = 52489,
[SMALL_STATE(1734)] = 52496,
[SMALL_STATE(1735)] = 52503,
[SMALL_STATE(1736)] = 52510,
[SMALL_STATE(1737)] = 52517,
[SMALL_STATE(1738)] = 52524,
[SMALL_STATE(1739)] = 52531,
[SMALL_STATE(1740)] = 52538,
[SMALL_STATE(1741)] = 52545,
[SMALL_STATE(1742)] = 52552,
[SMALL_STATE(1743)] = 52559,
[SMALL_STATE(1744)] = 52566,
[SMALL_STATE(1745)] = 52573,
[SMALL_STATE(1746)] = 52580,
[SMALL_STATE(1747)] = 52587,
[SMALL_STATE(1748)] = 52594,
[SMALL_STATE(1749)] = 52601,
[SMALL_STATE(1750)] = 52608,
[SMALL_STATE(1751)] = 52615,
[SMALL_STATE(1752)] = 52622,
[SMALL_STATE(1753)] = 52629,
[SMALL_STATE(1754)] = 52636,
[SMALL_STATE(1755)] = 52643,
[SMALL_STATE(1756)] = 52650,
[SMALL_STATE(1757)] = 52657,
[SMALL_STATE(1758)] = 52664,
[SMALL_STATE(1759)] = 52671,
[SMALL_STATE(1760)] = 52678,
[SMALL_STATE(1761)] = 52685,
[SMALL_STATE(1762)] = 52692,
[SMALL_STATE(1763)] = 52699,
[SMALL_STATE(1764)] = 52706,
[SMALL_STATE(1765)] = 52713,
[SMALL_STATE(1766)] = 52720,
[SMALL_STATE(1767)] = 52727,
[SMALL_STATE(1768)] = 52734,
[SMALL_STATE(1769)] = 52741,
[SMALL_STATE(1770)] = 52748,
[SMALL_STATE(1771)] = 52755,
[SMALL_STATE(1772)] = 52762,
[SMALL_STATE(1773)] = 52769,
[SMALL_STATE(1774)] = 52776,
[SMALL_STATE(1775)] = 52783,
[SMALL_STATE(1776)] = 52790,
[SMALL_STATE(1777)] = 52797,
[SMALL_STATE(1778)] = 52804,
[SMALL_STATE(1779)] = 52811,
[SMALL_STATE(1780)] = 52818,
[SMALL_STATE(1781)] = 52825,
[SMALL_STATE(1782)] = 52832,
[SMALL_STATE(1783)] = 52839,
[SMALL_STATE(1784)] = 52846,
[SMALL_STATE(1785)] = 52853,
[SMALL_STATE(1786)] = 52860,
[SMALL_STATE(1787)] = 52867,
[SMALL_STATE(1788)] = 52874,
[SMALL_STATE(1789)] = 52881,
[SMALL_STATE(1790)] = 52888,
[SMALL_STATE(1791)] = 52895,
[SMALL_STATE(1792)] = 52902,
[SMALL_STATE(1793)] = 52909,
[SMALL_STATE(1794)] = 52916,
[SMALL_STATE(1795)] = 52923,
[SMALL_STATE(1796)] = 52930,
[SMALL_STATE(1797)] = 52937,
[SMALL_STATE(1798)] = 52944,
[SMALL_STATE(1799)] = 52951,
[SMALL_STATE(1800)] = 52958,
[SMALL_STATE(1801)] = 52965,
[SMALL_STATE(1802)] = 52972,
[SMALL_STATE(1803)] = 52979,
[SMALL_STATE(1804)] = 52986,
[SMALL_STATE(1805)] = 52993,
[SMALL_STATE(1806)] = 53000,
[SMALL_STATE(1807)] = 53007,
[SMALL_STATE(1808)] = 53014,
[SMALL_STATE(1809)] = 53021,
[SMALL_STATE(1810)] = 53028,
[SMALL_STATE(1811)] = 53035,
[SMALL_STATE(1812)] = 53042,
[SMALL_STATE(1813)] = 53049,
[SMALL_STATE(1814)] = 53056,
[SMALL_STATE(1815)] = 53063,
[SMALL_STATE(1816)] = 53070,
[SMALL_STATE(1817)] = 53077,
[SMALL_STATE(1818)] = 53084,
[SMALL_STATE(1819)] = 53091,
[SMALL_STATE(1820)] = 53098,
[SMALL_STATE(1821)] = 53105,
[SMALL_STATE(1822)] = 53112,
[SMALL_STATE(1823)] = 53119,
[SMALL_STATE(1824)] = 53126,
[SMALL_STATE(1825)] = 53133,
[SMALL_STATE(1826)] = 53140,
[SMALL_STATE(1827)] = 53147,
[SMALL_STATE(1828)] = 53154,
[SMALL_STATE(1829)] = 53161,
[SMALL_STATE(1830)] = 53168,
[SMALL_STATE(1831)] = 53175,
[SMALL_STATE(1832)] = 53182,
[SMALL_STATE(1833)] = 53189,
[SMALL_STATE(1834)] = 53196,
[SMALL_STATE(1835)] = 53203,
[SMALL_STATE(1836)] = 53210,
[SMALL_STATE(1837)] = 53217,
[SMALL_STATE(1838)] = 53224,
[SMALL_STATE(1839)] = 53231,
[SMALL_STATE(1840)] = 53238,
[SMALL_STATE(1841)] = 53245,
[SMALL_STATE(1842)] = 53252,
[SMALL_STATE(1843)] = 53259,
[SMALL_STATE(1844)] = 53266,
[SMALL_STATE(1845)] = 53273,
[SMALL_STATE(1846)] = 53280,
[SMALL_STATE(1847)] = 53287,
[SMALL_STATE(1848)] = 53294,
[SMALL_STATE(1849)] = 53301,
[SMALL_STATE(1850)] = 53308,
[SMALL_STATE(1851)] = 53315,
[SMALL_STATE(1852)] = 53322,
[SMALL_STATE(1853)] = 53329,
[SMALL_STATE(1854)] = 53336,
[SMALL_STATE(1855)] = 53343,
[SMALL_STATE(1856)] = 53350,
[SMALL_STATE(1857)] = 53357,
[SMALL_STATE(1858)] = 53364,
[SMALL_STATE(1859)] = 53371,
[SMALL_STATE(1860)] = 53378,
[SMALL_STATE(1861)] = 53385,
[SMALL_STATE(1862)] = 53392,
[SMALL_STATE(1863)] = 53399,
[SMALL_STATE(1864)] = 53406,
[SMALL_STATE(1865)] = 53413,
[SMALL_STATE(1866)] = 53420,
[SMALL_STATE(1867)] = 53427,
[SMALL_STATE(1868)] = 53434,
[SMALL_STATE(1869)] = 53441,
[SMALL_STATE(1870)] = 53448,
[SMALL_STATE(1871)] = 53455,
[SMALL_STATE(1872)] = 53462,
[SMALL_STATE(1873)] = 53469,
[SMALL_STATE(1874)] = 53476,
[SMALL_STATE(1875)] = 53483,
[SMALL_STATE(1876)] = 53490,
[SMALL_STATE(1877)] = 53497,
[SMALL_STATE(1878)] = 53504,
[SMALL_STATE(1879)] = 53511,
[SMALL_STATE(1880)] = 53518,
[SMALL_STATE(1881)] = 53525,
[SMALL_STATE(1882)] = 53532,
[SMALL_STATE(1883)] = 53539,
[SMALL_STATE(1884)] = 53546,
[SMALL_STATE(1885)] = 53553,
[SMALL_STATE(1886)] = 53560,
[SMALL_STATE(1887)] = 53567,
[SMALL_STATE(1888)] = 53574,
[SMALL_STATE(1889)] = 53581,
[SMALL_STATE(1890)] = 53588,
[SMALL_STATE(1891)] = 53595,
[SMALL_STATE(1892)] = 53602,
[SMALL_STATE(1893)] = 53609,
[SMALL_STATE(1894)] = 53616,
[SMALL_STATE(1895)] = 53623,
[SMALL_STATE(1896)] = 53630,
[SMALL_STATE(1897)] = 53637,
[SMALL_STATE(1898)] = 53644,
[SMALL_STATE(1899)] = 53651,
[SMALL_STATE(1900)] = 53658,
[SMALL_STATE(1901)] = 53665,
[SMALL_STATE(1902)] = 53672,
[SMALL_STATE(1903)] = 53679,
[SMALL_STATE(1904)] = 53686,
[SMALL_STATE(1905)] = 53693,
[SMALL_STATE(1906)] = 53700,
[SMALL_STATE(1907)] = 53707,
[SMALL_STATE(1908)] = 53714,
[SMALL_STATE(1909)] = 53721,
[SMALL_STATE(1910)] = 53728,
[SMALL_STATE(1911)] = 53735,
[SMALL_STATE(1912)] = 53742,
[SMALL_STATE(1913)] = 53749,
[SMALL_STATE(1914)] = 53756,
[SMALL_STATE(1915)] = 53763,
[SMALL_STATE(1916)] = 53770,
[SMALL_STATE(1917)] = 53777,
[SMALL_STATE(1918)] = 53784,
[SMALL_STATE(1919)] = 53791,
[SMALL_STATE(1920)] = 53798,
[SMALL_STATE(1921)] = 53805,
[SMALL_STATE(1922)] = 53812,
[SMALL_STATE(1923)] = 53819,
[SMALL_STATE(1924)] = 53826,
[SMALL_STATE(1925)] = 53833,
[SMALL_STATE(1926)] = 53840,
[SMALL_STATE(1927)] = 53847,
[SMALL_STATE(1928)] = 53854,
[SMALL_STATE(1929)] = 53861,
[SMALL_STATE(1930)] = 53868,
[SMALL_STATE(1931)] = 53875,
[SMALL_STATE(1932)] = 53882,
[SMALL_STATE(1933)] = 53889,
[SMALL_STATE(1934)] = 53896,
[SMALL_STATE(1935)] = 53903,
[SMALL_STATE(1936)] = 53910,
[SMALL_STATE(1937)] = 53917,
[SMALL_STATE(1938)] = 53924,
[SMALL_STATE(1939)] = 53931,
[SMALL_STATE(1940)] = 53938,
[SMALL_STATE(1941)] = 53945,
[SMALL_STATE(1942)] = 53952,
[SMALL_STATE(1943)] = 53959,
[SMALL_STATE(1944)] = 53966,
[SMALL_STATE(1945)] = 53973,
[SMALL_STATE(1946)] = 53980,
[SMALL_STATE(1947)] = 53987,
[SMALL_STATE(1948)] = 53994,
[SMALL_STATE(1949)] = 54001,
[SMALL_STATE(1950)] = 54008,
[SMALL_STATE(1951)] = 54015,
[SMALL_STATE(1952)] = 54022,
[SMALL_STATE(1953)] = 54029,
[SMALL_STATE(1954)] = 54036,
[SMALL_STATE(1955)] = 54043,
[SMALL_STATE(1956)] = 54050,
[SMALL_STATE(1957)] = 54057,
[SMALL_STATE(1958)] = 54064,
[SMALL_STATE(1959)] = 54071,
[SMALL_STATE(1960)] = 54078,
[SMALL_STATE(1961)] = 54085,
[SMALL_STATE(1962)] = 54092,
[SMALL_STATE(1963)] = 54099,
[SMALL_STATE(1964)] = 54106,
[SMALL_STATE(1965)] = 54113,
[SMALL_STATE(1966)] = 54120,
[SMALL_STATE(1967)] = 54127,
[SMALL_STATE(1968)] = 54134,
[SMALL_STATE(1969)] = 54141,
[SMALL_STATE(1970)] = 54148,
[SMALL_STATE(1971)] = 54155,
[SMALL_STATE(1972)] = 54162,
[SMALL_STATE(1973)] = 54169,
[SMALL_STATE(1974)] = 54176,
[SMALL_STATE(1975)] = 54183,
[SMALL_STATE(1976)] = 54190,
[SMALL_STATE(1977)] = 54197,
[SMALL_STATE(1978)] = 54204,
[SMALL_STATE(1979)] = 54211,
[SMALL_STATE(1980)] = 54218,
[SMALL_STATE(1981)] = 54225,
[SMALL_STATE(1982)] = 54232,
[SMALL_STATE(1983)] = 54239,
[SMALL_STATE(1984)] = 54246,
[SMALL_STATE(1985)] = 54253,
[SMALL_STATE(1986)] = 54260,
[SMALL_STATE(1987)] = 54267,
[SMALL_STATE(1988)] = 54274,
[SMALL_STATE(1989)] = 54281,
[SMALL_STATE(1990)] = 54288,
[SMALL_STATE(1991)] = 54295,
[SMALL_STATE(1992)] = 54302,
[SMALL_STATE(1993)] = 54309,
[SMALL_STATE(1994)] = 54316,
[SMALL_STATE(1995)] = 54323,
[SMALL_STATE(1996)] = 54330,
[SMALL_STATE(1997)] = 54337,
[SMALL_STATE(1998)] = 54344,
[SMALL_STATE(1999)] = 54351,
[SMALL_STATE(2000)] = 54358,
[SMALL_STATE(2001)] = 54365,
[SMALL_STATE(2002)] = 54372,
[SMALL_STATE(2003)] = 54379,
[SMALL_STATE(2004)] = 54386,
[SMALL_STATE(2005)] = 54393,
[SMALL_STATE(2006)] = 54400,
[SMALL_STATE(2007)] = 54407,
[SMALL_STATE(2008)] = 54414,
[SMALL_STATE(2009)] = 54421,
[SMALL_STATE(2010)] = 54428,
[SMALL_STATE(2011)] = 54435,
[SMALL_STATE(2012)] = 54442,
[SMALL_STATE(2013)] = 54449,
[SMALL_STATE(2014)] = 54456,
[SMALL_STATE(2015)] = 54463,
[SMALL_STATE(2016)] = 54470,
[SMALL_STATE(2017)] = 54477,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 0),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525),
[23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699),
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975),
[27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016),
[33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703),
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015),
[37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824),
[43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214),
[49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013),
[57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816),
[67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815),
[69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011),
[71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683),
[75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813),
[77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009),
[85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1),
[87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(865),
[92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1030),
[95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1177),
[98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(692),
[101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(660),
[104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(78),
[107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(749),
[110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1525),
[113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(699),
[116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1975),
[119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2017),
[122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(49),
[125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2016),
[128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(703),
[131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2015),
[134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1196),
[137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(802),
[140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(824),
[143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(22),
[146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(239),
[149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1214),
[152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2014),
[155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(592),
[158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1217),
[161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2013),
[164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2012),
[167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(228),
[170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(184),
[173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(541),
[176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(816),
[179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(815),
[182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2011),
[185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(214),
[188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(683),
[191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(813),
[194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(191),
[197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(65),
[200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(208),
[203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2009),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969),
[208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359),
[210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 1),
[212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1115),
[215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(769),
[218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(660),
[221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(749),
[224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2),
[226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1975),
[229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2016),
[232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1196),
[235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(802),
[238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(824),
[241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1214),
[244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(592),
[247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1217),
[250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2012),
[253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(248),
[256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(2009),
[259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_declarative_part, 1),
[265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(969),
[270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1030),
[273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1177),
[276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1359),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2),
[281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(49),
[284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(703),
[287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2015),
[290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(22),
[293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(239),
[296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2013),
[299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2012),
[302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(228),
[305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(184),
[308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(541),
[311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(816),
[314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(815),
[317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(2011),
[320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(214),
[323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(683),
[326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(813),
[329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(191),
[332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(65),
[335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(208),
[338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232),
[340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236),
[344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288),
[346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284),
[350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_of_statements, 2),
[352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501),
[354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451),
[356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501),
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831),
[362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966),
[372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538),
[374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512),
[388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840),
[390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830),
[392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753),
[396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747),
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 1),
[422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1),
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1),
[426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700),
[430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511),
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914),
[444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539),
[452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405),
[468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742),
[476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1115),
[479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(769),
[482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(660),
[485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2),
[487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(820),
[490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1975),
[493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2016),
[496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1398),
[499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(802),
[502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(824),
[505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1405),
[508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(592),
[511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1217),
[514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2012),
[517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(2009),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750),
[528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522),
[536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489),
[540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 87),
[548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 87),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 14),
[552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 14),
[554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4),
[556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_until_statement, 4),
[558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 4, .production_id = 29),
[560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 4, .production_id = 29),
[562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 4, .production_id = 28),
[564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 4, .production_id = 28),
[566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 3),
[568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, .production_id = 3),
[570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 9, .production_id = 70),
[572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 9, .production_id = 70),
[574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 51),
[576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 51),
[578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 4),
[580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 4),
[582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 113),
[584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 9, .production_id = 113),
[586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 7),
[588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 7),
[590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 6),
[592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 6),
[594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7),
[596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7),
[598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, .production_id = 119),
[600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, .production_id = 119),
[602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 11, .production_id = 125),
[604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 11, .production_id = 125),
[606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 12),
[608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 12),
[610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 6, .production_id = 70),
[612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 6, .production_id = 70),
[614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 7),
[616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 7),
[618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 120),
[620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 120),
[622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 6),
[624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 6),
[626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 10, .production_id = 88),
[628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 10, .production_id = 88),
[630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 7),
[632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 7),
[634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_timed_entry_call, 7),
[636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_timed_entry_call, 7),
[638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 9),
[640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 9),
[642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 121),
[644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 10, .production_id = 121),
[646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2),
[648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 2),
[650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 3),
[652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 3),
[654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 3),
[656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 3),
[658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_return_statement, 2),
[660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_return_statement, 2),
[662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, .production_id = 113),
[664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, .production_id = 113),
[666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7),
[668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7),
[670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_statement, 3),
[672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_return_statement, 3),
[674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 7),
[676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 7),
[678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88),
[680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88),
[682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 89),
[684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 89),
[686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_g, 6),
[688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma_g, 6),
[690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 28),
[692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 28),
[694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2),
[696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2),
[698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abort_statement, 3),
[700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abort_statement, 3),
[702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 5, .production_id = 3),
[704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 5, .production_id = 3),
[706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, .production_id = 87),
[708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, .production_id = 87),
[710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 87),
[712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 7, .production_id = 87),
[714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 3, .production_id = 3),
[716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 3, .production_id = 3),
[718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 3, .production_id = 12),
[720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 3, .production_id = 12),
[722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 5),
[724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 5),
[726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 3, .production_id = 13),
[728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 3, .production_id = 13),
[730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2),
[732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2),
[734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_statement, 2),
[736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_statement, 2),
[738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 6, .production_id = 74),
[740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 6, .production_id = 74),
[742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_relative_statement, 3),
[744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delay_relative_statement, 3),
[746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101),
[748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asynchronous_select, 8, .production_id = 101),
[750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 8),
[752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 8),
[754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 8, .production_id = 102),
[756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 8, .production_id = 102),
[758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selective_accept, 5),
[760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_accept, 5),
[762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103),
[764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_if_statement, 8, .production_id = 103),
[766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requeue_statement, 5, .production_id = 3),
[768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requeue_statement, 5, .production_id = 3),
[770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 4),
[772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 4),
[774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2),
[776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 2, .production_id = 2),
[778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 90),
[780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 90),
[782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 8),
[784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_statement, 8),
[786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 5, .production_id = 50),
[788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 5, .production_id = 50),
[790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 5, .production_id = 51),
[792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 5, .production_id = 51),
[794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 90),
[796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 90),
[798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 17),
[800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 17),
[802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2),
[804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2),
[806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 7, .production_id = 74),
[808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 7, .production_id = 74),
[810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765),
[812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549),
[814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560),
[816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
[818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546),
[820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
[822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571),
[824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547),
[828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547),
[830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570),
[832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544),
[834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651),
[836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742),
[840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741),
[842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533),
[844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717),
[846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393),
[848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649),
[850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369),
[852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543),
[854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106),
[856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 106),
[858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37),
[860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 9, .production_id = 37),
[862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407),
[864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37),
[866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_definition_clause, 7, .production_id = 37),
[868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37),
[870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37),
[872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_at_clause, 6),
[874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_at_clause, 6),
[876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37),
[878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37),
[880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 10, .production_id = 115),
[882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 10, .production_id = 115),
[884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
[886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
[888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37),
[890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37),
[892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94),
[894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 94),
[896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 56),
[898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 6, .production_id = 56),
[900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4),
[902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4),
[904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10),
[906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10),
[908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6),
[910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6),
[912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32),
[914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32),
[916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body_stub, 1),
[918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body_stub, 1),
[920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 1),
[922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 1),
[924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1),
[926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1),
[928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7),
[930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7),
[932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33),
[934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33),
[936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 63),
[938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 63),
[940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19),
[942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19),
[944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536),
[946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6),
[948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6),
[950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 124),
[952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 124),
[954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65),
[956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 65),
[958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6),
[960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6),
[962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 61),
[964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 61),
[966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 95),
[968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 95),
[970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117),
[972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117),
[974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10),
[976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10),
[978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6),
[980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6),
[982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8),
[984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8),
[986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6),
[988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6),
[990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9),
[992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9),
[994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 61),
[996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 61),
[998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 77),
[1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 77),
[1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6),
[1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6),
[1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38),
[1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38),
[1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7),
[1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7),
[1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117),
[1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117),
[1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40),
[1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40),
[1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9),
[1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9),
[1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75),
[1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 75),
[1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58),
[1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 58),
[1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57),
[1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57),
[1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 105),
[1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 105),
[1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 56),
[1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 56),
[1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 69),
[1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 69),
[1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 6, .production_id = 63),
[1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 63),
[1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9),
[1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9),
[1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40),
[1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40),
[1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9),
[1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9),
[1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 55),
[1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 55),
[1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4),
[1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4),
[1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109),
[1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 109),
[1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91),
[1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 91),
[1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 6, .production_id = 61),
[1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 6, .production_id = 61),
[1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5),
[1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5),
[1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3),
[1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3),
[1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 54),
[1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 6, .production_id = 54),
[1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 6),
[1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 6),
[1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2),
[1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2),
[1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 73),
[1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 73),
[1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 107),
[1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 107),
[1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6),
[1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6),
[1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6),
[1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6),
[1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5),
[1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5),
[1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3),
[1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3),
[1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9),
[1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9),
[1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75),
[1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 75),
[1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 5),
[1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 5),
[1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4),
[1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4),
[1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6),
[1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6),
[1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31),
[1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31),
[1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3),
[1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3),
[1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 52),
[1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 52),
[1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58),
[1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 58),
[1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57),
[1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57),
[1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33),
[1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 33),
[1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 5),
[1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 5),
[1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7),
[1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7),
[1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4),
[1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4),
[1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4),
[1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4),
[1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 124),
[1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 124),
[1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9),
[1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9),
[1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 122),
[1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 122),
[1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 73),
[1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 73),
[1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 7),
[1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 7),
[1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 123),
[1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 123),
[1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32),
[1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 32),
[1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 55),
[1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 5, .production_id = 55),
[1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 92),
[1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 92),
[1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10),
[1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10),
[1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109),
[1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 109),
[1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 69),
[1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 69),
[1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 54),
[1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 5, .production_id = 54),
[1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8),
[1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8),
[1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 69),
[1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 69),
[1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 5),
[1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 5),
[1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 5),
[1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 5),
[1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2),
[1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2),
[1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66),
[1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 66),
[1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109),
[1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 109),
[1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5),
[1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5),
[1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117),
[1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117),
[1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10),
[1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10),
[1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31),
[1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31),
[1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7),
[1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7),
[1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 2),
[1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2),
[1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2),
[1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2),
[1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4),
[1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4),
[1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6),
[1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6),
[1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6),
[1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6),
[1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91),
[1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 91),
[1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 31),
[1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 31),
[1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7),
[1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7),
[1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109),
[1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 109),
[1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6),
[1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6),
[1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 7),
[1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 7),
[1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36),
[1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36),
[1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7),
[1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7),
[1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 5),
[1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 5),
[1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 117),
[1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 117),
[1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 52),
[1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 52),
[1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8),
[1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 8),
[1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5),
[1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5),
[1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 52),
[1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 52),
[1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23),
[1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23),
[1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 114),
[1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 114),
[1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8),
[1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8),
[1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2),
[1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2),
[1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 73),
[1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 73),
[1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36),
[1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36),
[1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2),
[1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2),
[1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6),
[1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6),
[1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8),
[1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8),
[1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65),
[1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65),
[1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9),
[1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9),
[1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 7),
[1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 7),
[1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3),
[1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3),
[1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3),
[1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3),
[1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 69),
[1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 69),
[1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9),
[1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9),
[1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 5),
[1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 5),
[1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 124),
[1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 124),
[1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 3),
[1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 3),
[1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11),
[1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 11),
[1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 124),
[1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 124),
[1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66),
[1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66),
[1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2),
[1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2),
[1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67),
[1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 67),
[1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4),
[1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4),
[1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 61),
[1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 61),
[1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 116),
[1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 116),
[1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11),
[1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11),
[1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19),
[1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19),
[1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4),
[1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4),
[1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 5),
[1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5),
[1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11),
[1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11),
[1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8),
[1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8),
[1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4),
[1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4),
[1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 61),
[1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 61),
[1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8),
[1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 8),
[1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67),
[1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67),
[1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 6),
[1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6),
[1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8),
[1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8),
[1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3),
[1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3),
[1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1),
[1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1),
[1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6),
[1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6),
[1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7),
[1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7),
[1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3),
[1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3),
[1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500),
[1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4),
[1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4),
[1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5),
[1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5),
[1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 30),
[1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 30),
[1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3),
[1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3),
[1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8),
[1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8),
[1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6),
[1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6),
[1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5),
[1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5),
[1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 16),
[1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 16),
[1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 15),
[1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 15),
[1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6),
[1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6),
[1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1),
[1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1),
[1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(85),
[1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6),
[1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481),
[1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483),
[1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 1, .production_id = 6),
[1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
[1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3),
[1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3),
[1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3),
[1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3),
[1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2),
[1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2),
[1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4),
[1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4),
[1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3),
[1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3),
[1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4),
[1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4),
[1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2),
[1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2),
[1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3),
[1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3),
[1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2),
[1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2),
[1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625),
[1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305),
[1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825),
[1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3),
[1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3),
[1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 84),
[1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 84),
[1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4),
[1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4),
[1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27),
[1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27),
[1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 104),
[1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 104),
[1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 53),
[1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 53),
[1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36),
[1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36),
[1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 36),
[1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 36),
[1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 69),
[1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 69),
[1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 104),
[1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 104),
[1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 53),
[1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 53),
[1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27),
[1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27),
[1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 84),
[1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 84),
[1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 69),
[1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 69),
[1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5),
[1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5),
[1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1),
[1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1),
[1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25),
[1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25),
[1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24),
[1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24),
[1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41),
[1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41),
[1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1),
[1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1),
[1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2),
[1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2),
[1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2),
[1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2),
[1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3),
[1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3),
[1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43),
[1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43),
[1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604),
[1746] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1),
[1750] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1391),
[1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10),
[1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10),
[1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(836),
[1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(836),
[1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10),
[1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10),
[1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836),
[1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836),
[1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4),
[1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4),
[1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3),
[1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3),
[1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4),
[1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4),
[1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537),
[1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 81),
[1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 81),
[1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42),
[1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42),
[1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1),
[1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1),
[1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1),
[1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391),
[1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3),
[1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3),
[1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2),
[1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2),
[1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109),
[1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583),
[1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318),
[1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976),
[1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494),
[1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957),
[1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881),
[1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661),
[1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880),
[1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663),
[1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105),
[1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978),
[1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460),
[1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907),
[1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090),
[1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8),
[1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8),
[1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26),
[1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26),
[1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8),
[1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8),
[1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8),
[1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8),
[1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2),
[1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2),
[1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(2013),
[1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059),
[1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662),
[1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213),
[1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085),
[1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2),
[1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2),
[1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837),
[1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837),
[1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11),
[1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11),
[1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1),
[1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1),
[1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3),
[1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3),
[1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2),
[1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2),
[1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(837),
[1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(837),
[1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749),
[1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747),
[1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743),
[1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740),
[1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283),
[1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292),
[1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739),
[1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801),
[1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152),
[1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144),
[1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455),
[1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140),
[1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521),
[1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520),
[1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522),
[1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540),
[1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2),
[1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2),
[1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030),
[1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936),
[1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1999),
[1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1),
[1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 18),
[1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763),
[1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763),
[1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1),
[1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440),
[1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928),
[1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999),
[1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353),
[1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485),
[1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792),
[1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790),
[1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438),
[1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514),
[1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864),
[1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1353),
[1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(769),
[1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2),
[1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2016),
[1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(792),
[1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(790),
[2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2014),
[2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1217),
[2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(2012),
[2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1807),
[2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1),
[2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
[2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417),
[2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711),
[2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740),
[2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696),
[2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698),
[2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(466),
[2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716),
[2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1),
[2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305),
[2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9),
[2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495),
[2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993),
[2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993),
[2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1),
[2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647),
[2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956),
[2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578),
[2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587),
[2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266),
[2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431),
[2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303),
[2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769),
[2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588),
[2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45),
[2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4),
[2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(769),
[2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2),
[2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(2016),
[2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(792),
[2089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(790),
[2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1769),
[2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1217),
[2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502),
[2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
[2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(769),
[2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2),
[2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2016),
[2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(792),
[2115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(790),
[2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2014),
[2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1217),
[2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2012),
[2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500),
[2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943),
[2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493),
[2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011),
[2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002),
[2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3),
[2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597),
[2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594),
[2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610),
[2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590),
[2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851),
[2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851),
[2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624),
[2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614),
[2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
[2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(814),
[2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981),
[2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981),
[2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(812),
[2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(811),
[2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1353),
[2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(660),
[2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2),
[2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(981),
[2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1981),
[2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(2012),
[2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863),
[2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863),
[2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2),
[2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(458),
[2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2),
[2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458),
[2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2),
[2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1),
[2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1),
[2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485),
[2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436),
[2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
[2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
[2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3),
[2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5),
[2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 9, .production_id = 5),
[2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4),
[2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 111),
[2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 8, .production_id = 111),
[2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3),
[2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971),
[2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971),
[2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880),
[2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146),
[2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429),
[2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5),
[2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 7, .production_id = 5),
[2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9),
[2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 111),
[2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnatprep_declarative_if_statement, 10, .production_id = 111),
[2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682),
[2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442),
[2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726),
[2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713),
[2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715),
[2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855),
[2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855),
[2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2),
[2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045),
[2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045),
[2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802),
[2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801),
[2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717),
[2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2),
[2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(301),
[2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2),
[2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(235),
[2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723),
[2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2),
[2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(236),
[2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
[2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480),
[2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800),
[2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3),
[2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870),
[2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870),
[2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3),
[2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974),
[2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975),
[2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473),
[2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804),
[2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804),
[2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433),
[2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832),
[2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023),
[2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803),
[2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35),
[2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613),
[2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783),
[2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783),
[2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914),
[2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914),
[2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781),
[2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781),
[2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515),
[2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834),
[2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006),
[2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774),
[2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21),
[2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681),
[2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975),
[2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925),
[2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925),
[2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996),
[2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694),
[2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793),
[2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792),
[2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685),
[2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399),
[2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2),
[2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2),
[2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1),
[2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(769),
[2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2),
[2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2016),
[2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2014),
[2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1217),
[2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2012),
[2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565),
[2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1045),
[2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1045),
[2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1177),
[2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2),
[2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964),
[2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964),
[2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1353),
[2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(769),
[2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2),
[2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(2012),
[2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450),
[2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854),
[2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854),
[2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784),
[2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782),
[2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780),
[2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491),
[2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955),
[2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025),
[2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543),
[2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543),
[2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
[2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929),
[2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868),
[2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2),
[2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4),
[2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992),
[2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360),
[2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972),
[2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056),
[2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18),
[2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022),
[2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012),
[2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421),
[2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869),
[2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869),
[2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051),
[2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3),
[2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044),
[2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054),
[2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054),
[2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858),
[2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858),
[2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817),
[2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052),
[2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
[2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3),
[2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3),
[2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3),
[2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795),
[2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795),
[2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028),
[2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046),
[2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3),
[2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032),
[2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3),
[2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6),
[2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991),
[2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049),
[2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016),
[2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430),
[2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910),
[2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910),
[2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782),
[2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020),
[2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3),
[2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1),
[2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998),
[2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986),
[2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065),
[2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862),
[2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862),
[2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778),
[2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864),
[2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864),
[2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777),
[2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893),
[2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893),
[2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007),
[2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3),
[2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031),
[2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1),
[2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1),
[2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948),
[2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
[2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951),
[2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1),
[2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1),
[2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826),
[2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954),
[2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153),
[2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953),
[2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949),
[2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926),
[2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779),
[2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912),
[2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857),
[2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867),
[2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866),
[2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 59),
[2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909),
[2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34),
[2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997),
[2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18),
[2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924),
[2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941),
[2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000),
[2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947),
[2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856),
[2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933),
[2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897),
[2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584),
[2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899),
[2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932),
[2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852),
[2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34),
[2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952),
[2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010),
[2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922),
[2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039),
[2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989),
[2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884),
[2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861),
[2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18),
[2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937),
[2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936),
[2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889),
[2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935),
[2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927),
[2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021),
[2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064),
[2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067),
[2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050),
[2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057),
[2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963),
[2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950),
[2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859),
[2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
[2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014),
[2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946),
[2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921),
[2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860),
[2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2),
[2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2),
[2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1),
[2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1),
[2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161),
[2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2),
[2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3),
[2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3),
[2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4),
[2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1),
[2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1),
[2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1),
[2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1),
[2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4),
[2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4),
[2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5),
[2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5),
[2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1),
[2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1),
[2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130),
[2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863),
[2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861),
[2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6),
[2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6),
[2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1130),
[2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2),
[2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1863),
[2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1861),
[2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5),
[2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2),
[2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34),
[2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 110),
[2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2),
[2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 97),
[2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 59),
[2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814),
[2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651),
[2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3),
[2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1814),
[2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942),
[2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1942),
[2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 60),
[2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877),
[2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(566),
[2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766),
[2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 76),
[2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1),
[2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775),
[2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911),
[2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902),
[2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4),
[2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4),
[2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112),
[2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112),
[2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 68),
[2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 68),
[2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100),
[2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 100),
[2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4),
[2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4),
[2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7),
[2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7),
[2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49),
[2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 49),
[2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627),
[2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99),
[2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 99),
[2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5),
[2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5),
[2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5),
[2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5),
[2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6),
[2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6),
[2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6),
[2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6),
[2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18),
[2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1571),
[2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752),
[2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4),
[2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4),
[2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5),
[2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5),
[2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7),
[2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7),
[2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86),
[2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86),
[2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34),
[2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1759),
[2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709),
[2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5),
[2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5),
[2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118),
[2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118),
[2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118),
[2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118),
[2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 59),
[2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112),
[2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112),
[2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5),
[2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5),
[2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112),
[2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112),
[2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1),
[2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1),
[2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7),
[2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7),
[2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99),
[2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 99),
[2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 68),
[2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 68),
[2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49),
[2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 49),
[2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6),
[2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6),
[2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49),
[2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 49),
[2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3),
[2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3),
[2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 68),
[2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 68),
[2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3),
[2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3),
[2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 59),
[2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 59), SHIFT(1875),
[2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712),
[2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784),
[2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86),
[2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86),
[2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2),
[2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86),
[2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86),
[2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34),
[2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6),
[3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6),
[3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85),
[3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85),
[3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118),
[3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118),
[3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6),
[3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6),
[3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961),
[3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807),
[3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894),
[3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891),
[3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008),
[3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906),
[3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532),
[3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844),
[3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785),
[3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1),
[3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8),
[3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12),
[3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11),
[3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10),
[3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
[3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
[3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4),
[3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4),
[3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 126),
[3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 126),
[3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9),
[3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2),
[3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46),
[3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46),
[3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1),
[3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1),
[3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793),
[3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
[3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901),
[3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
[3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
[3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
[3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
[3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1950),
[3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611),
[3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730),
[3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247),
[3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1),
[3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3),
[3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1247),
[3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2),
[3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3),
[3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315),
[3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527),
[3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665),
[3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077),
[3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200),
[3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788),
[3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712),
[3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075),
[3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623),
[3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919),
[3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439),
[3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1),
[3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855),
[3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257),
[3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865),
[3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
[3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518),
[3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013),
[3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959),
[3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 48),
[3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1),
[3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44),
[3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
[3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136),
[3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1),
[3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113),
[3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7),
[3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924),
[3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2),
[3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776),
[3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788),
[3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838),
[3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
[3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2),
[3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(251),
[3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942),
[3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413),
[3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796),
[3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806),
[3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3),
[3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5),
[3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1889),
[3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350),
[3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350),
[3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892),
[3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895),
[3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875),
[3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
[3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787),
[3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4),
[3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 78),
[3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353),
[3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885),
[3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607),
[3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688),
[3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2),
[3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
[3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896),
[3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467),
[3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422),
[3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558),
[3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209),
[3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167),
[3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
[3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 108),
[3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874),
[3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2),
[3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634),
[3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878),
[3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
[3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 96),
[3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36),
[3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(775),
[3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
[3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478),
[3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471),
[3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916),
[3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3),
[3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
[3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 62),
[3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39),
[3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
[3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381),
[3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773),
[3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675),
[3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821),
[3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667),
[3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732),
[3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3),
[3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1),
[3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768),
[3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
[3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5),
[3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770),
[3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2),
[3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(232),
[3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22),
[3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764),
[3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 71), SHIFT_REPEAT(245),
[3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 71),
[3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42),
[3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1243),
[3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720),
[3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723),
[3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829),
[3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670),
[3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670),
[3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531),
[3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 80), SHIFT_REPEAT(237),
[3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 80),
[3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4),
[3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2),
[3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2),
[3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34),
[3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2),
[3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(829),
[3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836),
[3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184),
[3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22),
[3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721),
[3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219),
[3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1),
[3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705),
[3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(106),
[3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2),
[3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22),
[3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1243),
[3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724),
[3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36),
[3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1089),
[3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727),
[3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908),
[3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649),
[3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1),
[3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7),
[3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1),
[3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(827),
[3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1243),
[3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718),
[3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2),
[3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42),
[3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326),
[3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(646),
[3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2),
[3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4),
[3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491),
[3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789),
[3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018),
[3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1958),
[3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358),
[3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656),
[3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1),
[3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3),
[3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(442),
[3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(618),
[3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(206),
[3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2),
[3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201),
[3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426),
[3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
[3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(103),
[3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2),
[3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633),
[3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(785),
[3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(223),
[3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278),
[3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(108),
[3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2),
[3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646),
[3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3),
[3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22),
[3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 69),
[3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6),
[3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(644),
[3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1157),
[3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755),
[3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920),
[3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281),
[3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2),
[3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2),
[3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759),
[3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3),
[3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915),
[3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582),
[3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298),
[3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918),
[3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626),
[3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581),
[3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569),
[3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2),
[3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2),
[3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(828),
[3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886),
[3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625),
[3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1900),
[3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920),
[3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 97),
[3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890),
[3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624),
[3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2),
[3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1),
[3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2),
[3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627),
[3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807),
[3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430),
[3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1102),
[3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743),
[3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760),
[3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1),
[3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268),
[3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36),
[3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540),
[3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 110),
[3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3),
[3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255),
[3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 59),
[3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3),
[3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240),
[3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587),
[3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442),
[3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1),
[3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689),
[3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2),
[3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3),
[3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5),
[3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733),
[3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999),
[3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1),
[3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(176),
[3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2),
[3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4),
[3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(178),
[3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2),
[3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5),
[3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2),
[3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523),
[3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5),
[3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72), SHIFT_REPEAT(319),
[3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 72),
[3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(187),
[3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2),
[3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
[3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2),
[3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
[3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366),
[3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989),
[3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988),
[3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1),
[3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669),
[3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
[3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18),
[3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2),
[3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3),
[3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 59),
[3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
[3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 76),
[3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3),
[3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21),
[3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668),
[3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170),
[3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120),
[3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983),
[3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982),
[3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2),
[3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1),
[3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22),
[3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7),
[3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2),
[3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1321),
[3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2),
[3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(689),
[3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2),
[3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
[3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701),
[3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614),
[3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
[3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507),
[3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2),
[3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905),
[3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5),
[3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4),
[3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1523),
[3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2),
[3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(984),
[3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2),
[3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42),
[3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4),
[3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
[3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839),
[3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
[3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984),
[3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005),
[3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
[3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1),
[3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321),
[3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1999),
[3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2),
[3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374),
[3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4),
[3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2),
[3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1),
[3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1),
[3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 87),
[3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1),
[3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22),
[3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455),
[3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
[3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4),
[3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35),
[3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
[3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1),
[3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2),
[3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307),
[3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36),
[3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404),
[3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34),
[3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
[3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375),
[3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5),
[3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1),
[3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
[3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
[3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4),
[3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1295),
[3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2),
[3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295),
[3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2),
[3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(710),
[3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2),
[3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882),
[3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257),
[3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2),
[3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1391),
[4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439),
[4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2),
[4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2),
[4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2),
[4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2),
[4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412),
[4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
[4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881),
[4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448),
[4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72), SHIFT_REPEAT(338),
[4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 72),
[4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2),
[4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
[4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34),
[4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
[4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2),
[4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1307),
[4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7),
[4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
[4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
[4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2),
[4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468),
[4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907),
[4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904),
[4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
[4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3),
[4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1),
[4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 60),
[4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1),
[4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(186),
[4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2),
[4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736),
[4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6),
[4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509),
[4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4),
[4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710),
[4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1),
[4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994),
[4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461),
[4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3),
[4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 59),
[4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
[4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871),
[4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533),
[4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738),
[4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888),
[4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
[4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3),
[4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(999),
[4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2),
[4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4),
[4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2),
[4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1),
[4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
[4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 87),
[4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392),
[4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18),
[4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561),
[4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2),
[4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(143),
[4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2),
[4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3),
[4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 72),
[4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2),
[4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 53),
[4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5),
[4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4),
[4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948),
[4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1),
[4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215),
[4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36),
[4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1),
[4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(443),
[4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762),
[4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613),
[4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636),
[4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7),
[4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638),
[4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 59),
[4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408),
[4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001),
[4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940),
[4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3),
[4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768),
[4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757),
[4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758),
[4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22),
[4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646),
[4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2),
[4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 69),
[4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36),
[4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 110),
[4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1),
[4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(456),
[4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117),
[4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068),
[4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993),
[4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928),
[4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7),
[4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3),
[4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776),
[4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1),
[4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1),
[4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655),
[4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 97),
[4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869),
[4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2),
[4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628),
[4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2),
[4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3),
[4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6),
[4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42),
[4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1),
[4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352),
[4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575),
[4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658),
[4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2),
[4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34),
[4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662),
[4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2),
[4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891),
[4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758),
[4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1),
[4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7),
[4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
[4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622),
[4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243),
[4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22),
[4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4),
[4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4),
[4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547),
[4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3),
[4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2),
[4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123),
[4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4),
[4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42),
[4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1951),
[4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3),
[4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4),
[4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693),
[4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725),
[4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007),
[4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934),
[4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3),
[4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720),
[4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750),
[4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
[4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42),
[4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 93),
[4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576),
[4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1),
[4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4),
[4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2),
[4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5),
[4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937),
[4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4),
[4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960),
[4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010),
[4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931),
[4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1),
[4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(524),
[4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
[4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706),
[4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4),
[4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 59),
[4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1),
[4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22),
[4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1),
[4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744),
[4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4),
[4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886),
[4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041),
[4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040),
[4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36),
[4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5),
[4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878),
[4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 79),
[4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4),
[4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546),
[4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
[4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4),
[4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719),
[4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
[4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34),
[4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133),
[4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3),
[4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594),
[4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835),
[4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735),
[4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1),
[4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3),
[4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554),
[4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3),
[4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835),
[4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060),
[4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7),
[4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42),
[4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994),
[4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704),
[4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2),
[4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559),
[4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6),
[4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3),
[4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560),
[4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722),
[4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604),
[4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727),
[4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615),
[4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730),
[4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 82),
[4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575),
[4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438),
[4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938),
[4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 83),
[4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428),
[4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
[4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
[4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639),
[4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382),
[4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
[4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421),
[4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193),
[4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203),
[4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
[4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497),
[4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748),
[4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746),
[4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900),
[4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490),
[4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883),
[4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356),
[4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365),
[4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20),
[4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728),
[4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338),
[4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386),
[4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
[4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602),
[4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603),
[4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786),
[4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798),
[4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876),
[4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427),
[4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
[4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619),
[4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616),
[4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873),
[4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887),
[4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608),
[4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775),
[4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606),
[4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778),
[4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605),
[4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599),
[4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781),
[4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492),
[4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597),
[4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786),
[4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787),
[4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903),
[4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432),
[4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822),
[4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819),
[4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780),
[4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327),
[4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472),
[4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260),
[4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3),
[4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467),
[4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
[4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377),
[4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473),
[4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645),
[4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656),
[4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 64),
[4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756),
[4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
[4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
[4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4),
[4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538),
[4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
[4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
[4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572),
[4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567),
[4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229),
[4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233),
[4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714),
[4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676),
[4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679),
[4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
[4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098),
[4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823),
[4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754),
[4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572),
[4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22),
[4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192),
[4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702),
[4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834),
[4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
[4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470),
[4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037),
[4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388),
[4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385),
[4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441),
[4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
[4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5),
[4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
[4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579),
[4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562),
[4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580),
[4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845),
[4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381),
[4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5),
[4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376),
[4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588),
[4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384),
[4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596),
[4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598),
[4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601),
[4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857),
[4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602),
[4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858),
[4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609),
[4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603),
[4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612),
[4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5),
[4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810),
[4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300),
[4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297),
[4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
[4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296),
[4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 98),
[4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141),
[4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
[4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628),
[4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764),
[4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477),
[4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879),
[4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650),
[4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 47),
[4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310),
[4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647),
[4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874),
[4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447),
[4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(189),
[4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3),
[4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919),
[4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
[4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
[4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563),
[4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913),
[4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884),
[4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659),
[4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664),
[4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665),
[4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378),
[4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772),
[4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890),
[4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671),
[4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634),
[4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591),
[4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672),
[4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475),
[4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484),
[4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426),
[4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469),
[4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535),
[4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741),
[4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498),
[4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959),
[4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342),
[4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732),
[4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479),
[4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789),
[4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701),
[4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471),
[4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
[4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
[4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
[4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677),
[4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905),
[5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844),
[5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507),
[5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165),
[5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913),
[5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302),
[5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301),
[5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725),
[5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
[5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728),
[5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731),
[5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
[5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799),
[5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
[5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885),
[5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751),
[5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476),
[5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038),
[5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
[5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607),
[5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932),
[5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406),
[5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586),
[5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120),
[5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5),
[5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366),
[5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1),
[5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419),
[5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833),
[5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589),
[5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584),
[5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938),
[5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202),
[5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207),
[5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
[5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872),
[5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422),
[5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112),
[5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652),
[5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206),
[5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487),
[5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361),
[5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707),
[5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1),
[5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20),
[5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1),
[5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526),
[5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299),
[5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816),
[5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
[5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425),
[5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443),
[5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379),
[5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443),
[5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314),
[5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466),
[5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967),
[5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829),
[5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832),
[5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242),
[5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847),
[5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413),
[5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457),
[5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
[5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617),
[5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
[5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423),
[5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228),
[5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
[5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279),
[5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394),
[5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979),
[5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
[5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482),
[5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917),
[5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486),
[5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387),
[5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3),
[5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939),
[5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895),
[5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808),
[5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394),
[5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805),
[5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945),
[5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230),
[5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015),
[5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402),
[5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678),
[5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5),
[5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351),
[5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915),
[5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36),
[5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392),
[5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922),
[5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968),
[5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
[5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344),
[5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595),
[5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923),
[5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336),
[5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962),
[5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337),
[5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208),
[5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017),
[5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497),
[5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496),
[5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464),
[5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737),
[5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731),
[5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2),
[5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951),
[5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457),
[5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
[5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
[5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481),
[5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440),
[5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569),
[5322] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963),
[5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930),
[5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135),
[5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402),
[5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978),
[5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019),
[5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368),
[5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_ada(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif