From fb54a00c16149cc92ae36866b85d6c57ce86eba1 Mon Sep 17 00:00:00 2001 From: Emmanuel Briot Date: Wed, 14 Dec 2022 12:08:24 +0100 Subject: [PATCH] Allow pragmas inside records --- grammar.js | 5 +- src/grammar.json | 4 + src/node-types.json | 4 + src/parser.c | 25447 +++++++++++++++++++------------------- test/corpus/pragmas.txt | 62 + 5 files changed, 12803 insertions(+), 12719 deletions(-) create mode 100644 test/corpus/pragmas.txt diff --git a/grammar.js b/grammar.js index 13a49dd..dd28bb9 100644 --- a/grammar.js +++ b/grammar.js @@ -1054,8 +1054,9 @@ module.exports = grammar({ _component_item: $ => choice( $.component_declaration, $._aspect_clause, + $.pragma_g, // not in RM ), - component_declaration: $ => seq( + component_declaration: $ => seq( // RM 3.8 $._defining_identifier_list, ':', $.component_definition, @@ -1842,7 +1843,7 @@ module.exports = grammar({ ';', $.parameter_specification, ), - pragma_g: $ => seq( + pragma_g: $ => seq( // RM 2.8 reservedWord('pragma'), $.identifier, optional(seq( diff --git a/src/grammar.json b/src/grammar.json index 2896c75..54d73a2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5928,6 +5928,10 @@ { "type": "SYMBOL", "name": "_aspect_clause" + }, + { + "type": "SYMBOL", + "name": "pragma_g" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 1f62fed..d69bb09 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1875,6 +1875,10 @@ "type": "enumeration_representation_clause", "named": true }, + { + "type": "pragma_g", + "named": true + }, { "type": "record_representation_clause", "named": true diff --git a/src/parser.c b/src/parser.c index 1526592..f912957 100644 --- a/src/parser.c +++ b/src/parser.c @@ -4176,7 +4176,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [498] = 498, [499] = 499, [500] = 500, - [501] = 493, + [501] = 495, [502] = 502, [503] = 503, [504] = 504, @@ -4200,9 +4200,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [522] = 522, [523] = 523, [524] = 524, - [525] = 525, + [525] = 263, [526] = 526, - [527] = 263, + [527] = 527, [528] = 528, [529] = 529, [530] = 530, @@ -4225,13 +4225,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [547] = 547, [548] = 548, [549] = 549, - [550] = 550, + [550] = 263, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 263, + [556] = 556, [557] = 557, [558] = 558, [559] = 559, @@ -4583,8 +4583,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [905] = 905, [906] = 906, [907] = 907, - [908] = 908, - [909] = 900, + [908] = 900, + [909] = 909, [910] = 910, [911] = 911, [912] = 912, @@ -8001,9 +8001,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [481] = {.lex_state = 27}, [482] = {.lex_state = 27}, [483] = {.lex_state = 27}, - [484] = {.lex_state = 27}, + [484] = {.lex_state = 10}, [485] = {.lex_state = 27}, - [486] = {.lex_state = 10}, + [486] = {.lex_state = 27}, [487] = {.lex_state = 27}, [488] = {.lex_state = 10}, [489] = {.lex_state = 10}, @@ -8021,12 +8021,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [501] = {.lex_state = 10}, [502] = {.lex_state = 10}, [503] = {.lex_state = 10}, - [504] = {.lex_state = 27}, - [505] = {.lex_state = 10}, + [504] = {.lex_state = 10}, + [505] = {.lex_state = 27}, [506] = {.lex_state = 10}, - [507] = {.lex_state = 27}, + [507] = {.lex_state = 10}, [508] = {.lex_state = 27}, - [509] = {.lex_state = 10}, + [509] = {.lex_state = 27}, [510] = {.lex_state = 27}, [511] = {.lex_state = 27}, [512] = {.lex_state = 11}, @@ -8042,11 +8042,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [522] = {.lex_state = 27}, [523] = {.lex_state = 27}, [524] = {.lex_state = 27}, - [525] = {.lex_state = 27}, + [525] = {.lex_state = 10}, [526] = {.lex_state = 27}, - [527] = {.lex_state = 10}, - [528] = {.lex_state = 10}, - [529] = {.lex_state = 7}, + [527] = {.lex_state = 27}, + [528] = {.lex_state = 7}, + [529] = {.lex_state = 10}, [530] = {.lex_state = 27}, [531] = {.lex_state = 11}, [532] = {.lex_state = 10}, @@ -8054,8 +8054,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [534] = {.lex_state = 10}, [535] = {.lex_state = 10}, [536] = {.lex_state = 27}, - [537] = {.lex_state = 10}, - [538] = {.lex_state = 27}, + [537] = {.lex_state = 27}, + [538] = {.lex_state = 10}, [539] = {.lex_state = 27}, [540] = {.lex_state = 27}, [541] = {.lex_state = 10}, @@ -8064,16 +8064,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [544] = {.lex_state = 27}, [545] = {.lex_state = 27}, [546] = {.lex_state = 27}, - [547] = {.lex_state = 10}, - [548] = {.lex_state = 27}, + [547] = {.lex_state = 27}, + [548] = {.lex_state = 10}, [549] = {.lex_state = 27}, - [550] = {.lex_state = 27}, + [550] = {.lex_state = 10}, [551] = {.lex_state = 27}, [552] = {.lex_state = 27}, [553] = {.lex_state = 27}, - [554] = {.lex_state = 27}, - [555] = {.lex_state = 10}, - [556] = {.lex_state = 10}, + [554] = {.lex_state = 10}, + [555] = {.lex_state = 27}, + [556] = {.lex_state = 27}, [557] = {.lex_state = 11}, [558] = {.lex_state = 27}, [559] = {.lex_state = 27}, @@ -8116,12 +8116,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [596] = {.lex_state = 27}, [597] = {.lex_state = 27}, [598] = {.lex_state = 27}, - [599] = {.lex_state = 27}, + [599] = {.lex_state = 11}, [600] = {.lex_state = 27}, [601] = {.lex_state = 27}, [602] = {.lex_state = 27}, [603] = {.lex_state = 27}, - [604] = {.lex_state = 11}, + [604] = {.lex_state = 27}, [605] = {.lex_state = 27}, [606] = {.lex_state = 27}, [607] = {.lex_state = 27}, @@ -8129,12 +8129,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [609] = {.lex_state = 27}, [610] = {.lex_state = 27}, [611] = {.lex_state = 27}, - [612] = {.lex_state = 10}, + [612] = {.lex_state = 27}, [613] = {.lex_state = 27}, - [614] = {.lex_state = 27}, - [615] = {.lex_state = 10}, + [614] = {.lex_state = 10}, + [615] = {.lex_state = 27}, [616] = {.lex_state = 27}, - [617] = {.lex_state = 27}, + [617] = {.lex_state = 10}, [618] = {.lex_state = 27}, [619] = {.lex_state = 27}, [620] = {.lex_state = 27}, @@ -8213,18 +8213,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 27}, [694] = {.lex_state = 27}, [695] = {.lex_state = 27}, - [696] = {.lex_state = 11}, - [697] = {.lex_state = 10}, - [698] = {.lex_state = 27}, + [696] = {.lex_state = 27}, + [697] = {.lex_state = 11}, + [698] = {.lex_state = 10}, [699] = {.lex_state = 27}, [700] = {.lex_state = 27}, [701] = {.lex_state = 27}, [702] = {.lex_state = 27}, [703] = {.lex_state = 27}, [704] = {.lex_state = 27}, - [705] = {.lex_state = 11}, + [705] = {.lex_state = 27}, [706] = {.lex_state = 11}, - [707] = {.lex_state = 27}, + [707] = {.lex_state = 11}, [708] = {.lex_state = 27}, [709] = {.lex_state = 27}, [710] = {.lex_state = 27}, @@ -8250,8 +8250,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [730] = {.lex_state = 27}, [731] = {.lex_state = 11}, [732] = {.lex_state = 27}, - [733] = {.lex_state = 27}, - [734] = {.lex_state = 11}, + [733] = {.lex_state = 11}, + [734] = {.lex_state = 27}, [735] = {.lex_state = 27}, [736] = {.lex_state = 27}, [737] = {.lex_state = 27}, @@ -8268,13 +8268,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [748] = {.lex_state = 27}, [749] = {.lex_state = 27}, [750] = {.lex_state = 27}, - [751] = {.lex_state = 0}, + [751] = {.lex_state = 27}, [752] = {.lex_state = 27}, [753] = {.lex_state = 27}, [754] = {.lex_state = 27}, - [755] = {.lex_state = 27}, + [755] = {.lex_state = 0}, [756] = {.lex_state = 27}, - [757] = {.lex_state = 27}, + [757] = {.lex_state = 0}, [758] = {.lex_state = 27}, [759] = {.lex_state = 27}, [760] = {.lex_state = 27}, @@ -8300,13 +8300,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [780] = {.lex_state = 27}, [781] = {.lex_state = 27}, [782] = {.lex_state = 27}, - [783] = {.lex_state = 10}, + [783] = {.lex_state = 27}, [784] = {.lex_state = 27}, [785] = {.lex_state = 27}, [786] = {.lex_state = 27}, [787] = {.lex_state = 27}, [788] = {.lex_state = 27}, - [789] = {.lex_state = 27}, + [789] = {.lex_state = 10}, [790] = {.lex_state = 27}, [791] = {.lex_state = 27}, [792] = {.lex_state = 27}, @@ -8316,7 +8316,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [796] = {.lex_state = 27}, [797] = {.lex_state = 27}, [798] = {.lex_state = 27}, - [799] = {.lex_state = 0}, + [799] = {.lex_state = 27}, [800] = {.lex_state = 27}, [801] = {.lex_state = 27}, [802] = {.lex_state = 27}, @@ -8345,14 +8345,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [825] = {.lex_state = 27}, [826] = {.lex_state = 27}, [827] = {.lex_state = 27}, - [828] = {.lex_state = 11}, + [828] = {.lex_state = 27}, [829] = {.lex_state = 11}, - [830] = {.lex_state = 11}, - [831] = {.lex_state = 27}, - [832] = {.lex_state = 27}, + [830] = {.lex_state = 27}, + [831] = {.lex_state = 11}, + [832] = {.lex_state = 11}, [833] = {.lex_state = 27}, - [834] = {.lex_state = 11}, - [835] = {.lex_state = 27}, + [834] = {.lex_state = 27}, + [835] = {.lex_state = 11}, [836] = {.lex_state = 27}, [837] = {.lex_state = 11}, [838] = {.lex_state = 11}, @@ -8386,19 +8386,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [866] = {.lex_state = 11}, [867] = {.lex_state = 11}, [868] = {.lex_state = 27}, - [869] = {.lex_state = 10}, + [869] = {.lex_state = 11}, [870] = {.lex_state = 27}, [871] = {.lex_state = 27}, - [872] = {.lex_state = 11}, + [872] = {.lex_state = 10}, [873] = {.lex_state = 27}, [874] = {.lex_state = 27}, [875] = {.lex_state = 27}, [876] = {.lex_state = 27}, [877] = {.lex_state = 27}, [878] = {.lex_state = 27}, - [879] = {.lex_state = 27}, + [879] = {.lex_state = 11}, [880] = {.lex_state = 27}, - [881] = {.lex_state = 11}, + [881] = {.lex_state = 27}, [882] = {.lex_state = 27}, [883] = {.lex_state = 11}, [884] = {.lex_state = 27}, @@ -8413,8 +8413,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [893] = {.lex_state = 27}, [894] = {.lex_state = 27}, [895] = {.lex_state = 11}, - [896] = {.lex_state = 10}, - [897] = {.lex_state = 27}, + [896] = {.lex_state = 27}, + [897] = {.lex_state = 10}, [898] = {.lex_state = 27}, [899] = {.lex_state = 27}, [900] = {.lex_state = 0}, @@ -8423,10 +8423,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 11}, [904] = {.lex_state = 11}, [905] = {.lex_state = 10}, - [906] = {.lex_state = 27}, + [906] = {.lex_state = 11}, [907] = {.lex_state = 11}, - [908] = {.lex_state = 11}, - [909] = {.lex_state = 10}, + [908] = {.lex_state = 10}, + [909] = {.lex_state = 11}, [910] = {.lex_state = 11}, [911] = {.lex_state = 11}, [912] = {.lex_state = 11}, @@ -8437,18 +8437,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [917] = {.lex_state = 11}, [918] = {.lex_state = 11}, [919] = {.lex_state = 27}, - [920] = {.lex_state = 11}, + [920] = {.lex_state = 27}, [921] = {.lex_state = 27}, [922] = {.lex_state = 11}, - [923] = {.lex_state = 27}, + [923] = {.lex_state = 11}, [924] = {.lex_state = 11}, [925] = {.lex_state = 27}, - [926] = {.lex_state = 27}, + [926] = {.lex_state = 11}, [927] = {.lex_state = 11}, - [928] = {.lex_state = 11}, + [928] = {.lex_state = 27}, [929] = {.lex_state = 27}, [930] = {.lex_state = 11}, - [931] = {.lex_state = 11}, + [931] = {.lex_state = 27}, [932] = {.lex_state = 27}, [933] = {.lex_state = 27}, [934] = {.lex_state = 27}, @@ -9609,92 +9609,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(1932), [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(3), - [sym__declarative_item] = STATE(487), - [sym__basic_declarative_item] = STATE(487), - [sym__basic_declaration] = STATE(487), - [sym__package_declaration] = STATE(487), + [sym__declarative_item] = STATE(485), + [sym__basic_declarative_item] = STATE(485), + [sym__basic_declaration] = STATE(485), + [sym__package_declaration] = STATE(485), [sym_package_specification] = STATE(1931), - [sym_with_clause] = STATE(487), - [sym_use_clause] = STATE(487), - [sym_subunit] = STATE(487), - [sym__proper_body] = STATE(487), - [sym_subprogram_body] = STATE(487), - [sym_package_body] = STATE(487), - [sym__type_declaration] = STATE(487), - [sym_full_type_declaration] = STATE(487), - [sym_private_type_declaration] = STATE(487), - [sym_private_extension_declaration] = STATE(487), - [sym_incomplete_type_declaration] = STATE(487), - [sym__aspect_clause] = STATE(487), - [sym_at_clause] = STATE(487), - [sym_attribute_definition_clause] = STATE(487), - [sym_body_stub] = STATE(487), + [sym_with_clause] = STATE(485), + [sym_use_clause] = STATE(485), + [sym_subunit] = STATE(485), + [sym__proper_body] = STATE(485), + [sym_subprogram_body] = STATE(485), + [sym_package_body] = STATE(485), + [sym__type_declaration] = STATE(485), + [sym_full_type_declaration] = STATE(485), + [sym_private_type_declaration] = STATE(485), + [sym_private_extension_declaration] = STATE(485), + [sym_incomplete_type_declaration] = STATE(485), + [sym__aspect_clause] = STATE(485), + [sym_at_clause] = STATE(485), + [sym_attribute_definition_clause] = STATE(485), + [sym_body_stub] = STATE(485), [sym_subprogram_body_stub] = STATE(420), [sym_package_body_stub] = STATE(420), - [sym_task_body] = STATE(487), + [sym_task_body] = STATE(485), [sym_task_body_stub] = STATE(420), [sym_protected_type_declaration] = STATE(283), [sym_single_protected_declaration] = STATE(347), - [sym_protected_body] = STATE(487), + [sym_protected_body] = STATE(485), [sym_protected_body_stub] = STATE(420), - [sym_entry_declaration] = STATE(487), - [sym_enumeration_representation_clause] = STATE(487), - [sym_exception_declaration] = STATE(487), + [sym_entry_declaration] = STATE(485), + [sym_enumeration_representation_clause] = STATE(485), + [sym_exception_declaration] = STATE(485), [sym_function_specification] = STATE(1103), - [sym__generic_declaration] = STATE(487), - [sym_generic_formal_part] = STATE(906), - [sym_generic_subprogram_declaration] = STATE(487), - [sym_generic_package_declaration] = STATE(487), - [sym_generic_instantiation] = STATE(487), + [sym__generic_declaration] = STATE(485), + [sym_generic_formal_part] = STATE(928), + [sym_generic_subprogram_declaration] = STATE(485), + [sym_generic_package_declaration] = STATE(485), + [sym_generic_instantiation] = STATE(485), [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(487), - [sym_null_statement] = STATE(487), - [sym_number_declaration] = STATE(487), - [sym_object_declaration] = STATE(487), + [sym_null_procedure_declaration] = STATE(485), + [sym_null_statement] = STATE(485), + [sym_number_declaration] = STATE(485), + [sym_object_declaration] = STATE(485), [sym_single_task_declaration] = STATE(347), [sym_task_type_declaration] = STATE(283), [sym_overriding_indicator] = STATE(958), - [sym_pragma_g] = STATE(487), + [sym_pragma_g] = STATE(485), [sym_procedure_specification] = STATE(1105), - [sym_record_representation_clause] = STATE(487), - [sym__renaming_declaration] = STATE(487), - [sym_object_renaming_declaration] = STATE(487), - [sym_exception_renaming_declaration] = STATE(487), - [sym_package_renaming_declaration] = STATE(487), - [sym_subprogram_renaming_declaration] = STATE(487), - [sym_generic_renaming_declaration] = STATE(487), - [sym__simple_statement] = STATE(487), - [sym__statement] = STATE(487), - [sym__compound_statement] = STATE(487), - [sym__select_statement] = STATE(487), - [sym_asynchronous_select] = STATE(487), - [sym_conditional_entry_call] = STATE(487), - [sym_timed_entry_call] = STATE(487), - [sym_selective_accept] = STATE(487), - [sym_abort_statement] = STATE(487), - [sym_requeue_statement] = STATE(487), - [sym_accept_statement] = STATE(487), - [sym_case_statement] = STATE(487), - [sym_block_statement] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_exit_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym__delay_statement] = STATE(487), - [sym_delay_until_statement] = STATE(487), - [sym_delay_relative_statement] = STATE(487), - [sym_simple_return_statement] = STATE(487), - [sym_extended_return_statement] = STATE(487), - [sym_procedure_call_statement] = STATE(487), + [sym_record_representation_clause] = STATE(485), + [sym__renaming_declaration] = STATE(485), + [sym_object_renaming_declaration] = STATE(485), + [sym_exception_renaming_declaration] = STATE(485), + [sym_package_renaming_declaration] = STATE(485), + [sym_subprogram_renaming_declaration] = STATE(485), + [sym_generic_renaming_declaration] = STATE(485), + [sym__simple_statement] = STATE(485), + [sym__statement] = STATE(485), + [sym__compound_statement] = STATE(485), + [sym__select_statement] = STATE(485), + [sym_asynchronous_select] = STATE(485), + [sym_conditional_entry_call] = STATE(485), + [sym_timed_entry_call] = STATE(485), + [sym_selective_accept] = STATE(485), + [sym_abort_statement] = STATE(485), + [sym_requeue_statement] = STATE(485), + [sym_accept_statement] = STATE(485), + [sym_case_statement] = STATE(485), + [sym_block_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym__delay_statement] = STATE(485), + [sym_delay_until_statement] = STATE(485), + [sym_delay_relative_statement] = STATE(485), + [sym_simple_return_statement] = STATE(485), + [sym_extended_return_statement] = STATE(485), + [sym_procedure_call_statement] = STATE(485), [sym_function_call] = STATE(956), - [sym_raise_statement] = STATE(487), - [sym_loop_statement] = STATE(487), + [sym_raise_statement] = STATE(485), + [sym_loop_statement] = STATE(485), [sym_iteration_scheme] = STATE(1923), - [sym_assignment_statement] = STATE(487), - [sym_subprogram_declaration] = STATE(487), - [sym_expression_function_declaration] = STATE(487), + [sym_assignment_statement] = STATE(485), + [sym_subprogram_declaration] = STATE(485), + [sym_expression_function_declaration] = STATE(485), [sym__subprogram_specification] = STATE(993), - [sym_subtype_declaration] = STATE(487), + [sym_subtype_declaration] = STATE(485), [aux_sym_compilation_repeat1] = STATE(3), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(5), @@ -9750,92 +9750,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(1932), [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(487), - [sym__basic_declarative_item] = STATE(487), - [sym__basic_declaration] = STATE(487), - [sym__package_declaration] = STATE(487), + [sym__declarative_item] = STATE(485), + [sym__basic_declarative_item] = STATE(485), + [sym__basic_declaration] = STATE(485), + [sym__package_declaration] = STATE(485), [sym_package_specification] = STATE(1931), - [sym_with_clause] = STATE(487), - [sym_use_clause] = STATE(487), - [sym_subunit] = STATE(487), - [sym__proper_body] = STATE(487), - [sym_subprogram_body] = STATE(487), - [sym_package_body] = STATE(487), - [sym__type_declaration] = STATE(487), - [sym_full_type_declaration] = STATE(487), - [sym_private_type_declaration] = STATE(487), - [sym_private_extension_declaration] = STATE(487), - [sym_incomplete_type_declaration] = STATE(487), - [sym__aspect_clause] = STATE(487), - [sym_at_clause] = STATE(487), - [sym_attribute_definition_clause] = STATE(487), - [sym_body_stub] = STATE(487), + [sym_with_clause] = STATE(485), + [sym_use_clause] = STATE(485), + [sym_subunit] = STATE(485), + [sym__proper_body] = STATE(485), + [sym_subprogram_body] = STATE(485), + [sym_package_body] = STATE(485), + [sym__type_declaration] = STATE(485), + [sym_full_type_declaration] = STATE(485), + [sym_private_type_declaration] = STATE(485), + [sym_private_extension_declaration] = STATE(485), + [sym_incomplete_type_declaration] = STATE(485), + [sym__aspect_clause] = STATE(485), + [sym_at_clause] = STATE(485), + [sym_attribute_definition_clause] = STATE(485), + [sym_body_stub] = STATE(485), [sym_subprogram_body_stub] = STATE(420), [sym_package_body_stub] = STATE(420), - [sym_task_body] = STATE(487), + [sym_task_body] = STATE(485), [sym_task_body_stub] = STATE(420), [sym_protected_type_declaration] = STATE(283), [sym_single_protected_declaration] = STATE(347), - [sym_protected_body] = STATE(487), + [sym_protected_body] = STATE(485), [sym_protected_body_stub] = STATE(420), - [sym_entry_declaration] = STATE(487), - [sym_enumeration_representation_clause] = STATE(487), - [sym_exception_declaration] = STATE(487), + [sym_entry_declaration] = STATE(485), + [sym_enumeration_representation_clause] = STATE(485), + [sym_exception_declaration] = STATE(485), [sym_function_specification] = STATE(1103), - [sym__generic_declaration] = STATE(487), - [sym_generic_formal_part] = STATE(906), - [sym_generic_subprogram_declaration] = STATE(487), - [sym_generic_package_declaration] = STATE(487), - [sym_generic_instantiation] = STATE(487), + [sym__generic_declaration] = STATE(485), + [sym_generic_formal_part] = STATE(928), + [sym_generic_subprogram_declaration] = STATE(485), + [sym_generic_package_declaration] = STATE(485), + [sym_generic_instantiation] = STATE(485), [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(487), - [sym_null_statement] = STATE(487), - [sym_number_declaration] = STATE(487), - [sym_object_declaration] = STATE(487), + [sym_null_procedure_declaration] = STATE(485), + [sym_null_statement] = STATE(485), + [sym_number_declaration] = STATE(485), + [sym_object_declaration] = STATE(485), [sym_single_task_declaration] = STATE(347), [sym_task_type_declaration] = STATE(283), [sym_overriding_indicator] = STATE(958), - [sym_pragma_g] = STATE(487), + [sym_pragma_g] = STATE(485), [sym_procedure_specification] = STATE(1105), - [sym_record_representation_clause] = STATE(487), - [sym__renaming_declaration] = STATE(487), - [sym_object_renaming_declaration] = STATE(487), - [sym_exception_renaming_declaration] = STATE(487), - [sym_package_renaming_declaration] = STATE(487), - [sym_subprogram_renaming_declaration] = STATE(487), - [sym_generic_renaming_declaration] = STATE(487), - [sym__simple_statement] = STATE(487), - [sym__statement] = STATE(487), - [sym__compound_statement] = STATE(487), - [sym__select_statement] = STATE(487), - [sym_asynchronous_select] = STATE(487), - [sym_conditional_entry_call] = STATE(487), - [sym_timed_entry_call] = STATE(487), - [sym_selective_accept] = STATE(487), - [sym_abort_statement] = STATE(487), - [sym_requeue_statement] = STATE(487), - [sym_accept_statement] = STATE(487), - [sym_case_statement] = STATE(487), - [sym_block_statement] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_exit_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym__delay_statement] = STATE(487), - [sym_delay_until_statement] = STATE(487), - [sym_delay_relative_statement] = STATE(487), - [sym_simple_return_statement] = STATE(487), - [sym_extended_return_statement] = STATE(487), - [sym_procedure_call_statement] = STATE(487), + [sym_record_representation_clause] = STATE(485), + [sym__renaming_declaration] = STATE(485), + [sym_object_renaming_declaration] = STATE(485), + [sym_exception_renaming_declaration] = STATE(485), + [sym_package_renaming_declaration] = STATE(485), + [sym_subprogram_renaming_declaration] = STATE(485), + [sym_generic_renaming_declaration] = STATE(485), + [sym__simple_statement] = STATE(485), + [sym__statement] = STATE(485), + [sym__compound_statement] = STATE(485), + [sym__select_statement] = STATE(485), + [sym_asynchronous_select] = STATE(485), + [sym_conditional_entry_call] = STATE(485), + [sym_timed_entry_call] = STATE(485), + [sym_selective_accept] = STATE(485), + [sym_abort_statement] = STATE(485), + [sym_requeue_statement] = STATE(485), + [sym_accept_statement] = STATE(485), + [sym_case_statement] = STATE(485), + [sym_block_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym__delay_statement] = STATE(485), + [sym_delay_until_statement] = STATE(485), + [sym_delay_relative_statement] = STATE(485), + [sym_simple_return_statement] = STATE(485), + [sym_extended_return_statement] = STATE(485), + [sym_procedure_call_statement] = STATE(485), [sym_function_call] = STATE(956), - [sym_raise_statement] = STATE(487), - [sym_loop_statement] = STATE(487), + [sym_raise_statement] = STATE(485), + [sym_loop_statement] = STATE(485), [sym_iteration_scheme] = STATE(1923), - [sym_assignment_statement] = STATE(487), - [sym_subprogram_declaration] = STATE(487), - [sym_expression_function_declaration] = STATE(487), + [sym_assignment_statement] = STATE(485), + [sym_subprogram_declaration] = STATE(485), + [sym_expression_function_declaration] = STATE(485), [sym__subprogram_specification] = STATE(993), - [sym_subtype_declaration] = STATE(487), + [sym_subtype_declaration] = STATE(485), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(83), @@ -9891,92 +9891,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(1932), [sym_qualified_expression] = STATE(1054), [sym_compilation_unit] = STATE(2), - [sym__declarative_item] = STATE(487), - [sym__basic_declarative_item] = STATE(487), - [sym__basic_declaration] = STATE(487), - [sym__package_declaration] = STATE(487), + [sym__declarative_item] = STATE(485), + [sym__basic_declarative_item] = STATE(485), + [sym__basic_declaration] = STATE(485), + [sym__package_declaration] = STATE(485), [sym_package_specification] = STATE(1931), - [sym_with_clause] = STATE(487), - [sym_use_clause] = STATE(487), - [sym_subunit] = STATE(487), - [sym__proper_body] = STATE(487), - [sym_subprogram_body] = STATE(487), - [sym_package_body] = STATE(487), - [sym__type_declaration] = STATE(487), - [sym_full_type_declaration] = STATE(487), - [sym_private_type_declaration] = STATE(487), - [sym_private_extension_declaration] = STATE(487), - [sym_incomplete_type_declaration] = STATE(487), - [sym__aspect_clause] = STATE(487), - [sym_at_clause] = STATE(487), - [sym_attribute_definition_clause] = STATE(487), - [sym_body_stub] = STATE(487), + [sym_with_clause] = STATE(485), + [sym_use_clause] = STATE(485), + [sym_subunit] = STATE(485), + [sym__proper_body] = STATE(485), + [sym_subprogram_body] = STATE(485), + [sym_package_body] = STATE(485), + [sym__type_declaration] = STATE(485), + [sym_full_type_declaration] = STATE(485), + [sym_private_type_declaration] = STATE(485), + [sym_private_extension_declaration] = STATE(485), + [sym_incomplete_type_declaration] = STATE(485), + [sym__aspect_clause] = STATE(485), + [sym_at_clause] = STATE(485), + [sym_attribute_definition_clause] = STATE(485), + [sym_body_stub] = STATE(485), [sym_subprogram_body_stub] = STATE(420), [sym_package_body_stub] = STATE(420), - [sym_task_body] = STATE(487), + [sym_task_body] = STATE(485), [sym_task_body_stub] = STATE(420), [sym_protected_type_declaration] = STATE(283), [sym_single_protected_declaration] = STATE(347), - [sym_protected_body] = STATE(487), + [sym_protected_body] = STATE(485), [sym_protected_body_stub] = STATE(420), - [sym_entry_declaration] = STATE(487), - [sym_enumeration_representation_clause] = STATE(487), - [sym_exception_declaration] = STATE(487), + [sym_entry_declaration] = STATE(485), + [sym_enumeration_representation_clause] = STATE(485), + [sym_exception_declaration] = STATE(485), [sym_function_specification] = STATE(1103), - [sym__generic_declaration] = STATE(487), - [sym_generic_formal_part] = STATE(906), - [sym_generic_subprogram_declaration] = STATE(487), - [sym_generic_package_declaration] = STATE(487), - [sym_generic_instantiation] = STATE(487), + [sym__generic_declaration] = STATE(485), + [sym_generic_formal_part] = STATE(928), + [sym_generic_subprogram_declaration] = STATE(485), + [sym_generic_package_declaration] = STATE(485), + [sym_generic_instantiation] = STATE(485), [sym_loop_label] = STATE(966), [sym_label] = STATE(75), - [sym_null_procedure_declaration] = STATE(487), - [sym_null_statement] = STATE(487), - [sym_number_declaration] = STATE(487), - [sym_object_declaration] = STATE(487), + [sym_null_procedure_declaration] = STATE(485), + [sym_null_statement] = STATE(485), + [sym_number_declaration] = STATE(485), + [sym_object_declaration] = STATE(485), [sym_single_task_declaration] = STATE(347), [sym_task_type_declaration] = STATE(283), [sym_overriding_indicator] = STATE(958), - [sym_pragma_g] = STATE(487), + [sym_pragma_g] = STATE(485), [sym_procedure_specification] = STATE(1105), - [sym_record_representation_clause] = STATE(487), - [sym__renaming_declaration] = STATE(487), - [sym_object_renaming_declaration] = STATE(487), - [sym_exception_renaming_declaration] = STATE(487), - [sym_package_renaming_declaration] = STATE(487), - [sym_subprogram_renaming_declaration] = STATE(487), - [sym_generic_renaming_declaration] = STATE(487), - [sym__simple_statement] = STATE(487), - [sym__statement] = STATE(487), - [sym__compound_statement] = STATE(487), - [sym__select_statement] = STATE(487), - [sym_asynchronous_select] = STATE(487), - [sym_conditional_entry_call] = STATE(487), - [sym_timed_entry_call] = STATE(487), - [sym_selective_accept] = STATE(487), - [sym_abort_statement] = STATE(487), - [sym_requeue_statement] = STATE(487), - [sym_accept_statement] = STATE(487), - [sym_case_statement] = STATE(487), - [sym_block_statement] = STATE(487), - [sym_if_statement] = STATE(487), - [sym_exit_statement] = STATE(487), - [sym_goto_statement] = STATE(487), - [sym__delay_statement] = STATE(487), - [sym_delay_until_statement] = STATE(487), - [sym_delay_relative_statement] = STATE(487), - [sym_simple_return_statement] = STATE(487), - [sym_extended_return_statement] = STATE(487), - [sym_procedure_call_statement] = STATE(487), + [sym_record_representation_clause] = STATE(485), + [sym__renaming_declaration] = STATE(485), + [sym_object_renaming_declaration] = STATE(485), + [sym_exception_renaming_declaration] = STATE(485), + [sym_package_renaming_declaration] = STATE(485), + [sym_subprogram_renaming_declaration] = STATE(485), + [sym_generic_renaming_declaration] = STATE(485), + [sym__simple_statement] = STATE(485), + [sym__statement] = STATE(485), + [sym__compound_statement] = STATE(485), + [sym__select_statement] = STATE(485), + [sym_asynchronous_select] = STATE(485), + [sym_conditional_entry_call] = STATE(485), + [sym_timed_entry_call] = STATE(485), + [sym_selective_accept] = STATE(485), + [sym_abort_statement] = STATE(485), + [sym_requeue_statement] = STATE(485), + [sym_accept_statement] = STATE(485), + [sym_case_statement] = STATE(485), + [sym_block_statement] = STATE(485), + [sym_if_statement] = STATE(485), + [sym_exit_statement] = STATE(485), + [sym_goto_statement] = STATE(485), + [sym__delay_statement] = STATE(485), + [sym_delay_until_statement] = STATE(485), + [sym_delay_relative_statement] = STATE(485), + [sym_simple_return_statement] = STATE(485), + [sym_extended_return_statement] = STATE(485), + [sym_procedure_call_statement] = STATE(485), [sym_function_call] = STATE(956), - [sym_raise_statement] = STATE(487), - [sym_loop_statement] = STATE(487), + [sym_raise_statement] = STATE(485), + [sym_loop_statement] = STATE(485), [sym_iteration_scheme] = STATE(1923), - [sym_assignment_statement] = STATE(487), - [sym_subprogram_declaration] = STATE(487), - [sym_expression_function_declaration] = STATE(487), + [sym_assignment_statement] = STATE(485), + [sym_subprogram_declaration] = STATE(485), + [sym_expression_function_declaration] = STATE(485), [sym__subprogram_specification] = STATE(993), - [sym_subtype_declaration] = STATE(487), + [sym_subtype_declaration] = STATE(485), [aux_sym_compilation_repeat1] = STATE(2), [aux_sym__sequence_of_statements_repeat2] = STATE(75), [ts_builtin_sym_end] = ACTIONS(199), @@ -10056,7 +10056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10100,8 +10100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(81), }, [5] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(486), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(484), [sym_selected_component] = STATE(263), [sym_slice] = STATE(263), [sym__attribute_reference] = STATE(263), @@ -10112,37 +10112,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subtype_indication] = STATE(1415), [sym_range_g] = STATE(1410), [sym_expression] = STATE(965), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(604), - [sym_term] = STATE(515), - [sym__factor] = STATE(489), - [sym_factor_power] = STATE(489), - [sym_factor_abs] = STATE(489), - [sym_factor_not] = STATE(489), - [sym__parenthesized_expression] = STATE(497), - [sym__primary] = STATE(497), - [sym_primary_null] = STATE(497), - [sym_allocator] = STATE(497), + [sym__relation] = STATE(565), + [sym_relation_membership] = STATE(565), + [sym_raise_expression] = STATE(565), + [sym__simple_expression] = STATE(599), + [sym_term] = STATE(513), + [sym__factor] = STATE(488), + [sym_factor_power] = STATE(488), + [sym_factor_abs] = STATE(488), + [sym_factor_not] = STATE(488), + [sym__parenthesized_expression] = STATE(498), + [sym__primary] = STATE(498), + [sym_primary_null] = STATE(498), + [sym_allocator] = STATE(498), [sym__conditional_expression] = STATE(1694), [sym_quantified_expression] = STATE(1694), [sym_declare_expression] = STATE(1694), [sym_case_expression] = STATE(1694), [sym_component_choice_list] = STATE(1689), - [sym__aggregate] = STATE(497), - [sym__delta_aggregate] = STATE(497), - [sym_extension_aggregate] = STATE(497), - [sym_record_delta_aggregate] = STATE(497), - [sym_array_delta_aggregate] = STATE(497), - [sym_record_aggregate] = STATE(497), + [sym__aggregate] = STATE(498), + [sym__delta_aggregate] = STATE(498), + [sym_extension_aggregate] = STATE(498), + [sym_record_delta_aggregate] = STATE(498), + [sym_array_delta_aggregate] = STATE(498), + [sym_record_aggregate] = STATE(498), [sym_record_component_association_list] = STATE(1685), [sym__named_record_component_association] = STATE(1273), - [sym_null_exclusion] = STATE(780), - [sym__array_aggregate] = STATE(497), - [sym_positional_array_aggregate] = STATE(497), - [sym_null_array_aggregate] = STATE(497), - [sym_named_array_aggregate] = STATE(497), + [sym_null_exclusion] = STATE(776), + [sym__array_aggregate] = STATE(498), + [sym_positional_array_aggregate] = STATE(498), + [sym_null_array_aggregate] = STATE(498), + [sym_named_array_aggregate] = STATE(498), [sym__array_component_association_list] = STATE(1680), [sym_array_component_association] = STATE(1120), [sym_discrete_choice_list] = STATE(1673), @@ -10151,7 +10151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_global_mode] = STATE(743), [sym_non_empty_mode] = STATE(836), [sym_if_expression] = STATE(1694), - [sym_function_call] = STATE(486), + [sym_function_call] = STATE(484), [sym_identifier] = ACTIONS(211), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(213), @@ -10210,7 +10210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10287,7 +10287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10363,7 +10363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10439,7 +10439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10515,7 +10515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10591,7 +10591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10667,7 +10667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10742,7 +10742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10816,7 +10816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(14), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(14), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(14), [sym_generic_package_declaration] = STATE(14), [sym_generic_instantiation] = STATE(14), @@ -10892,7 +10892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -10967,7 +10967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11042,7 +11042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11117,7 +11117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11192,7 +11192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11267,7 +11267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11342,7 +11342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -11416,7 +11416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(14), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(14), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(14), [sym_generic_package_declaration] = STATE(14), [sym_generic_instantiation] = STATE(14), @@ -11492,7 +11492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_exception_declaration] = STATE(22), [sym_function_specification] = STATE(1103), [sym__generic_declaration] = STATE(22), - [sym_generic_formal_part] = STATE(906), + [sym_generic_formal_part] = STATE(928), [sym_generic_subprogram_declaration] = STATE(22), [sym_generic_package_declaration] = STATE(22), [sym_generic_instantiation] = STATE(22), @@ -12039,8 +12039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [31] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(486), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(484), [sym_selected_component] = STATE(263), [sym_slice] = STATE(263), [sym__attribute_reference] = STATE(263), @@ -12051,43 +12051,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subtype_indication] = STATE(1415), [sym_range_g] = STATE(1410), [sym_expression] = STATE(965), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(604), - [sym_term] = STATE(515), - [sym__factor] = STATE(489), - [sym_factor_power] = STATE(489), - [sym_factor_abs] = STATE(489), - [sym_factor_not] = STATE(489), - [sym__parenthesized_expression] = STATE(497), - [sym__primary] = STATE(497), - [sym_primary_null] = STATE(497), - [sym_allocator] = STATE(497), + [sym__relation] = STATE(565), + [sym_relation_membership] = STATE(565), + [sym_raise_expression] = STATE(565), + [sym__simple_expression] = STATE(599), + [sym_term] = STATE(513), + [sym__factor] = STATE(488), + [sym_factor_power] = STATE(488), + [sym_factor_abs] = STATE(488), + [sym_factor_not] = STATE(488), + [sym__parenthesized_expression] = STATE(498), + [sym__primary] = STATE(498), + [sym_primary_null] = STATE(498), + [sym_allocator] = STATE(498), [sym__conditional_expression] = STATE(1694), [sym_quantified_expression] = STATE(1694), [sym_declare_expression] = STATE(1694), [sym_case_expression] = STATE(1694), [sym_component_choice_list] = STATE(1689), - [sym__aggregate] = STATE(497), - [sym__delta_aggregate] = STATE(497), - [sym_extension_aggregate] = STATE(497), - [sym_record_delta_aggregate] = STATE(497), - [sym_array_delta_aggregate] = STATE(497), - [sym_record_aggregate] = STATE(497), + [sym__aggregate] = STATE(498), + [sym__delta_aggregate] = STATE(498), + [sym_extension_aggregate] = STATE(498), + [sym_record_delta_aggregate] = STATE(498), + [sym_array_delta_aggregate] = STATE(498), + [sym_record_aggregate] = STATE(498), [sym_record_component_association_list] = STATE(1685), [sym__named_record_component_association] = STATE(1273), - [sym_null_exclusion] = STATE(780), - [sym__array_aggregate] = STATE(497), - [sym_positional_array_aggregate] = STATE(497), - [sym_null_array_aggregate] = STATE(497), - [sym_named_array_aggregate] = STATE(497), + [sym_null_exclusion] = STATE(776), + [sym__array_aggregate] = STATE(498), + [sym_positional_array_aggregate] = STATE(498), + [sym_null_array_aggregate] = STATE(498), + [sym_named_array_aggregate] = STATE(498), [sym__array_component_association_list] = STATE(1680), [sym_array_component_association] = STATE(1120), [sym_discrete_choice_list] = STATE(1673), [sym_discrete_choice] = STATE(1286), [sym_if_expression] = STATE(1694), - [sym_function_call] = STATE(486), + [sym_function_call] = STATE(484), [sym_identifier] = ACTIONS(211), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(213), @@ -12111,58 +12111,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [32] = { [sym__defining_identifier_list] = STATE(1937), - [sym__declarative_item] = STATE(484), - [sym__basic_declarative_item] = STATE(484), - [sym__basic_declaration] = STATE(484), - [sym__package_declaration] = STATE(484), + [sym__declarative_item] = STATE(480), + [sym__basic_declarative_item] = STATE(480), + [sym__basic_declaration] = STATE(480), + [sym__package_declaration] = STATE(480), [sym_package_specification] = STATE(1931), - [sym_use_clause] = STATE(484), - [sym__proper_body] = STATE(484), - [sym_subprogram_body] = STATE(484), - [sym_package_body] = STATE(484), - [sym__type_declaration] = STATE(484), - [sym_full_type_declaration] = STATE(484), - [sym_private_type_declaration] = STATE(484), - [sym_private_extension_declaration] = STATE(484), - [sym_incomplete_type_declaration] = STATE(484), - [sym__aspect_clause] = STATE(484), - [sym_at_clause] = STATE(484), - [sym_attribute_definition_clause] = STATE(484), - [sym_body_stub] = STATE(484), + [sym_use_clause] = STATE(480), + [sym__proper_body] = STATE(480), + [sym_subprogram_body] = STATE(480), + [sym_package_body] = STATE(480), + [sym__type_declaration] = STATE(480), + [sym_full_type_declaration] = STATE(480), + [sym_private_type_declaration] = STATE(480), + [sym_private_extension_declaration] = STATE(480), + [sym_incomplete_type_declaration] = STATE(480), + [sym__aspect_clause] = STATE(480), + [sym_at_clause] = STATE(480), + [sym_attribute_definition_clause] = STATE(480), + [sym_body_stub] = STATE(480), [sym_subprogram_body_stub] = STATE(420), [sym_package_body_stub] = STATE(420), - [sym_task_body] = STATE(484), + [sym_task_body] = STATE(480), [sym_task_body_stub] = STATE(420), [sym_protected_type_declaration] = STATE(283), [sym_single_protected_declaration] = STATE(347), - [sym_protected_body] = STATE(484), + [sym_protected_body] = STATE(480), [sym_protected_body_stub] = STATE(420), - [sym_enumeration_representation_clause] = STATE(484), - [sym_exception_declaration] = STATE(484), + [sym_enumeration_representation_clause] = STATE(480), + [sym_exception_declaration] = STATE(480), [sym_function_specification] = STATE(1103), - [sym__generic_declaration] = STATE(484), - [sym_generic_formal_part] = STATE(906), - [sym_generic_subprogram_declaration] = STATE(484), - [sym_generic_package_declaration] = STATE(484), - [sym_generic_instantiation] = STATE(484), - [sym_null_procedure_declaration] = STATE(484), - [sym_number_declaration] = STATE(484), - [sym_object_declaration] = STATE(484), + [sym__generic_declaration] = STATE(480), + [sym_generic_formal_part] = STATE(928), + [sym_generic_subprogram_declaration] = STATE(480), + [sym_generic_package_declaration] = STATE(480), + [sym_generic_instantiation] = STATE(480), + [sym_null_procedure_declaration] = STATE(480), + [sym_number_declaration] = STATE(480), + [sym_object_declaration] = STATE(480), [sym_single_task_declaration] = STATE(347), [sym_task_type_declaration] = STATE(283), [sym_overriding_indicator] = STATE(1015), [sym_procedure_specification] = STATE(1105), - [sym_record_representation_clause] = STATE(484), - [sym__renaming_declaration] = STATE(484), - [sym_object_renaming_declaration] = STATE(484), - [sym_exception_renaming_declaration] = STATE(484), - [sym_package_renaming_declaration] = STATE(484), - [sym_subprogram_renaming_declaration] = STATE(484), - [sym_generic_renaming_declaration] = STATE(484), - [sym_subprogram_declaration] = STATE(484), - [sym_expression_function_declaration] = STATE(484), + [sym_record_representation_clause] = STATE(480), + [sym__renaming_declaration] = STATE(480), + [sym_object_renaming_declaration] = STATE(480), + [sym_exception_renaming_declaration] = STATE(480), + [sym_package_renaming_declaration] = STATE(480), + [sym_subprogram_renaming_declaration] = STATE(480), + [sym_generic_renaming_declaration] = STATE(480), + [sym_subprogram_declaration] = STATE(480), + [sym_expression_function_declaration] = STATE(480), [sym__subprogram_specification] = STATE(993), - [sym_subtype_declaration] = STATE(484), + [sym_subtype_declaration] = STATE(480), [sym_identifier] = ACTIONS(201), [sym_comment] = ACTIONS(3), [aux_sym_iterated_element_association_token1] = ACTIONS(203), @@ -14856,8 +14856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [72] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(486), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(484), [sym_selected_component] = STATE(519), [sym_slice] = STATE(519), [sym__attribute_reference] = STATE(519), @@ -14867,39 +14867,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subtype_indication] = STATE(1462), [sym_range_g] = STATE(1474), [sym_expression] = STATE(1385), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(604), - [sym_term] = STATE(515), - [sym__factor] = STATE(489), - [sym_factor_power] = STATE(489), - [sym_factor_abs] = STATE(489), - [sym_factor_not] = STATE(489), - [sym__parenthesized_expression] = STATE(497), - [sym__primary] = STATE(497), - [sym_primary_null] = STATE(497), - [sym_allocator] = STATE(497), + [sym__relation] = STATE(565), + [sym_relation_membership] = STATE(565), + [sym_raise_expression] = STATE(565), + [sym__simple_expression] = STATE(599), + [sym_term] = STATE(513), + [sym__factor] = STATE(488), + [sym_factor_power] = STATE(488), + [sym_factor_abs] = STATE(488), + [sym_factor_not] = STATE(488), + [sym__parenthesized_expression] = STATE(498), + [sym__primary] = STATE(498), + [sym_primary_null] = STATE(498), + [sym_allocator] = STATE(498), [sym_parameter_association] = STATE(1282), [sym__conditional_expression] = STATE(1571), [sym_quantified_expression] = STATE(1571), [sym_declare_expression] = STATE(1571), [sym_case_expression] = STATE(1571), [sym_component_choice_list] = STATE(1578), - [sym__aggregate] = STATE(497), - [sym__delta_aggregate] = STATE(497), - [sym_extension_aggregate] = STATE(497), - [sym_record_delta_aggregate] = STATE(497), - [sym_array_delta_aggregate] = STATE(497), - [sym_record_aggregate] = STATE(497), - [sym_null_exclusion] = STATE(780), + [sym__aggregate] = STATE(498), + [sym__delta_aggregate] = STATE(498), + [sym_extension_aggregate] = STATE(498), + [sym_record_delta_aggregate] = STATE(498), + [sym_array_delta_aggregate] = STATE(498), + [sym_record_aggregate] = STATE(498), + [sym_null_exclusion] = STATE(776), [sym__discrete_range] = STATE(1202), - [sym__array_aggregate] = STATE(497), - [sym_positional_array_aggregate] = STATE(497), - [sym_null_array_aggregate] = STATE(497), - [sym_named_array_aggregate] = STATE(497), + [sym__array_aggregate] = STATE(498), + [sym_positional_array_aggregate] = STATE(498), + [sym_null_array_aggregate] = STATE(498), + [sym_named_array_aggregate] = STATE(498), [sym_if_expression] = STATE(1571), - [sym_function_call] = STATE(486), + [sym_function_call] = STATE(484), [sym_identifier] = ACTIONS(417), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(419), @@ -14990,50 +14990,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_iteration_scheme_token1] = ACTIONS(79), }, [74] = { - [sym_unary_adding_operator] = STATE(508), - [sym__name] = STATE(486), - [sym_selected_component] = STATE(486), + [sym_unary_adding_operator] = STATE(505), + [sym__name] = STATE(484), + [sym_selected_component] = STATE(484), [sym__defining_identifier_list] = STATE(1570), - [sym_slice] = STATE(486), - [sym__attribute_reference] = STATE(486), - [sym__reduction_attribute_reference] = STATE(486), + [sym_slice] = STATE(484), + [sym__attribute_reference] = STATE(484), + [sym__reduction_attribute_reference] = STATE(484), [sym_value_sequence] = STATE(1932), - [sym_qualified_expression] = STATE(486), + [sym_qualified_expression] = STATE(484), [sym_range_g] = STATE(1582), [sym_expression] = STATE(1385), - [sym__relation] = STATE(566), - [sym_relation_membership] = STATE(566), - [sym_raise_expression] = STATE(566), - [sym__simple_expression] = STATE(604), - [sym_term] = STATE(515), - [sym__factor] = STATE(489), - [sym_factor_power] = STATE(489), - [sym_factor_abs] = STATE(489), - [sym_factor_not] = STATE(489), - [sym__parenthesized_expression] = STATE(497), - [sym__primary] = STATE(497), - [sym_primary_null] = STATE(497), - [sym_allocator] = STATE(497), + [sym__relation] = STATE(565), + [sym_relation_membership] = STATE(565), + [sym_raise_expression] = STATE(565), + [sym__simple_expression] = STATE(599), + [sym_term] = STATE(513), + [sym__factor] = STATE(488), + [sym_factor_power] = STATE(488), + [sym_factor_abs] = STATE(488), + [sym_factor_not] = STATE(488), + [sym__parenthesized_expression] = STATE(498), + [sym__primary] = STATE(498), + [sym_primary_null] = STATE(498), + [sym_allocator] = STATE(498), [sym_parameter_association] = STATE(1282), [sym__conditional_expression] = STATE(1571), [sym_quantified_expression] = STATE(1571), [sym_declare_expression] = STATE(1571), [sym_case_expression] = STATE(1571), [sym_component_choice_list] = STATE(1578), - [sym__aggregate] = STATE(497), - [sym__delta_aggregate] = STATE(497), - [sym_extension_aggregate] = STATE(497), - [sym_record_delta_aggregate] = STATE(497), - [sym_array_delta_aggregate] = STATE(497), - [sym_record_aggregate] = STATE(497), - [sym__array_aggregate] = STATE(497), - [sym_positional_array_aggregate] = STATE(497), - [sym_null_array_aggregate] = STATE(497), - [sym_named_array_aggregate] = STATE(497), + [sym__aggregate] = STATE(498), + [sym__delta_aggregate] = STATE(498), + [sym_extension_aggregate] = STATE(498), + [sym_record_delta_aggregate] = STATE(498), + [sym_array_delta_aggregate] = STATE(498), + [sym_record_aggregate] = STATE(498), + [sym__array_aggregate] = STATE(498), + [sym_positional_array_aggregate] = STATE(498), + [sym_null_array_aggregate] = STATE(498), + [sym_named_array_aggregate] = STATE(498), [sym_parameter_specification] = STATE(1270), [sym__parameter_specification_list] = STATE(1577), [sym_if_expression] = STATE(1571), - [sym_function_call] = STATE(486), + [sym_function_call] = STATE(484), [sym_identifier] = ACTIONS(431), [sym_comment] = ACTIONS(3), [sym_string_literal] = ACTIONS(433), @@ -15190,7 +15190,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15284,11 +15284,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(451), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, STATE(1282), 1, sym_parameter_association, @@ -15303,11 +15303,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(435), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -15318,7 +15318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_declare_expression, sym_case_expression, sym_if_expression, - STATE(486), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -15326,7 +15326,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -15376,7 +15376,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(455), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15466,7 +15466,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token1, ACTIONS(449), 1, aux_sym_interface_type_definition_token1, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15552,7 +15552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(498), 1, aux_sym_subtype_declaration_token1, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15641,13 +15641,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_component_choice_list_token1, ACTIONS(501), 1, aux_sym_iterated_element_association_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1120), 1, sym_array_component_association, @@ -15674,17 +15674,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(215), 2, sym_character_literal, sym_target_name, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1733), 2, sym_record_component_association_list, sym__record_component_association_list_or_expression, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -15695,7 +15695,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -15745,7 +15745,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(505), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15835,7 +15835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(455), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -15923,7 +15923,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(507), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16011,7 +16011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(509), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16099,7 +16099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(509), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16185,13 +16185,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_component_choice_list_token1, ACTIONS(501), 1, aux_sym_iterated_element_association_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(967), 1, sym_expression, @@ -16220,14 +16220,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(215), 2, sym_character_literal, sym_target_name, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16238,7 +16238,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16286,7 +16286,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(505), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16374,7 +16374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(505), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16462,7 +16462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_interface_type_definition_token1, ACTIONS(455), 1, aux_sym_package_specification_token3, - STATE(906), 1, + STATE(928), 1, sym_generic_formal_part, STATE(1046), 1, sym__subprogram_specification, @@ -16550,13 +16550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(964), 1, sym_expression, @@ -16576,18 +16576,18 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16598,7 +16598,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16644,13 +16644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1013), 1, sym_expression, @@ -16670,18 +16670,18 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16692,7 +16692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16738,13 +16738,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(964), 1, sym_expression, @@ -16764,18 +16764,18 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16786,7 +16786,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16830,13 +16830,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1120), 1, sym_array_component_association, @@ -16856,18 +16856,18 @@ static const uint16_t ts_small_parse_table[] = { sym__array_component_association_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16878,7 +16878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -16922,13 +16922,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1120), 1, sym_array_component_association, @@ -16944,7 +16944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__array_component_association_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -16954,11 +16954,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -16969,7 +16969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17015,9 +17015,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(519), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17033,11 +17033,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17055,7 +17055,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17099,13 +17099,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1257), 1, sym_iterated_element_association, @@ -17119,7 +17119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -17129,11 +17129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17144,7 +17144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17190,9 +17190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(525), 1, anon_sym_LPAREN, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17206,7 +17206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, @@ -17214,7 +17214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression, sym__aspect_definition, sym_global_aspect_definition, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17227,7 +17227,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17269,13 +17269,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1286), 1, sym_discrete_choice, @@ -17285,7 +17285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -17295,11 +17295,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17310,7 +17310,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17352,13 +17352,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1286), 1, sym_discrete_choice, @@ -17368,7 +17368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_discrete_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -17378,11 +17378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17393,7 +17393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17439,9 +17439,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(527), 1, aux_sym_attribute_designator_token2, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17459,11 +17459,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1926), 2, sym_record_component_association_list, sym__record_component_association_list_or_expression, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17476,7 +17476,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17518,13 +17518,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1286), 1, sym_discrete_choice, @@ -17534,7 +17534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_value_sequence, STATE(1957), 1, sym_discrete_choice_list, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -17544,11 +17544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17559,7 +17559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17601,13 +17601,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(531), 1, sym_string_literal, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1190), 1, sym_discriminant_association, @@ -17620,17 +17620,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(421), 2, sym_character_literal, sym_target_name, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1202), 2, sym_range_g, sym__discrete_range, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17641,7 +17641,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17683,13 +17683,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(517), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(604), 1, + STATE(599), 1, sym__simple_expression, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1402), 1, sym_discrete_choice, @@ -17697,7 +17697,7 @@ static const uint16_t ts_small_parse_table[] = { sym__subtype_indication, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1410), 2, @@ -17707,11 +17707,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17722,7 +17722,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17768,9 +17768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(451), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17785,11 +17785,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17802,7 +17802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17846,9 +17846,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(451), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17862,11 +17862,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1318), 2, sym_expression, sym__named_record_component_association, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17879,7 +17879,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -17919,9 +17919,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(533), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -17939,11 +17939,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -17956,7 +17956,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18000,9 +18000,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(451), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -18017,11 +18017,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18034,7 +18034,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18078,9 +18078,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(535), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -18095,11 +18095,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18112,7 +18112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18156,9 +18156,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(451), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -18172,11 +18172,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(1486), 2, sym_expression, sym__named_record_component_association, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18189,7 +18189,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18227,11 +18227,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(537), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -18245,7 +18245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__parameter_specification_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1617), 2, @@ -18255,18 +18255,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18306,9 +18306,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(519), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -18324,11 +18324,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18341,7 +18341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18383,9 +18383,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(543), 1, anon_sym_SEMI, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -18399,11 +18399,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -18416,7 +18416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18454,11 +18454,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(545), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -18472,7 +18472,7 @@ static const uint16_t ts_small_parse_table[] = { sym__discrete_subtype_definition_list, STATE(1932), 1, sym_value_sequence, - STATE(697), 2, + STATE(698), 2, sym__name, sym_function_call, STATE(1235), 2, @@ -18482,18 +18482,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(556), 5, + STATE(550), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -18531,11 +18531,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(537), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -18549,7 +18549,7 @@ static const uint16_t ts_small_parse_table[] = { sym__parameter_specification_list, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1871), 2, @@ -18559,18 +18559,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -19460,9 +19460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(613), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -19474,11 +19474,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -19491,7 +19491,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20381,9 +20381,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(681), 1, sym_string_literal, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -20396,11 +20396,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(521), 2, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -20413,7 +20413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20561,9 +20561,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(691), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -20575,11 +20575,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -20592,7 +20592,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -20634,9 +20634,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(693), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -20648,11 +20648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -20665,7 +20665,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21184,9 +21184,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(731), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -21198,11 +21198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -21215,7 +21215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21310,9 +21310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(737), 1, aux_sym_component_choice_list_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -21324,11 +21324,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -21341,7 +21341,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21383,9 +21383,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(739), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -21397,11 +21397,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -21414,7 +21414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21456,9 +21456,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(741), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -21470,11 +21470,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -21487,7 +21487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -21582,9 +21582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(747), 1, aux_sym_delay_until_statement_token2, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -21596,11 +21596,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -21613,7 +21613,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22132,9 +22132,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(785), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22146,11 +22146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22163,7 +22163,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22576,9 +22576,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(815), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22590,11 +22590,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22607,7 +22607,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22649,9 +22649,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(817), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22663,11 +22663,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22680,7 +22680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22775,9 +22775,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(823), 1, anon_sym_LT_GT, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22789,11 +22789,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22806,7 +22806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22846,9 +22846,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22860,11 +22860,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22877,7 +22877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22917,9 +22917,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -22931,11 +22931,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -22948,7 +22948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -22990,9 +22990,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(825), 1, aux_sym_expression_token2, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23002,11 +23002,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(622), 3, + STATE(619), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23019,7 +23019,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23061,9 +23061,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(827), 1, aux_sym_expression_token4, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23077,7 +23077,7 @@ static const uint16_t ts_small_parse_table[] = { sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23090,7 +23090,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23130,9 +23130,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23144,11 +23144,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23161,7 +23161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23201,9 +23201,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23215,11 +23215,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23232,7 +23232,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23272,9 +23272,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23286,11 +23286,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23303,7 +23303,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23343,9 +23343,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23357,11 +23357,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23374,7 +23374,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23414,9 +23414,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23428,11 +23428,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23445,7 +23445,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23485,9 +23485,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23499,11 +23499,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23516,7 +23516,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23556,9 +23556,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23570,11 +23570,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23587,7 +23587,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23627,9 +23627,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23641,11 +23641,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23658,7 +23658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23698,9 +23698,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23712,11 +23712,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23729,7 +23729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23769,9 +23769,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23783,11 +23783,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23800,7 +23800,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23840,9 +23840,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23854,11 +23854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23871,7 +23871,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23911,9 +23911,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23925,11 +23925,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -23942,7 +23942,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -23982,9 +23982,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -23996,11 +23996,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24013,7 +24013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24053,11 +24053,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(829), 1, aux_sym_loop_parameter_specification_token1, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -24065,7 +24065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(615), 2, + STATE(617), 2, sym__name, sym_function_call, STATE(1053), 2, @@ -24075,7 +24075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24086,7 +24086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24126,9 +24126,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24140,11 +24140,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24157,7 +24157,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24197,9 +24197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24211,11 +24211,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24228,7 +24228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24268,9 +24268,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24282,11 +24282,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24299,7 +24299,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24339,9 +24339,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24353,11 +24353,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24370,7 +24370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24410,9 +24410,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24424,11 +24424,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24441,7 +24441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24481,9 +24481,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24495,11 +24495,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24512,7 +24512,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24552,9 +24552,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24566,11 +24566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24583,7 +24583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24623,9 +24623,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24637,11 +24637,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24654,7 +24654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24694,9 +24694,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24708,11 +24708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24725,7 +24725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24765,9 +24765,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24779,11 +24779,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24796,7 +24796,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24836,9 +24836,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24850,11 +24850,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24867,7 +24867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24907,9 +24907,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24921,11 +24921,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -24938,7 +24938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -24978,9 +24978,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -24992,11 +24992,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25009,7 +25009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25049,9 +25049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25063,11 +25063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25080,7 +25080,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25120,9 +25120,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25134,11 +25134,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25151,7 +25151,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25191,9 +25191,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25205,11 +25205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25222,7 +25222,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25262,9 +25262,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25276,11 +25276,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25293,7 +25293,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25333,9 +25333,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25347,11 +25347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25364,7 +25364,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25404,9 +25404,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25418,11 +25418,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25435,7 +25435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25475,9 +25475,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25489,11 +25489,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25506,7 +25506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25546,9 +25546,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25560,11 +25560,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25577,7 +25577,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25617,9 +25617,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25631,11 +25631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25648,7 +25648,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25688,9 +25688,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25702,11 +25702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25719,7 +25719,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25759,9 +25759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25773,11 +25773,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25790,7 +25790,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -25830,9 +25830,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -25844,11 +25844,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(566), 3, + STATE(565), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -25861,7 +25861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26052,11 +26052,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(843), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -26064,7 +26064,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1913), 2, @@ -26074,18 +26074,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26174,11 +26174,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(511), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -26186,7 +26186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(612), 2, + STATE(614), 2, sym__name, sym_function_call, STATE(1011), 2, @@ -26196,7 +26196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -26207,7 +26207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26245,11 +26245,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(843), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1462), 1, sym__subtype_indication, @@ -26257,7 +26257,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1478), 2, @@ -26267,18 +26267,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26369,9 +26369,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -26381,11 +26381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(610), 3, + STATE(620), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -26398,7 +26398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26487,11 +26487,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(843), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -26499,7 +26499,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1830), 2, @@ -26509,18 +26509,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -26558,11 +26558,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(843), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(937), 1, sym__subtype_indication, @@ -26570,7 +26570,7 @@ static const uint16_t ts_small_parse_table[] = { sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(486), 2, + STATE(484), 2, sym__name, sym_function_call, STATE(1392), 2, @@ -26580,18 +26580,18 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27090,9 +27090,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -27102,11 +27102,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(614), 3, + STATE(612), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -27119,7 +27119,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27261,9 +27261,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(531), 1, sym__simple_expression, @@ -27273,11 +27273,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(617), 3, + STATE(615), 3, sym__relation, sym_relation_membership, sym_raise_expression, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -27290,7 +27290,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27537,7 +27537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(671), 7, + STATE(672), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -27638,29 +27638,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(939), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(584), 1, sym__simple_expression, - STATE(589), 1, + STATE(587), 1, sym_membership_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(576), 2, + STATE(583), 2, sym_range_g, sym__membership_choice, ACTIONS(435), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(486), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -27668,7 +27668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27706,9 +27706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(939), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(584), 1, sym__simple_expression, @@ -27716,19 +27716,19 @@ static const uint16_t ts_small_parse_table[] = { sym_membership_choice_list, STATE(1932), 1, sym_value_sequence, - STATE(576), 2, + STATE(583), 2, sym_range_g, sym__membership_choice, ACTIONS(435), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(486), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -27736,7 +27736,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27812,7 +27812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(264), 1, sym_actual_parameter_part, - STATE(496), 1, + STATE(494), 1, sym_index_constraint, ACTIONS(945), 6, anon_sym_EQ, @@ -27878,27 +27878,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(939), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(584), 1, sym__simple_expression, STATE(1932), 1, sym_value_sequence, - STATE(592), 2, + STATE(591), 2, sym_range_g, sym__membership_choice, ACTIONS(435), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(486), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -27906,7 +27906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -27932,7 +27932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(264), 1, sym_actual_parameter_part, - STATE(494), 1, + STATE(496), 1, sym_index_constraint, ACTIONS(955), 6, anon_sym_EQ, @@ -28338,9 +28338,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(989), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1527), 1, sym__simple_expression, @@ -28352,7 +28352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -28365,7 +28365,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28403,11 +28403,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(939), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(672), 1, + STATE(674), 1, sym_range_g, STATE(1520), 1, sym__simple_expression, @@ -28417,12 +28417,12 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, sym_factor_not, - STATE(486), 7, + STATE(484), 7, sym__name, sym_selected_component, sym_slice, @@ -28430,7 +28430,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -28706,9 +28706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(570), 1, sym__simple_expression, @@ -28718,7 +28718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -28731,7 +28731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -29615,9 +29615,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(597), 1, sym__simple_expression, @@ -29627,7 +29627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -29640,7 +29640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30242,11 +30242,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(628), 1, + STATE(631), 1, sym__simple_expression, STATE(1932), 1, sym_value_sequence, @@ -30254,7 +30254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -30267,7 +30267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30352,11 +30352,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(625), 1, + STATE(629), 1, sym__simple_expression, STATE(1932), 1, sym_value_sequence, @@ -30364,7 +30364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -30377,7 +30377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -30462,9 +30462,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1480), 1, sym__simple_expression, @@ -30474,7 +30474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -30487,7 +30487,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -31022,9 +31022,9 @@ static const uint16_t ts_small_parse_table[] = { [19189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1173), 1, sym_identifier, - ACTIONS(1163), 41, + ACTIONS(1171), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -31324,9 +31324,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1759), 1, sym__simple_expression, @@ -31336,7 +31336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -31349,7 +31349,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -33574,53 +33574,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, [21921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 1, - sym_identifier, - ACTIONS(1359), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [21971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1381), 1, @@ -33667,7 +33620,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22021] = 3, + [21971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1385), 1, @@ -33714,12 +33667,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [22021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1389), 1, + sym_identifier, + ACTIONS(1387), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [22071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1069), 1, + ACTIONS(1073), 1, sym_identifier, - ACTIONS(1067), 41, + ACTIONS(1071), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -33764,9 +33764,9 @@ static const uint16_t ts_small_parse_table[] = { [22121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(1393), 1, sym_identifier, - ACTIONS(1387), 41, + ACTIONS(1391), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -33831,11 +33831,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, - STATE(594), 1, + STATE(585), 1, sym__simple_expression, STATE(1932), 1, sym_value_sequence, @@ -33843,7 +33843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -33856,7 +33856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -33872,53 +33872,6 @@ static const uint16_t ts_small_parse_table[] = { sym_null_array_aggregate, sym_named_array_aggregate, [22253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1393), 1, - sym_identifier, - ACTIONS(1391), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [22303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1397), 1, @@ -33965,7 +33918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22353] = 3, + [22303] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1401), 1, @@ -34012,7 +33965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [22403] = 3, + [22353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1405), 1, @@ -34059,6 +34012,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [22403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1377), 1, + sym_identifier, + ACTIONS(1375), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [22453] = 3, ACTIONS(3), 1, sym_comment, @@ -34297,9 +34297,9 @@ static const uint16_t ts_small_parse_table[] = { [22703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1397), 1, + ACTIONS(1401), 1, sym_identifier, - ACTIONS(1395), 41, + ACTIONS(1399), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -34673,9 +34673,9 @@ static const uint16_t ts_small_parse_table[] = { [23103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1301), 1, + ACTIONS(1305), 1, sym_identifier, - ACTIONS(1299), 41, + ACTIONS(1303), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36412,9 +36412,9 @@ static const uint16_t ts_small_parse_table[] = { [24953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 1, + ACTIONS(1589), 1, sym_identifier, - ACTIONS(1359), 41, + ACTIONS(1587), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36479,9 +36479,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1799), 1, sym__simple_expression, @@ -36491,7 +36491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -36504,7 +36504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36522,9 +36522,9 @@ static const uint16_t ts_small_parse_table[] = { [25085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1361), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1359), 41, + ACTIONS(1375), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36569,9 +36569,9 @@ static const uint16_t ts_small_parse_table[] = { [25135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1589), 1, + ACTIONS(1593), 1, sym_identifier, - ACTIONS(1587), 41, + ACTIONS(1591), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36636,9 +36636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1896), 1, sym__simple_expression, @@ -36648,7 +36648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -36661,7 +36661,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -36679,9 +36679,9 @@ static const uint16_t ts_small_parse_table[] = { [25267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1593), 1, + ACTIONS(1597), 1, sym_identifier, - ACTIONS(1591), 41, + ACTIONS(1595), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -36726,9 +36726,9 @@ static const uint16_t ts_small_parse_table[] = { [25317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1597), 1, + ACTIONS(1377), 1, sym_identifier, - ACTIONS(1595), 41, + ACTIONS(1375), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37569,70 +37569,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26217] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, - sym_numeric_literal, - ACTIONS(219), 1, - anon_sym_PLUS, - ACTIONS(221), 1, - anon_sym_DASH, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_factor_abs_token1, - ACTIONS(239), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(508), 1, - sym_unary_adding_operator, - STATE(515), 1, - sym_term, - STATE(1424), 1, - sym__simple_expression, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(489), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(275), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(497), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [26299] = 3, + [26217] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1665), 1, @@ -37679,7 +37616,117 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26349] = 3, + [26267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 1, + sym_identifier, + ACTIONS(1215), 41, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_package_specification_token3, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [26317] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(219), 1, + anon_sym_PLUS, + ACTIONS(221), 1, + anon_sym_DASH, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(505), 1, + sym_unary_adding_operator, + STATE(513), 1, + sym_term, + STATE(1424), 1, + sym__simple_expression, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(488), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(498), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [26399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1669), 1, @@ -37726,7 +37773,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26399] = 3, + [26449] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1673), 1, @@ -37773,53 +37820,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1677), 1, - sym_identifier, - ACTIONS(1675), 41, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_package_specification_token3, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, [26499] = 19, ACTIONS(3), 1, sym_comment, @@ -37843,9 +37843,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(523), 1, sym_identifier, - STATE(508), 1, + STATE(505), 1, sym_unary_adding_operator, - STATE(515), 1, + STATE(513), 1, sym_term, STATE(1562), 1, sym__simple_expression, @@ -37855,7 +37855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -37868,7 +37868,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -37886,9 +37886,9 @@ static const uint16_t ts_small_parse_table[] = { [26581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1681), 1, + ACTIONS(1677), 1, sym_identifier, - ACTIONS(1679), 41, + ACTIONS(1675), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -37933,9 +37933,9 @@ static const uint16_t ts_small_parse_table[] = { [26631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1681), 1, sym_identifier, - ACTIONS(1215), 41, + ACTIONS(1679), 41, ts_builtin_sym_end, sym_string_literal, sym_character_literal, @@ -38208,106 +38208,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [26927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, - sym_identifier, - ACTIONS(1703), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [26976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, - sym_identifier, - ACTIONS(1707), 40, - ts_builtin_sym_end, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - aux_sym_iterated_element_association_token1, - aux_sym_iterated_element_association_token2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token1, - aux_sym_with_clause_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_subunit_token1, - aux_sym_subprogram_body_token1, - aux_sym_relation_membership_token1, - aux_sym_raise_expression_token1, - aux_sym_primary_null_token1, - aux_sym_access_to_subprogram_definition_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_declare_expression_token1, - aux_sym_case_expression_token1, - aux_sym_interface_type_definition_token1, - aux_sym_entry_declaration_token1, - aux_sym_generic_formal_part_token1, - aux_sym_global_mode_token1, - anon_sym_LT_LT, - aux_sym_pragma_g_token1, - aux_sym_if_expression_token1, - aux_sym_result_profile_token1, - aux_sym_asynchronous_select_token1, - aux_sym_asynchronous_select_token2, - aux_sym_requeue_statement_token1, - aux_sym_accept_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_goto_statement_token1, - aux_sym_delay_until_statement_token1, - aux_sym_loop_statement_token1, - aux_sym_iteration_scheme_token1, - aux_sym_subtype_declaration_token1, - [27025] = 7, + [26927] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, anon_sym_DOT, ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1703), 1, sym_tick, STATE(264), 1, sym_actual_parameter_part, @@ -38350,6 +38258,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, + [26984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1707), 1, + sym_identifier, + ACTIONS(1705), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, + [27033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + sym_identifier, + ACTIONS(1709), 40, + ts_builtin_sym_end, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + aux_sym_iterated_element_association_token1, + aux_sym_iterated_element_association_token2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token1, + aux_sym_with_clause_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_subunit_token1, + aux_sym_subprogram_body_token1, + aux_sym_relation_membership_token1, + aux_sym_raise_expression_token1, + aux_sym_primary_null_token1, + aux_sym_access_to_subprogram_definition_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_declare_expression_token1, + aux_sym_case_expression_token1, + aux_sym_interface_type_definition_token1, + aux_sym_entry_declaration_token1, + aux_sym_generic_formal_part_token1, + aux_sym_global_mode_token1, + anon_sym_LT_LT, + aux_sym_pragma_g_token1, + aux_sym_if_expression_token1, + aux_sym_result_profile_token1, + aux_sym_asynchronous_select_token1, + aux_sym_asynchronous_select_token2, + aux_sym_requeue_statement_token1, + aux_sym_accept_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_goto_statement_token1, + aux_sym_delay_until_statement_token1, + aux_sym_loop_statement_token1, + aux_sym_iteration_scheme_token1, + aux_sym_subtype_declaration_token1, [27082] = 3, ACTIONS(3), 1, sym_comment, @@ -38448,13 +38448,13 @@ static const uint16_t ts_small_parse_table[] = { [27187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1723), 1, + ACTIONS(1732), 1, anon_sym_SLASH, - STATE(488), 1, + STATE(489), 1, aux_sym_term_repeat1, STATE(511), 1, sym_multiplying_operator, - ACTIONS(1721), 3, + ACTIONS(1729), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, @@ -38497,22 +38497,22 @@ static const uint16_t ts_small_parse_table[] = { [27243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 1, + ACTIONS(1723), 1, anon_sym_SLASH, - STATE(490), 1, + STATE(489), 1, aux_sym_term_repeat1, STATE(511), 1, sym_multiplying_operator, - ACTIONS(1733), 3, + ACTIONS(1721), 3, anon_sym_STAR, anon_sym_mod, anon_sym_rem, - ACTIONS(1729), 4, + ACTIONS(1735), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1731), 30, + ACTIONS(1737), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38631,7 +38631,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27393] = 11, + [27393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1747), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1749), 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, + [27440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1753), 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, + [27487] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(921), 1, @@ -38642,9 +38730,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_attribute_designator_token3, ACTIONS(933), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(1747), 1, + ACTIONS(1755), 1, anon_sym_EQ_GT, - ACTIONS(1751), 1, + ACTIONS(1759), 1, anon_sym_PIPE, STATE(1290), 1, aux_sym_discriminant_association_repeat1, @@ -38656,7 +38744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(671), 7, + STATE(672), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -38683,7 +38771,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [27456] = 3, + [27550] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(945), 6, @@ -38727,99 +38815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27503] = 3, + [27597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1757), 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, - [27550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1761), 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, - [27597] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_STAR_STAR, ACTIONS(1763), 6, anon_sym_EQ, anon_sym_LT, @@ -38827,50 +38825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1765), 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, - [27646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1769), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1771), 33, + ACTIONS(1765), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -38904,6 +38859,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, + [27644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1771), 1, + anon_sym_STAR_STAR, + ACTIONS(1767), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1769), 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, [27693] = 3, ACTIONS(3), 1, sym_comment, @@ -39020,7 +39020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(671), 7, + STATE(672), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -39130,7 +39130,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [27943] = 15, + [27943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1793), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1795), 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, + [27989] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(217), 1, + sym_numeric_literal, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(235), 1, + aux_sym_factor_abs_token1, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(437), 1, + aux_sym_relation_membership_token1, + ACTIONS(523), 1, + sym_identifier, + STATE(512), 1, + sym_term, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(488), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(498), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [28059] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1783), 1, + anon_sym_PIPE, + ACTIONS(1797), 1, + anon_sym_EQ_GT, + STATE(1213), 1, + aux_sym_discriminant_association_repeat1, + ACTIONS(924), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(917), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DOT, + STATE(672), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 15, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_mod, + anon_sym_rem, + sym_tick, + aux_sym_chunk_specification_token1, + anon_sym_DOT_DOT, + aux_sym_expression_token1, + aux_sym_expression_token3, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + anon_sym_STAR_STAR, + [28123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1801), 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, + [28169] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(217), 1, @@ -39157,7 +39350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(489), 4, + STATE(488), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -39170,7 +39363,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39185,143 +39378,48 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [28013] = 12, + [28239] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1783), 1, - anon_sym_PIPE, - ACTIONS(1793), 1, - anon_sym_EQ_GT, - STATE(1213), 1, - aux_sym_discriminant_association_repeat1, - ACTIONS(924), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(917), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DOT, - STATE(671), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 15, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - sym_tick, - aux_sym_chunk_specification_token1, - anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [28077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1795), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1797), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [28123] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1799), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, - aux_sym_attribute_designator_token1, ACTIONS(1803), 1, - aux_sym_attribute_designator_token2, + anon_sym_LPAREN, ACTIONS(1805), 1, - aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token1, ACTIONS(1807), 1, - aux_sym_attribute_designator_token4, + aux_sym_attribute_designator_token2, ACTIONS(1809), 1, - aux_sym_compilation_unit_token1, + aux_sym_attribute_designator_token3, ACTIONS(1811), 1, - aux_sym_with_clause_token1, + aux_sym_attribute_designator_token4, ACTIONS(1813), 1, - aux_sym_range_attribute_designator_token1, + aux_sym_compilation_unit_token1, ACTIONS(1815), 1, - aux_sym_relation_membership_token1, + aux_sym_with_clause_token1, ACTIONS(1817), 1, - aux_sym_primary_null_token1, + aux_sym_range_attribute_designator_token1, ACTIONS(1819), 1, - aux_sym_allocator_token1, + aux_sym_relation_membership_token1, + ACTIONS(1821), 1, + aux_sym_primary_null_token1, ACTIONS(1823), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1825), 1, - aux_sym_private_type_declaration_token1, + aux_sym_allocator_token1, ACTIONS(1827), 1, - aux_sym_private_type_declaration_token2, + aux_sym_record_component_association_list_token1, ACTIONS(1829), 1, - aux_sym_private_extension_declaration_token1, + aux_sym_private_type_declaration_token1, ACTIONS(1831), 1, - aux_sym_array_type_definition_token1, + aux_sym_private_type_declaration_token2, ACTIONS(1833), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(1835), 1, + aux_sym_array_type_definition_token1, + ACTIONS(1837), 1, aux_sym_interface_type_definition_token2, STATE(1254), 1, sym_null_exclusion, STATE(1446), 1, sym_record_definition, - ACTIONS(1821), 2, + ACTIONS(1825), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, STATE(1205), 17, @@ -39342,128 +39440,30 @@ static const uint16_t ts_small_parse_table[] = { sym_derived_type_definition, sym_interface_type_definition, sym_record_type_definition, - [28207] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(217), 1, - sym_numeric_literal, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_LBRACK, - ACTIONS(235), 1, - aux_sym_factor_abs_token1, - ACTIONS(239), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(437), 1, - aux_sym_relation_membership_token1, - ACTIONS(523), 1, - sym_identifier, - STATE(513), 1, - sym_term, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(489), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(275), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(497), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [28277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1837), 33, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_STAR, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - anon_sym_DOT_DOT, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, [28323] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1799), 1, - anon_sym_LPAREN, - ACTIONS(1801), 1, - aux_sym_attribute_designator_token1, ACTIONS(1803), 1, - aux_sym_attribute_designator_token2, + anon_sym_LPAREN, ACTIONS(1805), 1, - aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token1, ACTIONS(1807), 1, + aux_sym_attribute_designator_token2, + ACTIONS(1809), 1, + aux_sym_attribute_designator_token3, + ACTIONS(1811), 1, aux_sym_attribute_designator_token4, - ACTIONS(1813), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, ACTIONS(1817), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(1831), 1, + ACTIONS(1835), 1, aux_sym_array_type_definition_token1, - ACTIONS(1833), 1, + ACTIONS(1837), 1, aux_sym_interface_type_definition_token2, ACTIONS(1839), 1, aux_sym_with_clause_token1, @@ -39477,7 +39477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_null_exclusion, STATE(1446), 1, sym_record_definition, - ACTIONS(1821), 3, + ACTIONS(1825), 3, aux_sym_access_to_subprogram_definition_token1, aux_sym_private_extension_declaration_token1, aux_sym_interface_type_definition_token1, @@ -39524,7 +39524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(509), 4, + STATE(504), 4, sym__factor, sym_factor_power, sym_factor_abs, @@ -39537,7 +39537,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(497), 14, + STATE(498), 14, sym__parenthesized_expression, sym__primary, sym_primary_null, @@ -39555,11 +39555,11 @@ static const uint16_t ts_small_parse_table[] = { [28469] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1854), 1, + ACTIONS(1853), 1, anon_sym_DASH, - STATE(504), 1, + STATE(508), 1, sym_binary_adding_operator, - STATE(512), 1, + STATE(516), 1, aux_sym__simple_expression_repeat1, ACTIONS(1851), 2, anon_sym_PLUS, @@ -39600,20 +39600,20 @@ static const uint16_t ts_small_parse_table[] = { [28521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1853), 1, anon_sym_DASH, - STATE(504), 1, + STATE(508), 1, sym_binary_adding_operator, - STATE(516), 1, + STATE(514), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1861), 2, + ACTIONS(1851), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1857), 3, + ACTIONS(1855), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 28, + ACTIONS(1857), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39645,20 +39645,20 @@ static const uint16_t ts_small_parse_table[] = { [28573] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1853), 1, anon_sym_DASH, - STATE(504), 1, + STATE(508), 1, sym_binary_adding_operator, - STATE(512), 1, + STATE(515), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1861), 2, + ACTIONS(1851), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1857), 3, + ACTIONS(1847), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1859), 28, + ACTIONS(1849), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39690,20 +39690,20 @@ static const uint16_t ts_small_parse_table[] = { [28625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1866), 1, anon_sym_DASH, - STATE(504), 1, + STATE(508), 1, sym_binary_adding_operator, - STATE(514), 1, + STATE(515), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1861), 2, + ACTIONS(1863), 2, anon_sym_PLUS, anon_sym_AMP, - ACTIONS(1865), 3, + ACTIONS(1859), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1867), 28, + ACTIONS(1861), 28, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -39735,13 +39735,13 @@ static const uint16_t ts_small_parse_table[] = { [28677] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1863), 1, + ACTIONS(1853), 1, anon_sym_DASH, - STATE(504), 1, + STATE(508), 1, sym_binary_adding_operator, - STATE(512), 1, + STATE(515), 1, aux_sym__simple_expression_repeat1, - ACTIONS(1861), 2, + ACTIONS(1851), 2, anon_sym_PLUS, anon_sym_AMP, ACTIONS(1869), 3, @@ -39780,13 +39780,13 @@ static const uint16_t ts_small_parse_table[] = { [28729] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1805), 1, aux_sym_attribute_designator_token1, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(1831), 1, + ACTIONS(1835), 1, aux_sym_array_type_definition_token1, - ACTIONS(1833), 1, + ACTIONS(1837), 1, aux_sym_interface_type_definition_token2, ACTIONS(1873), 1, anon_sym_LPAREN, @@ -39816,7 +39816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type_definition, STATE(1324), 1, sym_interface_type_definition, - ACTIONS(1821), 2, + ACTIONS(1825), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, STATE(1309), 3, @@ -39839,13 +39839,13 @@ static const uint16_t ts_small_parse_table[] = { [28810] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1805), 1, aux_sym_attribute_designator_token1, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(1831), 1, + ACTIONS(1835), 1, aux_sym_array_type_definition_token1, - ACTIONS(1833), 1, + ACTIONS(1837), 1, aux_sym_interface_type_definition_token2, ACTIONS(1873), 1, anon_sym_LPAREN, @@ -39875,7 +39875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type_definition, STATE(1324), 1, sym_interface_type_definition, - ACTIONS(1821), 2, + ACTIONS(1825), 2, aux_sym_access_to_subprogram_definition_token1, aux_sym_interface_type_definition_token1, STATE(1309), 3, @@ -39916,7 +39916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_DOT, - STATE(671), 7, + STATE(672), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -39944,12 +39944,12 @@ static const uint16_t ts_small_parse_table[] = { [28946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 4, + ACTIONS(1859), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, - ACTIONS(1849), 30, + ACTIONS(1861), 30, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -40021,94 +40021,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, [29033] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_allocator_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(1904), 1, - sym_numeric_literal, - ACTIONS(1906), 1, - aux_sym_primary_null_token1, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(275), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(502), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29088] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(1908), 1, - sym_numeric_literal, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(275), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(506), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29143] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, @@ -40137,50 +40049,6 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - STATE(502), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [29198] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(225), 1, - anon_sym_LBRACK, - ACTIONS(239), 1, - aux_sym_allocator_token1, - ACTIONS(425), 1, - aux_sym_primary_null_token1, - ACTIONS(523), 1, - sym_identifier, - ACTIONS(1910), 1, - sym_numeric_literal, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(521), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(275), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, STATE(503), 14, sym__parenthesized_expression, sym__primary, @@ -40196,7 +40064,137 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [29253] = 3, + [29088] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1906), 1, + sym_numeric_literal, + ACTIONS(1908), 1, + aux_sym_primary_null_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(502), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29143] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1910), 1, + sym_numeric_literal, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(507), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29198] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(917), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(672), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + ACTIONS(931), 9, + anon_sym_COMMA, + 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, + [29249] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1912), 1, @@ -40232,58 +40230,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_delay_until_statement_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [29292] = 9, + [29288] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, + ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(917), 3, + ACTIONS(225), 1, + anon_sym_LBRACK, + ACTIONS(239), 1, + aux_sym_allocator_token1, + ACTIONS(425), 1, + aux_sym_primary_null_token1, + ACTIONS(523), 1, + sym_identifier, + ACTIONS(1906), 1, + sym_numeric_literal, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(521), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(275), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(502), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [29343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + sym_identifier, + ACTIONS(1918), 4, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_LBRACK, + ACTIONS(1743), 7, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(671), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 8, - anon_sym_PLUS, - anon_sym_AMP, anon_sym_SLASH, anon_sym_mod, anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - ACTIONS(931), 9, + ACTIONS(1745), 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, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, + anon_sym_EQ_GT, aux_sym_with_clause_token2, + anon_sym_PIPE, + anon_sym_DOT_DOT, aux_sym_expression_token1, aux_sym_expression_token3, - anon_sym_COLON_EQ, - [29343] = 9, + aux_sym_expression_token5, + aux_sym_relation_membership_token1, + [29385] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1781), 1, anon_sym_EQ_GT, ACTIONS(1783), 1, anon_sym_PIPE, - ACTIONS(1916), 1, + ACTIONS(1920), 1, anon_sym_COMMA, - ACTIONS(1919), 1, + ACTIONS(1923), 1, anon_sym_COLON, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, @@ -40315,43 +40352,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(1923), 4, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_LBRACK, - ACTIONS(1739), 7, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - ACTIONS(1741), 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, [29435] = 19, ACTIONS(3), 1, sym_comment, @@ -40371,7 +40371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_accept_statement, STATE(30), 1, sym_procedure_call_statement, - STATE(822), 1, + STATE(826), 1, sym_guard, STATE(1087), 1, sym_select_alternative, @@ -40490,7 +40490,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(919), 2, sym_tick, anon_sym_DOT, - STATE(654), 7, + STATE(660), 7, sym_discriminant_constraint, sym__constraint, sym__scalar_constraint, @@ -40519,7 +40519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1783), 1, anon_sym_PIPE, - ACTIONS(1793), 1, + ACTIONS(1797), 1, anon_sym_EQ_GT, STATE(1213), 1, aux_sym_discriminant_association_repeat1, @@ -40549,115 +40549,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29678] = 6, + [29678] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(931), 1, + anon_sym_RPAREN, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(1923), 1, anon_sym_COLON, ACTIONS(1943), 1, anon_sym_COMMA, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(917), 5, - anon_sym_LT, - anon_sym_GT, + ACTIONS(917), 3, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(919), 18, - anon_sym_EQ, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_DOT, + STATE(672), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 8, anon_sym_PLUS, anon_sym_AMP, + anon_sym_SLASH, anon_sym_mod, anon_sym_rem, sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, - anon_sym_STAR_STAR, - [29718] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(1947), 1, - aux_sym_package_specification_token3, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(955), 1, - sym_overriding_indicator, - STATE(1810), 1, - sym__defining_identifier_list, - STATE(1081), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(539), 12, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym__protected_element_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat2, - [29774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1953), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(1739), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1741), 19, - anon_sym_SLASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_mod, - anon_sym_rem, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - anon_sym_EQ_GT, - aux_sym_with_clause_token2, - anon_sym_PIPE, anon_sym_DOT_DOT, - aux_sym_expression_token1, - aux_sym_expression_token3, - aux_sym_expression_token5, - aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [29810] = 14, + [29730] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40699,27 +40631,27 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29866] = 14, + [29786] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1955), 1, - sym_identifier, - ACTIONS(1958), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1961), 1, - aux_sym_package_specification_token3, - ACTIONS(1963), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(1966), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1969), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1972), 1, + ACTIONS(49), 1, aux_sym_entry_declaration_token1, - ACTIONS(1975), 1, + ACTIONS(53), 1, aux_sym_global_mode_token1, - ACTIONS(1978), 1, + ACTIONS(57), 1, aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(1947), 1, + aux_sym_package_specification_token3, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, STATE(955), 1, sym_overriding_indicator, STATE(1810), 1, @@ -40728,7 +40660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(539), 12, + STATE(542), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40741,7 +40673,39 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29922] = 14, + [29842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1953), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(1743), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1745), 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, + [29878] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -40760,7 +40724,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1981), 1, + ACTIONS(1955), 1, aux_sym_package_specification_token3, STATE(955), 1, sym_overriding_indicator, @@ -40770,7 +40734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(539), 12, + STATE(536), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40783,45 +40747,81 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat2, - [29978] = 12, + [29934] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(931), 1, - anon_sym_RPAREN, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(1919), 1, + ACTIONS(1957), 1, + sym_identifier, + ACTIONS(1960), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1963), 1, + aux_sym_package_specification_token3, + ACTIONS(1965), 1, + aux_sym_relation_membership_token1, + ACTIONS(1968), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1971), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1974), 1, + aux_sym_entry_declaration_token1, + ACTIONS(1977), 1, + aux_sym_global_mode_token1, + ACTIONS(1980), 1, + aux_sym_pragma_g_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(540), 12, + sym_component_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym__protected_operation_declaration, + sym__protected_element_declaration, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym_pragma_g, + sym_record_representation_clause, + sym_subprogram_declaration, + aux_sym_protected_definition_repeat2, + [29990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, anon_sym_COLON, ACTIONS(1943), 1, anon_sym_COMMA, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - ACTIONS(917), 3, + ACTIONS(917), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT, - STATE(671), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 8, + anon_sym_SLASH, + ACTIONS(919), 18, + anon_sym_EQ, + anon_sym_SLASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS, anon_sym_AMP, - anon_sym_SLASH, anon_sym_mod, anon_sym_rem, sym_tick, - anon_sym_DOT_DOT, + 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, [30030] = 14, ACTIONS(3), 1, @@ -40852,7 +40852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(536), 12, + STATE(540), 12, sym_component_declaration, sym__aspect_clause, sym_at_clause, @@ -40890,13 +40890,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, STATE(955), 1, sym_overriding_indicator, - STATE(1709), 1, + STATE(1874), 1, sym_protected_definition, STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40932,13 +40932,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, STATE(955), 1, sym_overriding_indicator, - STATE(1874), 1, + STATE(1709), 1, sym_protected_definition, STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -40974,13 +40974,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, STATE(955), 1, sym_overriding_indicator, - STATE(1513), 1, + STATE(1637), 1, sym_protected_definition, STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41016,13 +41016,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, STATE(955), 1, sym_overriding_indicator, - STATE(1870), 1, + STATE(1513), 1, sym_protected_definition, STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41033,12 +41033,54 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30314] = 5, + [30314] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, ACTIONS(1997), 1, + aux_sym_allocator_token1, + STATE(955), 1, + sym_overriding_indicator, + STATE(1870), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(568), 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, + [30371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1999), 1, sym_tick, - ACTIONS(2000), 1, + ACTIONS(2002), 1, anon_sym_EQ_GT, ACTIONS(917), 6, anon_sym_EQ, @@ -41065,129 +41107,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30351] = 15, + [30408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1985), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1987), 1, - aux_sym_package_specification_token3, - ACTIONS(2002), 1, - aux_sym_allocator_token1, - STATE(955), 1, - sym_overriding_indicator, - STATE(1637), 1, - sym_protected_definition, - STATE(1081), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(567), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30408] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2004), 1, - aux_sym_package_specification_token3, ACTIONS(2006), 1, - aux_sym_subunit_token1, - ACTIONS(2008), 1, - aux_sym_entry_declaration_token1, - STATE(1035), 1, - sym_overriding_indicator, - STATE(1103), 1, - sym_function_specification, - STATE(1105), 1, - sym_procedure_specification, - STATE(1142), 1, - sym__subprogram_specification, - STATE(562), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [30462] = 14, + anon_sym_LPAREN, + ACTIONS(2004), 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, + [30440] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1985), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1987), 1, - aux_sym_package_specification_token3, - STATE(955), 1, - sym_overriding_indicator, - STATE(1868), 1, - sym_protected_definition, - STATE(1081), 3, - sym_function_specification, - sym_procedure_specification, - sym__subprogram_specification, - STATE(567), 10, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym_pragma_g, - sym_record_representation_clause, - sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30516] = 14, + ACTIONS(921), 1, + anon_sym_LPAREN, + ACTIONS(927), 1, + aux_sym_attribute_designator_token2, + ACTIONS(929), 1, + aux_sym_attribute_designator_token3, + ACTIONS(2008), 1, + aux_sym_range_attribute_designator_token1, + ACTIONS(931), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(917), 3, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT, + STATE(672), 7, + sym_discriminant_constraint, + sym__constraint, + sym__scalar_constraint, + sym_range_constraint, + sym_index_constraint, + sym_digits_constraint, + sym_delta_constraint, + ACTIONS(919), 8, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + sym_tick, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [30484] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41216,7 +41200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41227,47 +41211,47 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30570] = 14, + [30538] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, ACTIONS(53), 1, aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1985), 1, - aux_sym_compilation_unit_token1, - ACTIONS(1987), 1, + ACTIONS(2011), 1, aux_sym_package_specification_token3, - STATE(955), 1, + ACTIONS(2013), 1, + aux_sym_subunit_token1, + ACTIONS(2015), 1, + aux_sym_entry_declaration_token1, + STATE(1035), 1, sym_overriding_indicator, - STATE(1670), 1, - sym_protected_definition, - STATE(1081), 3, + STATE(1103), 1, sym_function_specification, + STATE(1105), 1, sym_procedure_specification, + STATE(1142), 1, sym__subprogram_specification, - STATE(567), 10, + STATE(563), 12, + sym_subprogram_body, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, - sym__protected_operation_declaration, - sym_entry_declaration, + sym__protected_operation_item, + sym_entry_body, sym_enumeration_representation_clause, - sym_pragma_g, + sym_null_procedure_declaration, sym_record_representation_clause, sym_subprogram_declaration, - aux_sym_protected_definition_repeat1, - [30624] = 14, + sym_expression_function_declaration, + aux_sym_protected_body_repeat1, + [30592] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41296,7 +41280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41307,39 +41291,10 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [30678] = 3, + [30646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2012), 1, - anon_sym_LPAREN, - ACTIONS(2010), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [30710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2014), 1, + ACTIONS(2017), 1, anon_sym_COLON, ACTIONS(917), 5, anon_sym_LT, @@ -41366,41 +41321,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token5, aux_sym_relation_membership_token1, anon_sym_STAR_STAR, - [30744] = 9, + [30680] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - aux_sym_attribute_designator_token2, - ACTIONS(929), 1, - aux_sym_attribute_designator_token3, - ACTIONS(2016), 1, - aux_sym_range_attribute_designator_token1, - ACTIONS(931), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(917), 3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT, - STATE(671), 7, - sym_discriminant_constraint, - sym__constraint, - sym__scalar_constraint, - sym_range_constraint, - sym_index_constraint, - sym_digits_constraint, - sym_delta_constraint, - ACTIONS(919), 8, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - sym_tick, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1868), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(568), 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, + [30734] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(1985), 1, + aux_sym_compilation_unit_token1, + ACTIONS(1987), 1, + aux_sym_package_specification_token3, + STATE(955), 1, + sym_overriding_indicator, + STATE(1669), 1, + sym_protected_definition, + STATE(1081), 3, + sym_function_specification, + sym_procedure_specification, + sym__subprogram_specification, + STATE(568), 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, [30788] = 7, ACTIONS(3), 1, sym_comment, @@ -41457,13 +41457,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_package_specification_token3, STATE(955), 1, sym_overriding_indicator, - STATE(1669), 1, + STATE(1670), 1, sym_protected_definition, STATE(1081), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - STATE(567), 10, + STATE(568), 10, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -41479,7 +41479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2025), 1, sym_identifier, @@ -41514,20 +41514,20 @@ static const uint16_t ts_small_parse_table[] = { [30931] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2035), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2038), 1, - aux_sym_package_specification_token3, - ACTIONS(2040), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(2043), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2046), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2049), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2052), 1, + ACTIONS(53), 1, aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2011), 1, + aux_sym_package_specification_token3, + ACTIONS(2015), 1, + aux_sym_entry_declaration_token1, STATE(1035), 1, sym_overriding_indicator, STATE(1103), 1, @@ -41536,7 +41536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_procedure_specification, STATE(1142), 1, sym__subprogram_specification, - STATE(560), 12, + STATE(563), 12, sym_subprogram_body, sym__aspect_clause, sym_at_clause, @@ -41552,23 +41552,23 @@ static const uint16_t ts_small_parse_table[] = { [30982] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 1, + ACTIONS(2035), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2060), 1, + ACTIONS(2040), 1, aux_sym_relation_membership_token1, - ACTIONS(2063), 1, + ACTIONS(2043), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2066), 1, + ACTIONS(2046), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2069), 1, + ACTIONS(2049), 1, aux_sym_entry_declaration_token1, - ACTIONS(2072), 1, + ACTIONS(2052), 1, aux_sym_global_mode_token1, - ACTIONS(2075), 1, + ACTIONS(2055), 1, aux_sym_pragma_g_token1, STATE(955), 1, sym_overriding_indicator, - ACTIONS(2058), 2, + ACTIONS(2038), 2, aux_sym_compilation_unit_token1, aux_sym_package_specification_token3, STATE(1081), 3, @@ -41586,127 +41586,10 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31031] = 13, + [31031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2008), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2078), 1, - aux_sym_package_specification_token3, - STATE(1035), 1, - sym_overriding_indicator, - STATE(1103), 1, - sym_function_specification, - STATE(1105), 1, - sym_procedure_specification, - STATE(1142), 1, - sym__subprogram_specification, - STATE(560), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [31082] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2008), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2078), 1, - aux_sym_package_specification_token3, - STATE(1035), 1, - sym_overriding_indicator, - STATE(1103), 1, - sym_function_specification, - STATE(1105), 1, - sym_procedure_specification, - STATE(1142), 1, - sym__subprogram_specification, - STATE(568), 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, - [31133] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(1831), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2080), 1, - aux_sym_general_access_modifier_token1, - ACTIONS(2082), 1, - aux_sym_component_definition_token1, - ACTIONS(2084), 1, - aux_sym_exception_declaration_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(972), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1014), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2086), 23, + ACTIONS(2058), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41730,22 +41613,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31219] = 8, + [31060] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2015), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2060), 1, + aux_sym_package_specification_token3, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(566), 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, + [31111] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1949), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(1951), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2015), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2060), 1, + aux_sym_package_specification_token3, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(569), 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, + [31162] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2064), 1, aux_sym_expression_token1, - ACTIONS(2092), 1, + ACTIONS(2066), 1, aux_sym_expression_token3, - ACTIONS(2094), 1, + ACTIONS(2068), 1, aux_sym_expression_token5, - STATE(602), 1, - aux_sym_expression_repeat2, STATE(605), 1, - aux_sym_expression_repeat1, - STATE(608), 1, aux_sym_expression_repeat3, - ACTIONS(2088), 17, + STATE(606), 1, + aux_sym_expression_repeat2, + STATE(607), 1, + aux_sym_expression_repeat1, + ACTIONS(2062), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -41763,7 +41722,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [31260] = 13, + [31203] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2070), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2073), 1, + aux_sym_package_specification_token3, + ACTIONS(2075), 1, + aux_sym_relation_membership_token1, + ACTIONS(2078), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2081), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2084), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2087), 1, + aux_sym_global_mode_token1, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(566), 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, + [31254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 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, + [31283] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41780,9 +41804,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(1983), 1, + ACTIONS(1955), 1, aux_sym_package_specification_token3, - ACTIONS(2096), 1, + ACTIONS(2092), 1, aux_sym_compilation_unit_token1, STATE(955), 1, sym_overriding_indicator, @@ -41801,7 +41825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_representation_clause, sym_subprogram_declaration, aux_sym_protected_definition_repeat1, - [31311] = 13, + [31334] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -41814,123 +41838,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2008), 1, + ACTIONS(2015), 1, aux_sym_entry_declaration_token1, + ACTIONS(2094), 1, + aux_sym_package_specification_token3, + STATE(1035), 1, + sym_overriding_indicator, + STATE(1103), 1, + sym_function_specification, + STATE(1105), 1, + sym_procedure_specification, + STATE(1142), 1, + sym__subprogram_specification, + STATE(566), 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, + [31385] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 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, + [31414] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(1835), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, ACTIONS(2098), 1, - aux_sym_package_specification_token3, - STATE(1035), 1, - sym_overriding_indicator, - STATE(1103), 1, - sym_function_specification, - STATE(1105), 1, - sym_procedure_specification, - STATE(1142), 1, - sym__subprogram_specification, - STATE(560), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [31362] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1949), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(1951), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2004), 1, - aux_sym_package_specification_token3, - ACTIONS(2008), 1, - aux_sym_entry_declaration_token1, - STATE(1035), 1, - sym_overriding_indicator, - STATE(1103), 1, - sym_function_specification, - STATE(1105), 1, - sym_procedure_specification, - STATE(1142), 1, - sym__subprogram_specification, - STATE(562), 12, - sym_subprogram_body, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym__protected_operation_item, - sym_entry_body, - sym_enumeration_representation_clause, - sym_null_procedure_declaration, - sym_record_representation_clause, - sym_subprogram_declaration, - sym_expression_function_declaration, - aux_sym_protected_body_repeat1, - [31413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2100), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31442] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2102), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - anon_sym_COLON_EQ, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, + aux_sym_general_access_modifier_token1, + ACTIONS(2100), 1, + aux_sym_component_definition_token1, + ACTIONS(2102), 1, + aux_sym_exception_declaration_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(972), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1014), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, [31471] = 15, ACTIONS(3), 1, sym_comment, @@ -41938,15 +41938,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(1831), 1, + ACTIONS(1835), 1, aux_sym_array_type_definition_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, + ACTIONS(2100), 1, + aux_sym_component_definition_token1, ACTIONS(2104), 1, + aux_sym_general_access_modifier_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(972), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1014), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31525] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2108), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2110), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2112), 1, + aux_sym_access_to_subprogram_definition_token3, + STATE(641), 1, + sym_general_access_modifier, + STATE(776), 1, + sym_null_exclusion, + STATE(1256), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2106), 2, + aux_sym_use_clause_token1, + aux_sym_general_access_modifier_token1, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [31579] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(1835), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, STATE(969), 1, sym__subtype_indication, @@ -41964,145 +42042,13 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31525] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(1831), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2082), 1, - aux_sym_component_definition_token1, - ACTIONS(2106), 1, - aux_sym_general_access_modifier_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(972), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1014), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31579] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2110), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2112), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2114), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(633), 1, - sym_general_access_modifier, - STATE(780), 1, - sym_null_exclusion, - STATE(1256), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2108), 2, - aux_sym_use_clause_token1, - aux_sym_general_access_modifier_token1, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [31633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2118), 1, - anon_sym_PIPE, - STATE(575), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2116), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - 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, - [31664] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, - anon_sym_PIPE, - STATE(578), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2121), 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, - [31695] = 10, + [31633] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -42111,79 +42057,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_pragma_g_token1, ACTIONS(1945), 1, sym_identifier, - ACTIONS(2127), 1, - aux_sym_with_clause_token2, - ACTIONS(2129), 1, - aux_sym_use_clause_token2, - STATE(1844), 1, - sym__defining_identifier_list, - STATE(888), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - ACTIONS(2125), 3, + ACTIONS(2116), 1, aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - STATE(579), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, - [31738] = 4, - ACTIONS(3), 1, - sym_comment, + ACTIONS(2119), 1, + aux_sym_with_clause_token2, + ACTIONS(2121), 1, + aux_sym_use_clause_token2, ACTIONS(2123), 1, - anon_sym_PIPE, - STATE(575), 1, - aux_sym_membership_choice_list_repeat1, - ACTIONS(2131), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [31769] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2133), 1, - sym_identifier, - ACTIONS(2136), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(2141), 1, - aux_sym_with_clause_token2, - ACTIONS(2144), 1, - aux_sym_use_clause_token2, - ACTIONS(2147), 1, - aux_sym_pragma_g_token1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2126), 1, + aux_sym_access_to_subprogram_definition_token3, STATE(1844), 1, sym__defining_identifier_list, - STATE(888), 2, + STATE(881), 2, sym_formal_concrete_subprogram_declaration, sym_formal_abstract_subprogram_declaration, - ACTIONS(2139), 3, - aux_sym_package_specification_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, STATE(579), 10, sym_use_clause, sym__generic_formal_parameter_declaration, @@ -42195,22 +42083,22 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_package_declaration, sym_pragma_g, aux_sym_generic_formal_part_repeat1, - [31812] = 14, + [31680] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(511), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2150), 1, + ACTIONS(2129), 1, aux_sym_general_access_modifier_token1, - ACTIONS(2152), 1, + ACTIONS(2131), 1, aux_sym_component_definition_token1, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, STATE(1195), 1, sym__subtype_indication, @@ -42232,59 +42120,142 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31863] = 14, + [31731] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(227), 1, - aux_sym_chunk_specification_token1, - ACTIONS(249), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2154), 1, + ACTIONS(2133), 1, sym_identifier, + ACTIONS(2136), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(2141), 1, + aux_sym_with_clause_token2, + ACTIONS(2144), 1, + aux_sym_use_clause_token2, + ACTIONS(2147), 1, + aux_sym_pragma_g_token1, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(881), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2139), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(577), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [31774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 1, + anon_sym_PIPE, + STATE(580), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2150), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + 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, + [31805] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2119), 1, + aux_sym_with_clause_token2, + ACTIONS(2121), 1, + aux_sym_use_clause_token2, + STATE(1844), 1, + sym__defining_identifier_list, + STATE(881), 2, + sym_formal_concrete_subprogram_declaration, + sym_formal_abstract_subprogram_declaration, + ACTIONS(2154), 3, + aux_sym_package_specification_token1, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + STATE(577), 10, + sym_use_clause, + sym__generic_formal_parameter_declaration, + sym_formal_object_declaration, + sym__formal_type_declaration, + sym_formal_complete_type_declaration, + sym_formal_incomplete_type_declaration, + sym_formal_subprogram_declaration, + sym_formal_package_declaration, + sym_pragma_g, + aux_sym_generic_formal_part_repeat1, + [31848] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(2158), 1, - aux_sym_component_definition_token1, - STATE(658), 1, - sym_non_empty_mode, - STATE(728), 1, - sym_null_exclusion, - STATE(954), 1, - sym_access_definition, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2156), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(830), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [31914] = 14, + anon_sym_PIPE, + STATE(580), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2156), 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, + [31879] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(1831), 1, + ACTIONS(1835), 1, aux_sym_array_type_definition_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2160), 1, + ACTIONS(2161), 1, aux_sym_general_access_modifier_token1, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, STATE(997), 1, sym__subtype_indication, @@ -42300,47 +42271,76 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [31965] = 12, + [31930] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(1945), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2163), 1, sym_identifier, - ACTIONS(2127), 1, + ACTIONS(2167), 1, + aux_sym_component_definition_token1, + STATE(665), 1, + sym_non_empty_mode, + STATE(728), 1, + sym_null_exclusion, + STATE(954), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2165), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(835), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [31981] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2152), 1, + anon_sym_PIPE, + STATE(578), 1, + aux_sym_membership_choice_list_repeat1, + ACTIONS(2169), 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, - ACTIONS(2129), 1, - aux_sym_use_clause_token2, - ACTIONS(2162), 1, - aux_sym_package_specification_token1, - ACTIONS(2165), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2168), 1, - aux_sym_access_to_subprogram_definition_token3, - STATE(1844), 1, - sym__defining_identifier_list, - STATE(888), 2, - sym_formal_concrete_subprogram_declaration, - sym_formal_abstract_subprogram_declaration, - STATE(577), 10, - sym_use_clause, - sym__generic_formal_parameter_declaration, - sym_formal_object_declaration, - sym__formal_type_declaration, - sym_formal_complete_type_declaration, - sym_formal_incomplete_type_declaration, - sym_formal_subprogram_declaration, - sym_formal_package_declaration, - sym_pragma_g, - aux_sym_generic_formal_part_repeat1, + 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, [32012] = 3, ACTIONS(3), 1, sym_comment, @@ -42367,147 +42367,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32041] = 14, + [32041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2175), 1, - aux_sym_component_definition_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1075), 1, - sym_access_definition, - STATE(1076), 1, - sym__subtype_indication, - STATE(1131), 1, - sym_component_definition, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32091] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 1, - sym_identifier, - ACTIONS(2179), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - anon_sym_LBRACK, - ACTIONS(2185), 1, - aux_sym_range_attribute_designator_token1, - STATE(251), 1, - sym_attribute_designator, - STATE(565), 1, - sym_range_attribute_designator, - ACTIONS(2183), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(250), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [32131] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(1831), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1033), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1034), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32179] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(227), 1, - aux_sym_chunk_specification_token1, - ACTIONS(249), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2187), 1, - sym_identifier, - STATE(630), 1, - sym_non_empty_mode, - STATE(708), 1, - sym_null_exclusion, - STATE(985), 1, - sym_access_definition, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2189), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(851), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [32227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2191), 20, + ACTIONS(2175), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42528,22 +42391,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32253] = 14, + [32067] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2175), 1, + ACTIONS(2177), 1, aux_sym_component_definition_token1, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, - STATE(1022), 1, + STATE(1075), 1, + sym_access_definition, + STATE(1076), 1, + sym__subtype_indication, + STATE(1131), 1, + sym_component_definition, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 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, + [32143] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2177), 1, + aux_sym_component_definition_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1058), 1, sym_component_definition, STATE(1075), 1, sym_access_definition, @@ -42558,26 +42481,179 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32303] = 13, + [32193] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(1835), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(969), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(996), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32241] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(1835), 1, + aux_sym_array_type_definition_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1033), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1034), 2, + sym_access_definition, + sym_array_type_definition, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2156), 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, + [32315] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2181), 1, + sym_identifier, + STATE(634), 1, + sym_non_empty_mode, + STATE(710), 1, + sym_null_exclusion, + STATE(985), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2183), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(837), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [32363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 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, + [32389] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(511), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2193), 1, + ACTIONS(2187), 1, aux_sym_general_access_modifier_token1, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, STATE(1195), 1, sym__subtype_indication, @@ -42599,113 +42675,37 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [32351] = 2, + [32437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32377] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2195), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2197), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token3, - aux_sym_expression_token4, - aux_sym_expression_token5, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32429] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(1831), 1, - aux_sym_array_type_definition_token1, - ACTIONS(2031), 1, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + aux_sym_range_attribute_designator_token1, + STATE(251), 1, + sym_attribute_designator, + STATE(562), 1, + sym_range_attribute_designator, + ACTIONS(2195), 4, aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(969), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(996), 2, - sym_access_definition, - sym_array_type_definition, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(250), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, [32477] = 14, ACTIONS(3), 1, sym_comment, @@ -42713,15 +42713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2175), 1, + ACTIONS(2177), 1, aux_sym_component_definition_token1, - STATE(695), 1, + STATE(696), 1, sym_null_exclusion, - STATE(1058), 1, + STATE(1022), 1, sym_component_definition, STATE(1075), 1, sym_access_definition, @@ -42736,7 +42736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, @@ -42791,156 +42791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32582] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1195), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - STATE(1126), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(215), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(263), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32627] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1492), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - STATE(1493), 2, - sym__loop_parameter_subtype_indication, - sym_access_definition, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32672] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(511), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1195), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - STATE(1107), 2, - sym_access_definition, - sym__return_subtype_indication, - ACTIONS(215), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(263), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [32717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 1, - aux_sym_expression_token3, - STATE(598), 1, - aux_sym_expression_repeat2, - ACTIONS(2206), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [32746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - aux_sym_expression_token5, - STATE(603), 1, - aux_sym_expression_repeat3, - ACTIONS(2208), 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, - [32775] = 8, + [32582] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1937), 1, @@ -42969,14 +42820,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expression_token1, aux_sym_expression_token3, aux_sym_expression_token5, - [32812] = 4, + [32619] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 1, - aux_sym_expression_token1, - STATE(607), 1, - aux_sym_expression_repeat1, - ACTIONS(2206), 17, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(511), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1195), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1107), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(215), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(263), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32664] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2206), 1, + sym_identifier, + ACTIONS(2210), 1, + anon_sym_SEMI, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + STATE(1272), 1, + sym_subprogram_default, + STATE(1687), 1, + sym_aspect_specification, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2214), 2, + aux_sym_primary_null_token1, + anon_sym_LT_GT, + ACTIONS(2208), 3, + 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, + [32707] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1492), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1493), 2, + sym__loop_parameter_subtype_indication, + sym_access_definition, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [32752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + aux_sym_expression_token5, + STATE(603), 1, + aux_sym_expression_repeat3, + ACTIONS(2216), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -42994,46 +42943,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32841] = 11, + [32781] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2213), 1, + ACTIONS(511), 1, sym_identifier, - ACTIONS(2217), 1, - anon_sym_SEMI, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - STATE(1272), 1, - sym_subprogram_default, - STATE(1687), 1, - sym_aspect_specification, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1195), 1, + sym__subtype_indication, STATE(1932), 1, sym_value_sequence, - ACTIONS(2221), 2, - aux_sym_primary_null_token1, - anon_sym_LT_GT, - ACTIONS(2215), 3, + STATE(1083), 2, + sym__name, + sym_function_call, + STATE(1126), 2, + sym_access_definition, + sym__return_subtype_indication, + ACTIONS(215), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(951), 7, - sym__name, + STATE(263), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, + [32826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + aux_sym_expression_token5, + STATE(603), 1, + aux_sym_expression_repeat3, + ACTIONS(2221), 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, + [32855] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2066), 1, + aux_sym_expression_token3, + STATE(598), 1, + aux_sym_expression_repeat2, + ACTIONS(2221), 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, [32884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 1, + ACTIONS(2064), 1, aux_sym_expression_token1, - STATE(607), 1, + STATE(608), 1, aux_sym_expression_repeat1, - ACTIONS(2223), 17, + ACTIONS(2221), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -43054,11 +43054,11 @@ static const uint16_t ts_small_parse_table[] = { [32913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 1, - aux_sym_expression_token5, - STATE(603), 1, - aux_sym_expression_repeat3, - ACTIONS(2206), 17, + ACTIONS(2225), 1, + aux_sym_expression_token1, + STATE(608), 1, + aux_sym_expression_repeat1, + ACTIONS(2223), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -43098,51 +43098,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [32966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 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, - [32990] = 10, + [32966] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(227), 1, + aux_sym_chunk_specification_token1, + ACTIONS(249), 1, + aux_sym_non_empty_mode_token1, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, ACTIONS(2228), 1, sym_identifier, - ACTIONS(2232), 1, - aux_sym_package_specification_token3, - ACTIONS(2234), 1, - aux_sym_at_clause_token1, - STATE(635), 1, - sym_mod_clause, + STATE(671), 1, + sym_non_empty_mode, + STATE(793), 1, + sym_null_exclusion, STATE(1932), 1, sym_value_sequence, - STATE(636), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, ACTIONS(2230), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1019), 7, + STATE(829), 7, sym__name, sym_selected_component, sym_slice, @@ -43150,56 +43129,26 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33030] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(951), 1, - anon_sym_DOT, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(1711), 1, - sym_tick, - ACTIONS(2238), 1, - aux_sym_iterator_filter_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1276), 1, - sym_iterator_filter, - ACTIONS(975), 2, - anon_sym_DASH, - anon_sym_STAR, - ACTIONS(2236), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - ACTIONS(977), 7, - anon_sym_PLUS, - anon_sym_AMP, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_rem, - anon_sym_DOT_DOT, - anon_sym_STAR_STAR, - [33070] = 11, + [33008] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(2240), 1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2236), 1, anon_sym_LPAREN, - STATE(500), 1, + STATE(497), 1, sym__subtype_indication_paren_constraint, - STATE(641), 1, + STATE(649), 1, sym_subpool_specification, STATE(752), 1, sym_null_exclusion, STATE(1932), 1, sym_value_sequence, - ACTIONS(2242), 3, + ACTIONS(2234), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -43211,10 +43160,10 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33112] = 2, + [33050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2246), 18, + ACTIONS(2238), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, @@ -43233,20 +43182,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_elsif_expression_item_token1, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33136] = 10, + [33074] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2244), 1, + aux_sym_package_specification_token3, + ACTIONS(2246), 1, + aux_sym_at_clause_token1, + STATE(638), 1, + sym_mod_clause, + STATE(1932), 1, + sym_value_sequence, + STATE(639), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2242), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33114] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, anon_sym_DOT, ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1703), 1, sym_tick, - ACTIONS(2238), 1, + ACTIONS(2250), 1, aux_sym_iterator_filter_token1, STATE(264), 1, sym_actual_parameter_part, - STATE(1197), 1, + STATE(1276), 1, sym_iterator_filter, ACTIONS(975), 2, anon_sym_DASH, @@ -43263,12 +43242,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [33176] = 11, + [33154] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2252), 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, + [33178] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + STATE(696), 1, + sym_null_exclusion, + STATE(1111), 1, + sym__subtype_indication, + STATE(1112), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [33222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(951), 1, + anon_sym_DOT, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + sym_tick, + ACTIONS(2250), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1197), 1, + sym_iterator_filter, + ACTIONS(975), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(2254), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + ACTIONS(977), 7, + anon_sym_PLUS, + anon_sym_AMP, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_rem, + anon_sym_DOT_DOT, + anon_sym_STAR_STAR, + [33262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + STATE(251), 1, + sym_attribute_designator, + ACTIONS(2195), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(250), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [33296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2223), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token3, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_with_clause_token2, + anon_sym_PIPE, + aux_sym_range_attribute_designator_token1, + aux_sym_expression_token1, + aux_sym_expression_token2, + aux_sym_expression_token4, + aux_sym_elsif_expression_item_token1, + aux_sym_accept_statement_token2, + aux_sym_loop_statement_token1, + [33320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2216), 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, + [33344] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + STATE(1062), 1, + sym_attribute_designator, + ACTIONS(2195), 4, + aux_sym_attribute_designator_token1, + aux_sym_attribute_designator_token2, + aux_sym_attribute_designator_token3, + aux_sym_attribute_designator_token4, + STATE(250), 10, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [33378] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2025), 1, sym_identifier, @@ -43294,167 +43455,6 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2250), 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, - [33242] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 1, - sym_identifier, - ACTIONS(2179), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - anon_sym_LBRACK, - STATE(1062), 1, - sym_attribute_designator, - ACTIONS(2183), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(250), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33276] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - STATE(695), 1, - sym_null_exclusion, - STATE(1111), 1, - sym__subtype_indication, - STATE(1112), 1, - sym_access_definition, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33320] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(227), 1, - aux_sym_chunk_specification_token1, - ACTIONS(249), 1, - aux_sym_non_empty_mode_token1, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2252), 1, - sym_identifier, - STATE(666), 1, - sym_non_empty_mode, - STATE(793), 1, - sym_null_exclusion, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2254), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(828), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2177), 1, - sym_identifier, - ACTIONS(2179), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, - anon_sym_LBRACK, - STATE(251), 1, - sym_attribute_designator, - ACTIONS(2183), 4, - aux_sym_attribute_designator_token1, - aux_sym_attribute_designator_token2, - aux_sym_attribute_designator_token3, - aux_sym_attribute_designator_token4, - STATE(250), 10, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [33396] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2223), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token3, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_range_attribute_designator_token1, - aux_sym_expression_token1, - aux_sym_expression_token2, - aux_sym_expression_token4, - aux_sym_elsif_expression_item_token1, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, [33420] = 10, ACTIONS(3), 1, sym_comment, @@ -43463,20 +43463,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2256), 1, sym_identifier, ACTIONS(2260), 1, - aux_sym_component_choice_list_token1, - STATE(1162), 1, - sym_exception_choice, - STATE(1843), 1, - sym_choice_parameter_specification, - STATE(1846), 1, - sym_exception_choice_list, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2262), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2264), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2266), 1, + aux_sym_general_access_modifier_token1, STATE(1932), 1, sym_value_sequence, ACTIONS(2258), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(968), 7, + STATE(706), 7, sym__name, sym_selected_component, sym_slice, @@ -43489,23 +43489,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2262), 1, - sym_identifier, - ACTIONS(2266), 1, - aux_sym_access_to_subprogram_definition_token1, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, ACTIONS(2268), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2270), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2272), 1, - aux_sym_general_access_modifier_token1, + sym_identifier, + STATE(719), 1, + sym_null_exclusion, + STATE(1123), 1, + sym_access_definition, STATE(1932), 1, sym_value_sequence, - ACTIONS(2264), 3, + ACTIONS(2270), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(705), 7, + STATE(897), 7, sym__name, sym_selected_component, sym_slice, @@ -43513,75 +43513,51 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33498] = 4, + [33498] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - aux_sym_range_attribute_designator_token1, - STATE(670), 1, - sym_range_constraint, - ACTIONS(2274), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2274), 1, + aux_sym_case_expression_token1, + STATE(1504), 1, + sym_variant_part, + STATE(1810), 1, + sym__defining_identifier_list, + ACTIONS(2272), 2, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [33525] = 10, + aux_sym_package_specification_token3, + STATE(648), 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, + [33535] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(2206), 1, + sym_identifier, ACTIONS(2276), 1, - sym_identifier, - ACTIONS(2280), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2282), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(2284), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2286), 1, - aux_sym_general_access_modifier_token1, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2278), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(731), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33564] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2213), 1, - sym_identifier, - ACTIONS(2288), 1, aux_sym_private_type_declaration_token1, STATE(1222), 1, sym_subprogram_default, STATE(1932), 1, sym_value_sequence, - ACTIONS(2221), 2, + ACTIONS(2214), 2, aux_sym_primary_null_token1, anon_sym_LT_GT, - ACTIONS(2215), 3, + ACTIONS(2208), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -43593,14 +43569,72 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33601] = 4, + [33572] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2278), 1, + sym_identifier, + ACTIONS(2282), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2284), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2286), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(2288), 1, + aux_sym_general_access_modifier_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2280), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(731), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33611] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2274), 1, + aux_sym_case_expression_token1, + ACTIONS(2290), 1, + aux_sym_primary_null_token1, + STATE(1351), 1, + sym_variant_part, + STATE(1448), 1, + sym_component_list, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(625), 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, + [33650] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(933), 1, aux_sym_range_attribute_designator_token1, - STATE(669), 1, + STATE(662), 1, sym_range_constraint, - ACTIONS(2290), 15, + ACTIONS(2292), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -43616,28 +43650,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [33628] = 10, + [33677] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2292), 1, + ACTIONS(2294), 1, sym_identifier, - STATE(736), 1, - sym_null_exclusion, - STATE(831), 1, - sym_access_definition, + ACTIONS(2298), 1, + aux_sym_component_choice_list_token1, + STATE(1162), 1, + sym_exception_choice, + STATE(1843), 1, + sym_choice_parameter_specification, + STATE(1846), 1, + sym_exception_choice_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2294), 3, + ACTIONS(2296), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(734), 7, + STATE(968), 7, sym__name, sym_selected_component, sym_slice, @@ -43645,28 +43679,109 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33667] = 10, + [33716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + aux_sym_range_attribute_designator_token1, + STATE(669), 1, + sym_range_constraint, + ACTIONS(2300), 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, + [33743] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(1945), 1, + sym_identifier, + ACTIONS(2274), 1, + aux_sym_case_expression_token1, + ACTIONS(2290), 1, + aux_sym_primary_null_token1, + STATE(1351), 1, + sym_variant_part, + STATE(1810), 1, + sym__defining_identifier_list, + STATE(1819), 1, + sym_component_list, + STATE(625), 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, + [33782] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2031), 1, aux_sym_attribute_designator_token1, - ACTIONS(2296), 1, + ACTIONS(2302), 1, sym_identifier, - STATE(689), 1, + STATE(734), 1, + sym_null_exclusion, + STATE(828), 1, + sym_access_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2304), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(733), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [33821] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2031), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2306), 1, + sym_identifier, + STATE(690), 1, sym_null_exclusion, STATE(988), 1, sym_access_definition, STATE(1932), 1, sym_value_sequence, - ACTIONS(2298), 3, + ACTIONS(2308), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(840), 7, + STATE(842), 7, sym__name, sym_selected_component, sym_slice, @@ -43674,41 +43789,12 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33706] = 10, + [33860] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2031), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2300), 1, - sym_identifier, - STATE(718), 1, - sym_null_exclusion, - STATE(1123), 1, - sym_access_definition, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2302), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(896), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33745] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, ACTIONS(2025), 1, sym_identifier, @@ -43732,334 +43818,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [33784] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1217), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33822] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1073), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33860] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - sym_identifier, - ACTIONS(2304), 1, - aux_sym_package_specification_token3, - STATE(1932), 1, - sym_value_sequence, - STATE(644), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2230), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1019), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33894] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - sym_identifier, - ACTIONS(2304), 1, - aux_sym_package_specification_token3, - STATE(1932), 1, - sym_value_sequence, - STATE(648), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2230), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1019), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [33928] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1140), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [33966] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2260), 1, - aux_sym_component_choice_list_token1, - ACTIONS(2306), 1, - sym_identifier, - STATE(1162), 1, - sym_exception_choice, - STATE(1531), 1, - sym_exception_choice_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2258), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(968), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34002] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1262), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34040] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1497), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34078] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2240), 1, - sym_identifier, - STATE(499), 1, - sym__subtype_indication_paren_constraint, - STATE(752), 1, - sym_null_exclusion, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2242), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(270), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34114] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2308), 1, - sym_identifier, - ACTIONS(2312), 1, - aux_sym_use_clause_token1, - ACTIONS(2314), 1, - aux_sym_use_clause_token2, - STATE(1898), 1, - sym__name_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2310), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34150] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1141), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34188] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2228), 1, - sym_identifier, - ACTIONS(2316), 1, - aux_sym_package_specification_token3, - STATE(1932), 1, - sym_value_sequence, - STATE(648), 2, - sym_component_clause, - aux_sym_record_representation_clause_repeat1, - ACTIONS(2230), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1019), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34222] = 11, + [33899] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44070,11 +43829,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2318), 1, + ACTIONS(2310), 1, aux_sym_package_specification_token1, - ACTIONS(2320), 1, + ACTIONS(2312), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2322), 1, + ACTIONS(2314), 1, aux_sym_interface_type_definition_token1, STATE(1045), 1, sym_overriding_indicator, @@ -44088,44 +43847,16 @@ static const uint16_t ts_small_parse_table[] = { sym_package_body, sym_task_body, sym_protected_body, - [34262] = 10, + [33939] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - STATE(780), 1, - sym_null_exclusion, - STATE(1114), 1, - sym__subtype_indication, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(539), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(527), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [34300] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(843), 1, - sym_identifier, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, STATE(1384), 1, sym__subtype_indication, @@ -44138,27 +43869,27 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34338] = 8, + [33977] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - sym_identifier, - ACTIONS(2330), 1, + ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2333), 1, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2316), 1, aux_sym_package_specification_token3, STATE(1932), 1, sym_value_sequence, - STATE(648), 2, + STATE(642), 2, sym_component_clause, aux_sym_record_representation_clause_repeat1, - ACTIONS(2327), 3, + ACTIONS(2242), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -44170,18 +43901,44 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [34372] = 10, + [34011] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2316), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(643), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2242), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34045] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - STATE(780), 1, + STATE(776), 1, sym_null_exclusion, - STATE(1074), 1, + STATE(1262), 1, sym__subtype_indication, STATE(1932), 1, sym_value_sequence, @@ -44192,22 +43949,102 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34410] = 10, + [34083] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - STATE(780), 1, + STATE(776), 1, + sym_null_exclusion, + STATE(1217), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2240), 1, + sym_identifier, + ACTIONS(2318), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(643), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2242), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34155] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 1, + sym_identifier, + ACTIONS(2326), 1, + anon_sym_LBRACK, + ACTIONS(2329), 1, + aux_sym_package_specification_token3, + STATE(1932), 1, + sym_value_sequence, + STATE(643), 2, + sym_component_clause, + aux_sym_record_representation_clause_repeat1, + ACTIONS(2323), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1019), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34189] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + STATE(776), 1, sym_null_exclusion, STATE(1438), 1, sym__subtype_indication, @@ -44220,22 +44057,157 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34448] = 10, + [34227] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, ACTIONS(843), 1, sym_identifier, - ACTIONS(1815), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - STATE(780), 1, + STATE(776), 1, + sym_null_exclusion, + STATE(1114), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34265] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2331), 1, + sym_identifier, + ACTIONS(2335), 1, + aux_sym_use_clause_token1, + ACTIONS(2337), 1, + aux_sym_use_clause_token2, + STATE(1898), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2333), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(908), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34301] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + STATE(776), 1, + sym_null_exclusion, + STATE(1073), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34339] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + sym_identifier, + ACTIONS(2342), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2347), 1, + aux_sym_pragma_g_token1, + STATE(1810), 1, + sym__defining_identifier_list, + ACTIONS(2345), 3, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + aux_sym_case_expression_token1, + STATE(648), 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, + [34371] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2232), 1, + sym_identifier, + STATE(499), 1, + sym__subtype_indication_paren_constraint, + STATE(752), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2234), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(270), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34407] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + STATE(776), 1, sym_null_exclusion, STATE(1119), 1, sym__subtype_indication, @@ -44248,414 +44220,112 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(527), 5, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [34486] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2335), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2340), 1, - aux_sym_relation_membership_token1, - ACTIONS(2343), 1, - aux_sym_entry_declaration_token1, - ACTIONS(2346), 1, - aux_sym_global_mode_token1, - STATE(1612), 1, - sym_overriding_indicator, - ACTIONS(2338), 2, - aux_sym_compilation_unit_token1, - aux_sym_package_specification_token3, - STATE(652), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34519] = 8, + [34445] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2349), 1, + ACTIONS(843), 1, sym_identifier, - ACTIONS(2353), 1, - aux_sym_iterator_filter_token1, - ACTIONS(2355), 1, - anon_sym_SEMI, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2351), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(947), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_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, - [34573] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(2359), 1, - aux_sym_primary_null_token1, - ACTIONS(2361), 1, - aux_sym_case_expression_token1, - STATE(1351), 1, - sym_variant_part, - STATE(1448), 1, - sym_component_list, - STATE(1810), 1, - sym__defining_identifier_list, - STATE(664), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34608] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2363), 1, - aux_sym_compilation_unit_token1, - ACTIONS(2365), 1, - aux_sym_package_specification_token3, - STATE(1612), 1, - sym_overriding_indicator, - STATE(652), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34643] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2367), 1, - aux_sym_allocator_token1, - STATE(1612), 1, - sym_overriding_indicator, - STATE(1961), 1, - sym_task_definition, - STATE(656), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34678] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2252), 1, - sym_identifier, - STATE(793), 1, + STATE(776), 1, sym_null_exclusion, + STATE(1074), 1, + sym__subtype_indication, STATE(1932), 1, sym_value_sequence, - ACTIONS(2254), 3, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(828), 7, - sym__name, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - [34711] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2369), 1, - aux_sym_allocator_token1, - STATE(1612), 1, - sym_overriding_indicator, - STATE(1706), 1, - sym_task_definition, - STATE(656), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2371), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34767] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2373), 1, - aux_sym_allocator_token1, - STATE(1611), 1, - sym_task_definition, - STATE(1612), 1, - sym_overriding_indicator, - STATE(656), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34802] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(2359), 1, - aux_sym_primary_null_token1, - ACTIONS(2361), 1, - aux_sym_case_expression_token1, - STATE(1351), 1, - sym_variant_part, - STATE(1810), 1, - sym__defining_identifier_list, - STATE(1819), 1, - sym_component_list, - STATE(664), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34837] = 7, + [34483] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2375), 1, + ACTIONS(843), 1, sym_identifier, - STATE(1932), 1, - sym_value_sequence, - STATE(1903), 2, - sym_loop_parameter_specification, - sym_iterator_specification, - ACTIONS(2377), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1002), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [34868] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(1945), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_case_expression_token1, - STATE(1504), 1, - sym_variant_part, - STATE(1810), 1, - sym__defining_identifier_list, - ACTIONS(2379), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - STATE(723), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [34901] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + ACTIONS(1819), 1, aux_sym_relation_membership_token1, - ACTIONS(49), 1, - aux_sym_entry_declaration_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(203), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(2381), 1, - aux_sym_allocator_token1, - STATE(1612), 1, - sym_overriding_indicator, - STATE(1962), 1, - sym_task_definition, - STATE(656), 8, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_entry_declaration, - sym_enumeration_representation_clause, - sym__task_item, - sym_record_representation_clause, - aux_sym_task_definition_repeat1, - [34936] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(1815), 1, - aux_sym_relation_membership_token1, - ACTIONS(2383), 1, - sym_identifier, - STATE(786), 1, + STATE(776), 1, sym_null_exclusion, + STATE(1141), 1, + sym__subtype_indication, STATE(1932), 1, sym_value_sequence, - ACTIONS(2385), 3, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(829), 7, - sym__name, + STATE(525), 5, sym_selected_component, sym_slice, sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - sym_function_call, - [34969] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2387), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [34990] = 8, + [34521] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2260), 1, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + STATE(776), 1, + sym_null_exclusion, + STATE(1140), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34559] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, aux_sym_component_choice_list_token1, - ACTIONS(2306), 1, + ACTIONS(2350), 1, sym_identifier, - STATE(1452), 1, + STATE(1162), 1, sym_exception_choice, + STATE(1531), 1, + sym_exception_choice_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2258), 3, + ACTIONS(2296), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -44667,10 +44337,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35023] = 2, + [34595] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 15, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + sym_identifier, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + STATE(776), 1, + sym_null_exclusion, + STATE(1497), 1, + sym__subtype_indication, + STATE(1932), 1, + sym_value_sequence, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(539), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(525), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [34633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 15, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_chunk_specification_token1, @@ -44686,64 +44384,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_accept_statement_token2, aux_sym_loop_statement_token1, - [35044] = 2, + [34654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35065] = 2, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2354), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + STATE(1903), 2, + sym_loop_parameter_specification, + sym_iterator_specification, + ACTIONS(2356), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1002), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + sym_identifier, + ACTIONS(2362), 1, aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, + ACTIONS(2364), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2395), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_with_clause_token2, - anon_sym_PIPE, - aux_sym_expression_token1, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_accept_statement_token2, - aux_sym_loop_statement_token1, - [35107] = 9, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2360), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(947), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34718] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44754,13 +44444,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2397), 1, - aux_sym_allocator_token1, - STATE(1522), 1, - sym_task_definition, + ACTIONS(2366), 1, + aux_sym_compilation_unit_token1, + ACTIONS(2368), 1, + aux_sym_package_specification_token3, STATE(1612), 1, sym_overriding_indicator, - STATE(656), 8, + STATE(664), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44769,7 +44459,351 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35142] = 6, + [34753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 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, + [34774] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2372), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1706), 1, + sym_task_definition, + STATE(659), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2374), 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, + [34830] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2376), 1, + aux_sym_allocator_token1, + STATE(1611), 1, + sym_task_definition, + STATE(1612), 1, + sym_overriding_indicator, + STATE(659), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34865] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2378), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2383), 1, + aux_sym_relation_membership_token1, + ACTIONS(2386), 1, + aux_sym_entry_declaration_token1, + ACTIONS(2389), 1, + aux_sym_global_mode_token1, + STATE(1612), 1, + sym_overriding_indicator, + ACTIONS(2381), 2, + aux_sym_compilation_unit_token1, + aux_sym_package_specification_token3, + STATE(664), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34898] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2228), 1, + sym_identifier, + STATE(793), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2230), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(829), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [34931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2392), 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, + [34952] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2394), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1962), 1, + sym_task_definition, + STATE(659), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [34987] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2396), 1, + aux_sym_allocator_token1, + STATE(1612), 1, + sym_overriding_indicator, + STATE(1961), 1, + sym_task_definition, + STATE(659), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2398), 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, + [35043] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + aux_sym_component_choice_list_token1, + ACTIONS(2350), 1, + sym_identifier, + STATE(1452), 1, + sym_exception_choice, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2296), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(968), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35076] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(1819), 1, + aux_sym_relation_membership_token1, + ACTIONS(2400), 1, + sym_identifier, + STATE(782), 1, + sym_null_exclusion, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2402), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 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, + [35130] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(49), 1, + aux_sym_entry_declaration_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(203), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(2406), 1, + aux_sym_allocator_token1, + STATE(1522), 1, + sym_task_definition, + STATE(1612), 1, + sym_overriding_indicator, + STATE(659), 8, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_entry_declaration, + sym_enumeration_representation_clause, + sym__task_item, + sym_record_representation_clause, + aux_sym_task_definition_repeat1, + [35165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2408), 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, + [35186] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -44778,7 +44812,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -44791,21 +44825,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35170] = 6, + [35214] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2403), 1, + ACTIONS(2414), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2401), 4, + ACTIONS(2412), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1009), 7, + STATE(944), 7, sym__name, sym_selected_component, sym_slice, @@ -44813,29 +44847,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1502), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35226] = 6, + [35242] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -44844,7 +44856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -44857,7 +44869,29 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35254] = 6, + [35270] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1502), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2410), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35298] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -44866,7 +44900,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -44879,7 +44913,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35282] = 6, + [35326] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -44888,7 +44922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -44901,29 +44935,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1490), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35338] = 8, + [35354] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -44934,11 +44946,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(203), 1, aux_sym_iterated_element_association_token1, - ACTIONS(2405), 1, + ACTIONS(2416), 1, aux_sym_package_specification_token3, STATE(1612), 1, sym_overriding_indicator, - STATE(652), 8, + STATE(664), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -44947,7 +44959,29 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35370] = 6, + [35386] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1490), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2410), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35414] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -44956,12 +44990,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2310), 4, + ACTIONS(2333), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(909), 7, + STATE(908), 7, sym__name, sym_selected_component, sym_slice, @@ -44969,29 +45003,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35398] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, - anon_sym_SEMI, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2407), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1018), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35426] = 8, + [35442] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45006,7 +45018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_task_definition, STATE(1612), 1, sym_overriding_indicator, - STATE(656), 8, + STATE(659), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45015,16 +45027,38 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35458] = 6, + [35474] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2413), 1, + ACTIONS(2420), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2411), 4, + ACTIONS(2418), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1018), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35502] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2424), 1, + anon_sym_SEMI, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2422), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45037,16 +45071,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35486] = 6, + [35530] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2417), 1, + ACTIONS(2428), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2415), 4, + ACTIONS(2426), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45059,7 +45093,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35514] = 6, + [35558] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45068,12 +45102,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2310), 4, + ACTIONS(2333), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(909), 7, + STATE(908), 7, sym__name, sym_selected_component, sym_slice, @@ -45081,16 +45115,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35542] = 6, + [35586] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2421), 1, + ACTIONS(2432), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2419), 4, + ACTIONS(2430), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45103,18 +45137,18 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35570] = 7, + [35614] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2423), 1, + ACTIONS(2434), 1, sym_identifier, - ACTIONS(2427), 1, + ACTIONS(2438), 1, aux_sym_attribute_designator_token1, STATE(1932), 1, sym_value_sequence, - ACTIONS(2425), 3, + ACTIONS(2436), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -45126,7 +45160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35600] = 8, + [35644] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45141,7 +45175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_overriding_indicator, STATE(1815), 1, sym_task_definition, - STATE(656), 8, + STATE(659), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45150,22 +45184,22 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [35632] = 7, + [35676] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(2440), 1, sym_identifier, - ACTIONS(2433), 1, + ACTIONS(2444), 1, aux_sym_package_body_token1, STATE(1932), 1, sym_value_sequence, - ACTIONS(2431), 3, + ACTIONS(2442), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(872), 7, + STATE(869), 7, sym__name, sym_selected_component, sym_slice, @@ -45173,29 +45207,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35662] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1822), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35690] = 6, + [35706] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45204,7 +45216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reduction_specification, STATE(1932), 1, sym_value_sequence, - ACTIONS(2435), 4, + ACTIONS(2446), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45217,7 +45229,29 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35718] = 6, + [35734] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1822), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2410), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35762] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45226,12 +45260,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2310), 4, + ACTIONS(2333), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(909), 7, + STATE(908), 7, sym__name, sym_selected_component, sym_slice, @@ -45239,21 +45273,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35746] = 8, + [35790] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2438), 1, aux_sym_attribute_designator_token1, - ACTIONS(2437), 1, + ACTIONS(2448), 1, sym_identifier, STATE(1932), 1, sym_value_sequence, STATE(1083), 2, sym__name, sym_function_call, - ACTIONS(2439), 3, + ACTIONS(2450), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -45263,7 +45297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__attribute_reference, sym__reduction_attribute_reference, sym_qualified_expression, - [35778] = 6, + [35822] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -45274,7 +45308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2441), 10, + ACTIONS(2452), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -45285,16 +45319,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [35806] = 8, + [35850] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(951), 1, anon_sym_DOT, ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(1711), 1, + ACTIONS(1703), 1, sym_tick, - ACTIONS(2443), 1, + ACTIONS(2454), 1, aux_sym_range_attribute_designator_token1, STATE(264), 1, sym_actual_parameter_part, @@ -45309,29 +45343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_rem, anon_sym_DOT_DOT, anon_sym_STAR_STAR, - [35838] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1765), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35866] = 6, + [35882] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45340,7 +45352,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45353,7 +45365,29 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35894] = 6, + [35910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1765), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2410), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [35938] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45362,7 +45396,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45375,7 +45409,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35922] = 6, + [35966] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45384,7 +45418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45397,29 +45431,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [35950] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1892), 1, - sym__name_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2310), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(909), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [35978] = 8, + [35994] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45434,7 +45446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_overriding_indicator, STATE(1880), 1, sym_task_definition, - STATE(656), 8, + STATE(659), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45443,16 +45455,38 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [36010] = 6, + [36026] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2447), 1, + STATE(1892), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2333), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(908), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2458), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2445), 4, + ACTIONS(2456), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45465,7 +45499,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36038] = 6, + [36082] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -45476,7 +45510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2449), 10, + ACTIONS(2460), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -45487,7 +45521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36066] = 6, + [36110] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -45498,7 +45532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2451), 10, + ACTIONS(2462), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -45509,7 +45543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36094] = 8, + [36138] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45524,7 +45558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_overriding_indicator, STATE(1703), 1, sym_task_definition, - STATE(656), 8, + STATE(659), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45533,30 +45567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [36126] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2296), 1, - sym_identifier, - ACTIONS(2427), 1, - aux_sym_attribute_designator_token1, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2298), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(840), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36156] = 6, + [36170] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45565,7 +45576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45578,7 +45589,30 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36184] = 6, + [36198] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2306), 1, + sym_identifier, + ACTIONS(2438), 1, + aux_sym_attribute_designator_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2308), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(842), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36228] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45587,7 +45621,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45600,7 +45634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36212] = 8, + [36256] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -45615,7 +45649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_overriding_indicator, STATE(1702), 1, sym_task_definition, - STATE(656), 8, + STATE(659), 8, sym__aspect_clause, sym_at_clause, sym_attribute_definition_clause, @@ -45624,7 +45658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [36244] = 6, + [36288] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45633,12 +45667,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2310), 4, + ACTIONS(2333), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(909), 7, + STATE(908), 7, sym__name, sym_selected_component, sym_slice, @@ -45646,16 +45680,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36272] = 6, + [36316] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2455), 1, + ACTIONS(2466), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2453), 4, + ACTIONS(2464), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45668,16 +45702,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36300] = 6, + [36344] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2459), 1, + ACTIONS(2470), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2457), 4, + ACTIONS(2468), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45690,21 +45724,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36328] = 6, + [36372] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2463), 1, + ACTIONS(2474), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2461), 4, + ACTIONS(2472), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(944), 7, + STATE(1009), 7, sym__name, sym_selected_component, sym_slice, @@ -45712,16 +45746,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36356] = 6, + [36400] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2467), 1, + ACTIONS(2478), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2465), 4, + ACTIONS(2476), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45734,7 +45768,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36384] = 6, + [36428] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45743,12 +45777,12 @@ static const uint16_t ts_small_parse_table[] = { sym__name_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2310), 4, + ACTIONS(2333), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(909), 7, + STATE(908), 7, sym__name, sym_selected_component, sym_slice, @@ -45756,22 +45790,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36412] = 7, + [36456] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2438), 1, aux_sym_attribute_designator_token1, - ACTIONS(2469), 1, + ACTIONS(2480), 1, sym_identifier, STATE(1932), 1, sym_value_sequence, - ACTIONS(2471), 3, + ACTIONS(2482), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(869), 7, + STATE(872), 7, sym__name, sym_selected_component, sym_slice, @@ -45779,22 +45813,22 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36442] = 7, + [36486] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2473), 1, + ACTIONS(2484), 1, sym_identifier, - ACTIONS(2477), 1, + ACTIONS(2488), 1, aux_sym_loop_parameter_specification_token1, STATE(1932), 1, sym_value_sequence, - ACTIONS(2475), 3, + ACTIONS(2486), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(842), 7, + STATE(840), 7, sym__name, sym_selected_component, sym_slice, @@ -45802,7 +45836,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36472] = 6, + [36516] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45811,7 +45845,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45824,7 +45858,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36500] = 6, + [36544] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45833,7 +45867,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45846,7 +45880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36528] = 6, + [36572] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45855,7 +45889,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45868,29 +45902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2479), 1, - sym_identifier, - ACTIONS(2482), 1, - aux_sym_iterated_element_association_token1, - STATE(1810), 1, - sym__defining_identifier_list, - ACTIONS(2485), 3, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_case_expression_token1, - STATE(723), 8, - sym__component_item, - sym_component_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_record_representation_clause, - aux_sym_component_list_repeat1, - [36584] = 6, + [36600] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45899,7 +45911,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45912,7 +45924,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36612] = 6, + [36628] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45921,7 +45933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45934,29 +45946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36640] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1380), 1, - sym_index_subtype_definition, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2487), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(974), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36668] = 6, + [36656] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -45965,7 +45955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -45978,30 +45968,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36696] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2252), 1, - sym_identifier, - ACTIONS(2427), 1, - aux_sym_attribute_designator_token1, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2254), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(828), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36726] = 6, + [36684] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, @@ -46010,7 +45977,7 @@ static const uint16_t ts_small_parse_table[] = { sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46023,16 +45990,39 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36754] = 6, + [36712] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2491), 1, + ACTIONS(2228), 1, + sym_identifier, + ACTIONS(2438), 1, + aux_sym_attribute_designator_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2230), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(829), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36742] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2492), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2489), 4, + ACTIONS(2490), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46045,38 +46035,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - STATE(264), 1, - sym_actual_parameter_part, - ACTIONS(2493), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [36810] = 6, + [36770] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2497), 1, + ACTIONS(2496), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2495), 4, + ACTIONS(2494), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46089,16 +46057,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36838] = 6, + [36798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + STATE(264), 1, + sym_actual_parameter_part, + ACTIONS(2498), 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, + [36826] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2501), 1, + ACTIONS(2502), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2499), 4, + ACTIONS(2500), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46111,7 +46101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36866] = 6, + [36854] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -46122,7 +46112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2503), 10, + ACTIONS(2504), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -46133,44 +46123,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [36894] = 6, + [36882] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1460), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [36922] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, + ACTIONS(2438), 1, aux_sym_attribute_designator_token1, - ACTIONS(2505), 1, + ACTIONS(2506), 1, sym_identifier, STATE(1932), 1, sym_value_sequence, - ACTIONS(2507), 3, + ACTIONS(2508), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(696), 7, + STATE(697), 7, sym__name, sym_selected_component, sym_slice, @@ -46178,16 +46146,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36952] = 6, + [36912] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2511), 1, + STATE(1380), 1, + sym_index_subtype_definition, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2510), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(974), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [36940] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2514), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2509), 4, + ACTIONS(2512), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46200,38 +46190,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [36980] = 6, + [36968] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1848), 1, - sym__interface_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2399), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(841), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2515), 1, + ACTIONS(2518), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2513), 4, + ACTIONS(2516), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46244,16 +46212,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37036] = 6, + [36996] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1864), 1, + STATE(1460), 1, sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46266,16 +46234,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37064] = 6, + [37024] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2519), 1, + ACTIONS(2522), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2517), 4, + ACTIONS(2520), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46288,61 +46256,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37092] = 7, + [37052] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2427), 1, - aux_sym_attribute_designator_token1, - ACTIONS(2521), 1, - sym_identifier, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2523), 3, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1056), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1428), 1, - sym__name_list, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2525), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(900), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37150] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1534), 1, + STATE(1848), 1, sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2399), 4, + ACTIONS(2410), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46355,22 +46278,21 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37178] = 7, + [37080] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2527), 1, - sym_identifier, - ACTIONS(2531), 1, - aux_sym_loop_parameter_specification_token1, + STATE(1864), 1, + sym__interface_list, STATE(1932), 1, sym_value_sequence, - ACTIONS(2529), 3, + ACTIONS(2410), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(846), 7, + STATE(841), 7, sym__name, sym_selected_component, sym_slice, @@ -46378,16 +46300,129 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37208] = 6, + [37108] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2535), 1, + ACTIONS(2438), 1, + aux_sym_attribute_designator_token1, + ACTIONS(2524), 1, + sym_identifier, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2526), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1056), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1428), 1, + sym__name_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2528), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(900), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1534), 1, + sym__interface_list, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2410), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(841), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37194] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2530), 1, + sym_identifier, + ACTIONS(2534), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2532), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(844), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37224] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2536), 1, + sym_identifier, + ACTIONS(2540), 1, + aux_sym_loop_parameter_specification_token1, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2538), 3, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(838), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2533), 4, + ACTIONS(2542), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46400,16 +46435,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37236] = 6, + [37282] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2539), 1, + ACTIONS(2548), 1, anon_sym_SEMI, STATE(1932), 1, sym_value_sequence, - ACTIONS(2537), 4, + ACTIONS(2546), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46422,22 +46457,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37264] = 7, + [37310] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2541), 1, - sym_identifier, - ACTIONS(2545), 1, - aux_sym_loop_parameter_specification_token1, STATE(1932), 1, sym_value_sequence, - ACTIONS(2543), 3, + ACTIONS(2550), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(837), 7, + STATE(922), 7, sym__name, sym_selected_component, sym_slice, @@ -46445,19 +46477,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37294] = 5, + [37335] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2547), 4, + ACTIONS(2552), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(924), 7, + STATE(1025), 7, sym__name, sym_selected_component, sym_slice, @@ -46465,19 +46497,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37319] = 5, + [37360] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2549), 4, + ACTIONS(2554), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(847), 7, + STATE(946), 7, sym__name, sym_selected_component, sym_slice, @@ -46485,12 +46517,70 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37344] = 4, + [37385] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2556), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(268), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2558), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1036), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(2562), 11, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + anon_sym_PLUS, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [37456] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(223), 1, anon_sym_LPAREN, - ACTIONS(2181), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, STATE(1229), 11, sym__parenthesized_expression, @@ -46504,94 +46594,14 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [37367] = 5, + [37479] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2551), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(268), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2553), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(907), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37417] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2555), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(946), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2557), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(915), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37467] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2559), 4, + ACTIONS(2564), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46604,19 +46614,38 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37492] = 5, + [37504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + STATE(1265), 11, + sym__parenthesized_expression, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [37527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2431), 4, + ACTIONS(2442), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(872), 7, + STATE(869), 7, sym__name, sym_selected_component, sym_slice, @@ -46624,19 +46653,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37517] = 5, + [37552] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2561), 4, + ACTIONS(2566), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(928), 7, + STATE(907), 7, sym__name, sym_selected_component, sym_slice, @@ -46644,14 +46673,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37542] = 5, + [37577] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2563), 4, + ACTIONS(2568), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(927), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37602] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2570), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46664,32 +46713,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(2567), 11, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - anon_sym_PLUS, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [37588] = 5, + [37627] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2569), 4, + ACTIONS(2572), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(879), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2574), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46702,34 +46753,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37613] = 5, + [37677] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2571), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(881), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2573), 4, + ACTIONS(2576), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46742,14 +46773,74 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37663] = 5, + [37702] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2575), 4, + ACTIONS(2578), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(915), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2580), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(910), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2582), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(707), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2584), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46762,134 +46853,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37688] = 5, + [37802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2278), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(731), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2577), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(986), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2579), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(911), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37763] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2581), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(706), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37788] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2583), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(914), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37813] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2585), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(917), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [37838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2587), 4, + ACTIONS(2586), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46902,19 +46873,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37863] = 5, + [37827] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2589), 4, + ACTIONS(2588), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(918), 7, + STATE(914), 7, sym__name, sym_selected_component, sym_slice, @@ -46922,14 +46893,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37888] = 5, + [37852] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2591), 4, + ACTIONS(2590), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46942,14 +46913,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37913] = 5, + [37877] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2593), 4, + ACTIONS(2280), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(731), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [37902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2592), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -46962,19 +46953,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37938] = 5, + [37927] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2595), 4, + ACTIONS(2594), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(854), 7, + STATE(911), 7, sym__name, sym_selected_component, sym_slice, @@ -46982,19 +46973,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37963] = 5, + [37952] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2597), 4, + ACTIONS(2596), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(913), 7, + STATE(986), 7, sym__name, sym_selected_component, sym_slice, @@ -47002,14 +46993,35 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [37988] = 5, + [37977] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2599), 4, + STATE(1083), 2, + sym__name, + sym_function_call, + ACTIONS(2450), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(533), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + [38004] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2598), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47022,14 +47034,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38013] = 5, + [38029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2601), 4, + ACTIONS(2600), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47042,75 +47054,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38038] = 5, + [38054] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2603), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(920), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38063] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - STATE(1083), 2, - sym__name, - sym_function_call, - ACTIONS(2439), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(533), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - [38090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2605), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(922), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38115] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2607), 4, + ACTIONS(2602), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47123,10 +47074,190 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38140] = 4, + [38079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2604), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(917), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2606), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(918), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2608), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(832), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38154] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2610), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(923), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2612), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(848), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2614), 4, + sym_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, + [38229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2616), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(913), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38254] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2618), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(895), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38279] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2620), 4, + sym_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, + [38304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, aux_sym_chunk_specification_token1, ACTIONS(917), 2, anon_sym_DASH, @@ -47142,114 +47273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [38163] = 5, + [38327] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2611), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(849), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2613), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(984), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2615), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(834), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38238] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2617), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(895), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2619), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1041), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38288] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2621), 4, + ACTIONS(2624), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47262,96 +47293,16 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38313] = 5, + [38352] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2623), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(912), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38338] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2625), 4, - sym_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, - [38363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2627), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(845), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2385), 4, - sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(829), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38413] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - ACTIONS(2629), 1, + ACTIONS(2626), 1, sym_identifier, STATE(1932), 1, sym_value_sequence, - ACTIONS(2599), 3, + ACTIONS(2598), 3, sym_string_literal, sym_character_literal, sym_target_name, @@ -47363,19 +47314,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38440] = 5, + [38379] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2631), 4, + ACTIONS(2628), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(844), 7, + STATE(984), 7, sym__name, sym_selected_component, sym_slice, @@ -47383,7 +47334,47 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38465] = 10, + [38404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2402), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(831), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2630), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(846), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38454] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -47396,7 +47387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_terminate_alternative_token1, STATE(29), 1, sym_accept_statement, - STATE(819), 1, + STATE(823), 1, sym_guard, STATE(1285), 1, sym_select_alternative, @@ -47408,19 +47399,19 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [38500] = 5, + [38489] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2633), 4, + ACTIONS(2632), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(850), 7, + STATE(845), 7, sym__name, sym_selected_component, sym_slice, @@ -47428,19 +47419,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38525] = 5, + [38514] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2635), 4, + ACTIONS(2634), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(848), 7, + STATE(854), 7, sym__name, sym_selected_component, sym_slice, @@ -47448,26 +47439,67 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38550] = 4, + [38539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_LPAREN, - ACTIONS(2181), 1, + ACTIONS(11), 1, anon_sym_LBRACK, - STATE(1265), 11, - sym__parenthesized_expression, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [38573] = 7, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2636), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(1041), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2638), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(849), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38589] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2640), 4, + sym_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, + [38614] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -47489,34 +47521,14 @@ static const uint16_t ts_small_parse_table[] = { sym__task_item, sym_record_representation_clause, aux_sym_task_definition_repeat1, - [38602] = 5, + [38643] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2637), 4, - sym_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, - [38627] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2639), 4, + ACTIONS(2642), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47529,34 +47541,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38652] = 5, + [38668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11), 1, - anon_sym_LBRACK, - STATE(1932), 1, - sym_value_sequence, - ACTIONS(2641), 4, + ACTIONS(2644), 1, sym_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(1036), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - [38677] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, - sym_identifier, - ACTIONS(2647), 1, + ACTIONS(2648), 1, aux_sym_non_empty_mode_token1, - ACTIONS(2645), 11, + ACTIONS(2646), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -47568,20 +47560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38700] = 6, + [38691] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(2649), 1, - sym_identifier, STATE(1932), 1, sym_value_sequence, - ACTIONS(2377), 3, + ACTIONS(2650), 4, + sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(1002), 7, + STATE(850), 7, sym__name, sym_selected_component, sym_slice, @@ -47589,19 +47580,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38727] = 5, + [38716] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2651), 4, + ACTIONS(2652), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(910), 7, + STATE(906), 7, sym__name, sym_selected_component, sym_slice, @@ -47609,19 +47600,19 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38752] = 5, + [38741] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2653), 4, + ACTIONS(2654), 4, sym_identifier, sym_string_literal, sym_character_literal, sym_target_name, - STATE(927), 7, + STATE(909), 7, sym__name, sym_selected_component, sym_slice, @@ -47629,14 +47620,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38777] = 5, + [38766] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, STATE(1932), 1, sym_value_sequence, - ACTIONS(2655), 4, + ACTIONS(2656), 4, + sym_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(924), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + [38791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_LBRACK, + STATE(1932), 1, + sym_value_sequence, + ACTIONS(2658), 4, sym_identifier, sym_string_literal, sym_character_literal, @@ -47649,19 +47660,20 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38802] = 5, + [38816] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, + ACTIONS(2660), 1, + sym_identifier, STATE(1932), 1, sym_value_sequence, - ACTIONS(2657), 4, - sym_identifier, + ACTIONS(2356), 3, sym_string_literal, sym_character_literal, sym_target_name, - STATE(908), 7, + STATE(1002), 7, sym__name, sym_selected_component, sym_slice, @@ -47669,32 +47681,14 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [38827] = 4, + [38843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - STATE(832), 1, - sym_formal_part, - ACTIONS(2661), 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, - [38849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, STATE(833), 1, sym_formal_part, - ACTIONS(2663), 10, + ACTIONS(2664), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47705,12 +47699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [38871] = 3, + [38865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2644), 1, sym_identifier, - ACTIONS(2667), 11, + ACTIONS(2646), 11, sym_string_literal, sym_character_literal, sym_target_name, @@ -47722,27 +47716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_relation_membership_token1, - [38891] = 3, + [38885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, - sym_identifier, - ACTIONS(2645), 11, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, + ACTIONS(2662), 1, + anon_sym_LPAREN, + STATE(827), 1, + sym_formal_part, + ACTIONS(2666), 10, anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - aux_sym_attribute_designator_token1, + aux_sym_chunk_specification_token1, + aux_sym_iterator_specification_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - aux_sym_relation_membership_token1, - [38911] = 2, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + aux_sym_object_renaming_declaration_token1, + aux_sym_accept_statement_token2, + [38907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 12, + ACTIONS(2668), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -47755,14 +47750,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [38929] = 4, + [38925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - STATE(827), 1, + STATE(834), 1, sym_formal_part, - ACTIONS(2671), 10, + ACTIONS(2670), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47773,12 +47768,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [38951] = 3, + [38947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 1, + ACTIONS(2672), 1, sym_identifier, - ACTIONS(2675), 10, + ACTIONS(2674), 11, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + aux_sym_iterator_filter_token1, + aux_sym_attribute_designator_token1, + anon_sym_SEMI, + aux_sym_package_specification_token2, + aux_sym_relation_membership_token1, + [38967] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2676), 1, + sym_identifier, + ACTIONS(2678), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2680), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2682), 1, + aux_sym_interface_type_definition_token1, + STATE(1602), 1, + sym__defining_identifier_list, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(818), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [38996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2684), 1, + sym_identifier, + ACTIONS(2686), 10, sym_string_literal, sym_character_literal, sym_numeric_literal, @@ -47789,33 +47822,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [38970] = 8, + [39015] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2677), 1, + ACTIONS(2676), 1, sym_identifier, - ACTIONS(2679), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2681), 1, + ACTIONS(2680), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2683), 1, + ACTIONS(2682), 1, aux_sym_interface_type_definition_token1, + ACTIONS(2688), 1, + aux_sym_subprogram_body_token1, STATE(1602), 1, sym__defining_identifier_list, STATE(347), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(825), 4, + STATE(824), 4, sym__declare_item, sym_object_declaration, sym_object_renaming_declaration, aux_sym_declare_expression_repeat1, - [38999] = 3, + [39044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2685), 1, + ACTIONS(2690), 1, sym_identifier, - ACTIONS(2687), 10, + ACTIONS(2692), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47826,7 +47859,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [39018] = 8, + [39063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2694), 1, + sym_identifier, + ACTIONS(2696), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [39082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2698), 1, + sym_identifier, + ACTIONS(2700), 10, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [39101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2702), 1, + sym_identifier, + ACTIONS(2704), 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, + [39120] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -47847,12 +47928,33 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [39047] = 3, + [39149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2706), 1, sym_identifier, - ACTIONS(2691), 10, + ACTIONS(2709), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2711), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2714), 1, + aux_sym_interface_type_definition_token1, + STATE(1602), 1, + sym__defining_identifier_list, + STATE(347), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(824), 4, + sym__declare_item, + sym_object_declaration, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [39178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + sym_identifier, + ACTIONS(2719), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, @@ -47863,23 +47965,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [39066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2693), 1, - sym_identifier, - ACTIONS(2695), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [39085] = 8, + [39197] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -47900,84 +47986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [39114] = 3, + [39226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, - sym_identifier, - ACTIONS(2699), 10, - aux_sym_iterated_element_association_token1, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_case_expression_token1, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - aux_sym_pragma_g_token1, - [39133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, - sym_identifier, - ACTIONS(2703), 10, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, - anon_sym_LPAREN, - anon_sym_LBRACK, - aux_sym_relation_membership_token1, - aux_sym_factor_abs_token1, - aux_sym_primary_null_token1, - aux_sym_allocator_token1, - [39152] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - sym_identifier, - ACTIONS(2681), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2683), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2705), 1, - aux_sym_subprogram_body_token1, - STATE(1602), 1, - sym__defining_identifier_list, - STATE(347), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(826), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39181] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2707), 1, - sym_identifier, - ACTIONS(2710), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2712), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2715), 1, - aux_sym_interface_type_definition_token1, - STATE(1602), 1, - sym__defining_identifier_list, - STATE(347), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(826), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [39210] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2718), 10, + ACTIONS(2664), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -47988,28 +48000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39226] = 10, + [39242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1125), 1, - sym__assign_value, - STATE(1399), 1, - sym_aspect_specification, - ACTIONS(2720), 2, + ACTIONS(2721), 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, [39258] = 10, ACTIONS(3), 1, sym_comment, @@ -48019,9 +48023,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1125), 1, + sym__assign_value, + STATE(1399), 1, + sym_aspect_specification, + ACTIONS(2723), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [39290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 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, + [39306] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(264), 1, sym_actual_parameter_part, @@ -48029,10 +48069,10 @@ static const uint16_t ts_small_parse_table[] = { sym__assign_value, STATE(1371), 1, sym_aspect_specification, - ACTIONS(2722), 2, + ACTIONS(2727), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39290] = 10, + [39338] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48041,73 +48081,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1066), 1, - sym__assign_value, - STATE(1469), 1, - sym_aspect_specification, - ACTIONS(2724), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [39322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2726), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - 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, - [39338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2663), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [39354] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 10, - anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, - anon_sym_SEMI, - aux_sym_package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - aux_sym_object_renaming_declaration_token1, - aux_sym_accept_statement_token2, - [39370] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(264), 1, sym_actual_parameter_part, @@ -48115,13 +48091,13 @@ static const uint16_t ts_small_parse_table[] = { sym__assign_value, STATE(1409), 1, sym_aspect_specification, - ACTIONS(2728), 2, + ACTIONS(2729), 2, anon_sym_RPAREN, anon_sym_SEMI, - [39402] = 2, + [39370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2730), 10, + ACTIONS(2731), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -48132,12 +48108,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [39418] = 3, + [39386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(2666), 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, + [39402] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1066), 1, + sym__assign_value, + STATE(1469), 1, + sym_aspect_specification, + ACTIONS(2733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [39434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2735), 1, sym_identifier, - ACTIONS(2734), 9, + ACTIONS(2737), 9, sym_string_literal, sym_character_literal, sym_target_name, @@ -48147,7 +48159,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [39436] = 8, + [39452] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48156,26 +48168,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2238), 1, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2739), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1337), 1, + sym__assign_value, + STATE(1929), 1, + sym_aspect_specification, + [39483] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2250), 1, aux_sym_iterator_filter_token1, STATE(264), 1, sym_actual_parameter_part, STATE(1293), 1, sym_iterator_filter, - ACTIONS(2736), 3, + ACTIONS(2741), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [39463] = 7, + [39510] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2743), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1255), 1, + sym__assign_value, + STATE(1560), 1, + sym_aspect_specification, + [39541] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1197), 1, + sym_iterator_filter, + ACTIONS(2254), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39568] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2747), 1, + aux_sym_expression_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1020), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2745), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [39595] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2749), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1305), 1, + sym__assign_value, + STATE(1652), 1, + sym_aspect_specification, + [39626] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2755), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2753), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [39653] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1288), 1, + sym_iterator_filter, + ACTIONS(2741), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39680] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1347), 1, + sym_iterator_filter, + ACTIONS(2758), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39707] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2250), 1, + aux_sym_iterator_filter_token1, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1348), 1, + sym_iterator_filter, + ACTIONS(2758), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [39734] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, anon_sym_COMMA, - ACTIONS(2738), 1, + ACTIONS(2760), 1, anon_sym_COLON, - ACTIONS(2741), 1, + ACTIONS(2763), 1, anon_sym_SEMI, - ACTIONS(2743), 1, + ACTIONS(2765), 1, aux_sym_object_renaming_declaration_token1, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, @@ -48184,174 +48373,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [39488] = 10, + [39759] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2745), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1255), 1, - sym__assign_value, - STATE(1560), 1, - sym_aspect_specification, - [39519] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2747), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1305), 1, - sym__assign_value, - STATE(1652), 1, - sym_aspect_specification, - [39550] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, ACTIONS(2751), 1, - aux_sym_expression_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1020), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2749), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [39577] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2238), 1, - aux_sym_iterator_filter_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1197), 1, - sym_iterator_filter, - ACTIONS(2248), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39604] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2753), 1, - anon_sym_LPAREN, - ACTIONS(2757), 1, + ACTIONS(2767), 1, aux_sym_package_specification_token2, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1129), 1, - sym_formal_part, - ACTIONS(2755), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [39631] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2238), 1, - aux_sym_iterator_filter_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1347), 1, - sym_iterator_filter, - ACTIONS(2760), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39658] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2238), 1, - aux_sym_iterator_filter_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1348), 1, - sym_iterator_filter, - ACTIONS(2760), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39685] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2238), 1, - aux_sym_iterator_filter_token1, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1288), 1, - sym_iterator_filter, - ACTIONS(2736), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [39712] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2753), 1, - anon_sym_LPAREN, - ACTIONS(2762), 1, - aux_sym_package_specification_token2, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(264), 1, sym_actual_parameter_part, @@ -48360,7 +48393,26 @@ static const uint16_t ts_small_parse_table[] = { STATE(1128), 2, sym__parameter_and_result_profile, sym_result_profile, - [39741] = 8, + [39788] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2751), 1, + anon_sym_LPAREN, + ACTIONS(2771), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1129), 1, + sym_formal_part, + ACTIONS(2753), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [39815] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48369,28 +48421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2238), 1, + ACTIONS(2250), 1, aux_sym_iterator_filter_token1, STATE(264), 1, sym_actual_parameter_part, STATE(1276), 1, sym_iterator_filter, - ACTIONS(2236), 3, + ACTIONS(2248), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [39768] = 9, + [39842] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, sym_tick, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, - ACTIONS(2766), 1, + ACTIONS(2774), 1, aux_sym_package_specification_token2, STATE(264), 1, sym_actual_parameter_part, @@ -48399,65 +48451,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1128), 2, sym__parameter_and_result_profile, sym_result_profile, - [39797] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2753), 1, - anon_sym_LPAREN, - ACTIONS(2768), 1, - aux_sym_package_specification_token2, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1129), 1, - sym_formal_part, - ACTIONS(2755), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [39824] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2771), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1337), 1, - sym__assign_value, - STATE(1929), 1, - sym_aspect_specification, - [39855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2773), 1, - sym_identifier, - ACTIONS(2775), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, [39871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2776), 1, sym_identifier, - ACTIONS(2779), 7, + ACTIONS(2778), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48465,7 +48464,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [39887] = 8, + [39887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2780), 1, + sym_identifier, + ACTIONS(2782), 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, + [39903] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48474,34 +48486,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2783), 1, - aux_sym_with_clause_token2, ACTIONS(2786), 1, + aux_sym_with_clause_token2, + ACTIONS(2789), 1, aux_sym_expression_token1, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2781), 2, + ACTIONS(2784), 2, anon_sym_SEMI, aux_sym_expression_token3, - [39913] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 1, - sym_identifier, - ACTIONS(2790), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, [39929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 1, + ACTIONS(2791), 1, sym_identifier, - ACTIONS(2794), 7, + ACTIONS(2793), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48512,9 +48511,9 @@ static const uint16_t ts_small_parse_table[] = { [39945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(2795), 1, sym_identifier, - ACTIONS(2798), 7, + ACTIONS(2797), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48525,9 +48524,9 @@ static const uint16_t ts_small_parse_table[] = { [39961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, + ACTIONS(2799), 1, sym_identifier, - ACTIONS(2802), 7, + ACTIONS(2801), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48538,9 +48537,9 @@ static const uint16_t ts_small_parse_table[] = { [39977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(2803), 1, sym_identifier, - ACTIONS(2806), 7, + ACTIONS(2805), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48551,9 +48550,9 @@ static const uint16_t ts_small_parse_table[] = { [39993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(2807), 1, sym_identifier, - ACTIONS(2810), 7, + ACTIONS(2809), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48564,9 +48563,9 @@ static const uint16_t ts_small_parse_table[] = { [40009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, + ACTIONS(2811), 1, sym_identifier, - ACTIONS(2814), 7, + ACTIONS(2813), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48577,9 +48576,9 @@ static const uint16_t ts_small_parse_table[] = { [40025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(2815), 1, sym_identifier, - ACTIONS(2818), 7, + ACTIONS(2817), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48590,9 +48589,9 @@ static const uint16_t ts_small_parse_table[] = { [40041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 1, + ACTIONS(2819), 1, sym_identifier, - ACTIONS(2822), 7, + ACTIONS(2821), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48603,9 +48602,9 @@ static const uint16_t ts_small_parse_table[] = { [40057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2826), 7, + ACTIONS(2825), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48616,9 +48615,9 @@ static const uint16_t ts_small_parse_table[] = { [40073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2827), 1, sym_identifier, - ACTIONS(2830), 7, + ACTIONS(2829), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48626,16 +48625,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40089] = 8, + [40089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2831), 1, + sym_identifier, + ACTIONS(2833), 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, + [40105] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, sym_tick, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(264), 1, sym_actual_parameter_part, @@ -48644,29 +48656,29 @@ static const uint16_t ts_small_parse_table[] = { STATE(1128), 2, sym__parameter_and_result_profile, sym_result_profile, - [40115] = 7, + [40131] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, sym_tick, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2753), 1, + ACTIONS(2751), 1, anon_sym_LPAREN, STATE(264), 1, sym_actual_parameter_part, STATE(1129), 1, sym_formal_part, - ACTIONS(2755), 3, + ACTIONS(2753), 3, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, - [40139] = 3, + [40155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2835), 1, sym_identifier, - ACTIONS(2834), 7, + ACTIONS(2837), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48674,7 +48686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40155] = 8, + [40171] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48683,66 +48695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2104), 1, - anon_sym_COLON_EQ, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1359), 1, - sym__assign_value, - ACTIONS(2836), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [40181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2838), 1, - sym_identifier, - ACTIONS(2840), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, - [40197] = 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, - [40213] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2846), 1, + ACTIONS(2839), 1, aux_sym_package_specification_token2, - ACTIONS(2848), 1, + ACTIONS(2841), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, STATE(1741), 1, sym_aspect_specification, - [40241] = 3, + [40199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(2843), 1, sym_identifier, - ACTIONS(2852), 7, + ACTIONS(2845), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48750,12 +48718,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, + [40215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2847), 1, + sym_identifier, + ACTIONS(2849), 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, + [40231] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_COLON_EQ, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1359), 1, + sym__assign_value, + ACTIONS(2851), 2, + anon_sym_RPAREN, + anon_sym_SEMI, [40257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 1, + ACTIONS(2853), 1, sym_identifier, - ACTIONS(2856), 7, + ACTIONS(2855), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48766,9 +48765,9 @@ static const uint16_t ts_small_parse_table[] = { [40273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2857), 1, sym_identifier, - ACTIONS(2860), 7, + ACTIONS(2859), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48779,9 +48778,9 @@ static const uint16_t ts_small_parse_table[] = { [40289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(2861), 1, sym_identifier, - ACTIONS(2864), 7, + ACTIONS(2863), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48792,9 +48791,9 @@ static const uint16_t ts_small_parse_table[] = { [40305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, + ACTIONS(2865), 1, sym_identifier, - ACTIONS(2868), 7, + ACTIONS(2867), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48805,9 +48804,9 @@ static const uint16_t ts_small_parse_table[] = { [40321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2869), 1, sym_identifier, - ACTIONS(2872), 7, + ACTIONS(2871), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48818,9 +48817,9 @@ static const uint16_t ts_small_parse_table[] = { [40337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2874), 1, + ACTIONS(2873), 1, sym_identifier, - ACTIONS(2876), 7, + ACTIONS(2875), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48828,20 +48827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2878), 1, - sym_identifier, - ACTIONS(2880), 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, - [40369] = 6, + [40353] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48852,17 +48838,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2882), 4, + ACTIONS(2877), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token1, aux_sym_expression_token3, + [40375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(2881), 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, [40391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(2883), 1, sym_identifier, - ACTIONS(2886), 7, + ACTIONS(2885), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48870,7 +48869,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40407] = 8, + [40407] = 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, + [40423] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -48879,34 +48891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2890), 1, - aux_sym_with_clause_token2, ACTIONS(2893), 1, + aux_sym_with_clause_token2, + ACTIONS(2896), 1, aux_sym_expression_token1, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2888), 2, + ACTIONS(2891), 2, anon_sym_SEMI, aux_sym_expression_token3, - [40433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 1, - sym_identifier, - ACTIONS(2897), 7, - aux_sym_iterated_element_association_token2, - aux_sym_package_specification_token1, - aux_sym_with_clause_token2, - aux_sym_use_clause_token2, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_pragma_g_token1, [40449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 1, + ACTIONS(2898), 1, sym_identifier, - ACTIONS(2901), 7, + ACTIONS(2900), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48917,9 +48916,9 @@ static const uint16_t ts_small_parse_table[] = { [40465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(2902), 1, sym_identifier, - ACTIONS(2905), 7, + ACTIONS(2904), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48930,9 +48929,9 @@ static const uint16_t ts_small_parse_table[] = { [40481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(2906), 1, sym_identifier, - ACTIONS(2909), 7, + ACTIONS(2908), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48943,9 +48942,9 @@ static const uint16_t ts_small_parse_table[] = { [40497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(2910), 1, sym_identifier, - ACTIONS(2913), 7, + ACTIONS(2912), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48956,9 +48955,9 @@ static const uint16_t ts_small_parse_table[] = { [40513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(2914), 1, sym_identifier, - ACTIONS(2917), 7, + ACTIONS(2916), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48969,9 +48968,9 @@ static const uint16_t ts_small_parse_table[] = { [40529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2918), 1, sym_identifier, - ACTIONS(2921), 7, + ACTIONS(2920), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48982,9 +48981,9 @@ static const uint16_t ts_small_parse_table[] = { [40545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(2922), 1, sym_identifier, - ACTIONS(2925), 7, + ACTIONS(2924), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -48995,9 +48994,9 @@ static const uint16_t ts_small_parse_table[] = { [40561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2926), 1, sym_identifier, - ACTIONS(2929), 7, + ACTIONS(2928), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -49008,9 +49007,9 @@ static const uint16_t ts_small_parse_table[] = { [40577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, + ACTIONS(2930), 1, sym_identifier, - ACTIONS(2933), 7, + ACTIONS(2932), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -49018,14 +49017,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40593] = 6, + [40593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, + ACTIONS(2934), 1, + sym_identifier, + ACTIONS(2936), 7, + aux_sym_iterated_element_association_token2, + aux_sym_package_specification_token1, + aux_sym_with_clause_token2, + aux_sym_use_clause_token2, + aux_sym_access_to_subprogram_definition_token2, + aux_sym_access_to_subprogram_definition_token3, + aux_sym_pragma_g_token1, + [40609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 1, anon_sym_LPAREN, - ACTIONS(2937), 1, + ACTIONS(2940), 1, anon_sym_LBRACK, - ACTIONS(2939), 1, + ACTIONS(2942), 1, aux_sym_record_component_association_list_token1, STATE(1510), 1, sym_enumeration_aggregate, @@ -49034,7 +49046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [40615] = 8, + [40631] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49043,16 +49055,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2943), 1, - aux_sym_with_clause_token2, ACTIONS(2946), 1, + aux_sym_with_clause_token2, + ACTIONS(2949), 1, aux_sym_expression_token1, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2941), 2, + ACTIONS(2944), 2, anon_sym_SEMI, aux_sym_expression_token3, - [40641] = 8, + [40657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 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, + [40673] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49061,47 +49086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(264), 1, sym_actual_parameter_part, STATE(1411), 1, sym__assign_value, - ACTIONS(2948), 2, + ACTIONS(2955), 2, anon_sym_RPAREN, anon_sym_SEMI, - [40667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 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, - [40683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - sym_identifier, - ACTIONS(2956), 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, [40699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 1, + ACTIONS(2957), 1, sym_identifier, - ACTIONS(2960), 7, + ACTIONS(2959), 7, aux_sym_iterated_element_association_token2, aux_sym_package_specification_token1, aux_sym_with_clause_token2, @@ -49109,7 +49108,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [40715] = 7, + [40715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2961), 1, + sym_identifier, + ACTIONS(2963), 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, + [40731] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49122,10 +49134,10 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1160), 1, aux_sym__name_list_repeat1, - ACTIONS(2962), 2, + ACTIONS(2965), 2, anon_sym_COMMA, anon_sym_RPAREN, - [40738] = 6, + [40754] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49136,11 +49148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(2964), 3, + ACTIONS(2967), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [40759] = 8, + [40775] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49149,15 +49161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2966), 1, + ACTIONS(2969), 1, aux_sym_package_specification_token2, STATE(264), 1, sym_actual_parameter_part, STATE(1535), 1, sym_aspect_specification, - [40784] = 8, + [40800] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49166,15 +49178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2968), 1, + ACTIONS(2971), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, STATE(1660), 1, sym_aspect_specification, - [40809] = 8, + [40825] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49183,15 +49195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2970), 1, + ACTIONS(2973), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, STATE(1663), 1, sym_aspect_specification, - [40834] = 8, + [40850] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49200,22 +49212,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2972), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(2974), 1, + ACTIONS(2977), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, STATE(1310), 1, aux_sym__name_list_repeat1, - [40859] = 6, + [40875] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2979), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1774), 1, + sym_aspect_specification, + [40900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2981), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1837), 1, + sym_aspect_specification, + [40925] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2965), 1, + anon_sym_SEMI, + ACTIONS(2975), 1, + anon_sym_COMMA, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1215), 1, + aux_sym__name_list_repeat1, + [40950] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2983), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1828), 1, + sym_aspect_specification, + [40975] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1589), 1, + sym_aspect_specification, + [41000] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2987), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1713), 1, + sym_aspect_specification, + [41025] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2989), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1691), 1, + sym_aspect_specification, + [41050] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2991), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1890), 1, + sym_aspect_specification, + [41075] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2993), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1754), 1, + sym_aspect_specification, + [41100] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(2995), 1, + aux_sym_package_specification_token2, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1741), 1, + sym_aspect_specification, + [41125] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 1, + anon_sym_LPAREN, + ACTIONS(2999), 1, + anon_sym_SEMI, + ACTIONS(3001), 1, + aux_sym_package_specification_token2, + ACTIONS(3003), 1, + aux_sym_expression_token3, + STATE(1338), 3, + sym__discriminant_part, + sym_unknown_discriminant_part, + sym_known_discriminant_part, + [41146] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3005), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1842), 1, + sym_aspect_specification, + [41171] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1838), 1, + sym_aspect_specification, + [41196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3009), 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, + [41209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3011), 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, + [41222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 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, + [41235] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3015), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1806), 1, + sym_aspect_specification, + [41260] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3017), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1834), 1, + sym_aspect_specification, + [41285] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3019), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1530), 1, + sym_aspect_specification, + [41310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3021), 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, + [41323] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + aux_sym_chunk_specification_token1, + ACTIONS(3025), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3028), 1, + anon_sym_COLON, + ACTIONS(3030), 1, + aux_sym_iterator_specification_token1, + ACTIONS(919), 3, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + [41344] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym_tick, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(2019), 1, + anon_sym_DOT, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3032), 1, + anon_sym_SEMI, + STATE(264), 1, + sym_actual_parameter_part, + STATE(1603), 1, + sym_aspect_specification, + [41369] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(2976), 1, + ACTIONS(3034), 1, aux_sym_package_specification_token1, STATE(1800), 1, sym_package_specification, @@ -49223,356 +49581,14 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [40880] = 8, + [41390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2978), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1837), 1, - sym_aspect_specification, - [40905] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, + ACTIONS(3036), 1, anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2980), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1774), 1, - sym_aspect_specification, - [40930] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2962), 1, - anon_sym_SEMI, - ACTIONS(2972), 1, - anon_sym_COMMA, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1215), 1, - aux_sym__name_list_repeat1, - [40955] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2982), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1828), 1, - sym_aspect_specification, - [40980] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2984), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1589), 1, - sym_aspect_specification, - [41005] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2986), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1691), 1, - sym_aspect_specification, - [41030] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2988), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1713), 1, - sym_aspect_specification, - [41055] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2990), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1890), 1, - sym_aspect_specification, - [41080] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(2992), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1754), 1, - sym_aspect_specification, - [41105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2994), 1, - anon_sym_LPAREN, - ACTIONS(2996), 1, - anon_sym_SEMI, - ACTIONS(2998), 1, - aux_sym_package_specification_token2, - ACTIONS(3000), 1, - aux_sym_expression_token3, - STATE(1338), 3, - sym__discriminant_part, - sym_unknown_discriminant_part, - sym_known_discriminant_part, - [41126] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3002), 1, - aux_sym_package_specification_token2, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1741), 1, - sym_aspect_specification, - [41151] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3004), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1842), 1, - sym_aspect_specification, - [41176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3006), 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, - [41189] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3008), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1838), 1, - sym_aspect_specification, - [41214] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3010), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41227] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3012), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1834), 1, - sym_aspect_specification, - [41252] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3014), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41265] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3016), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1806), 1, - sym_aspect_specification, - [41290] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3018), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3020), 7, - aux_sym_iterated_element_association_token1, - aux_sym_package_specification_token3, - aux_sym_relation_membership_token1, - aux_sym_access_to_subprogram_definition_token2, - aux_sym_access_to_subprogram_definition_token3, - aux_sym_entry_declaration_token1, - aux_sym_global_mode_token1, - [41316] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3022), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1530), 1, - sym_aspect_specification, - [41341] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(949), 1, - sym_tick, - ACTIONS(979), 1, - anon_sym_LPAREN, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3024), 1, - anon_sym_SEMI, - STATE(264), 1, - sym_actual_parameter_part, - STATE(1603), 1, - sym_aspect_specification, - [41366] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3026), 1, - anon_sym_LPAREN, - ACTIONS(3028), 1, + ACTIONS(3038), 1, aux_sym_iterator_filter_token1, STATE(1069), 1, sym_non_empty_entry_body_formal_part, @@ -49582,39 +49598,35 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_part, STATE(1537), 1, sym_entry_barrier, - [41391] = 6, + [41415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - aux_sym_chunk_specification_token1, - ACTIONS(3032), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(3035), 1, - anon_sym_COLON, - ACTIONS(3037), 1, - aux_sym_iterator_specification_token1, - ACTIONS(919), 3, + ACTIONS(3040), 1, sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - [41412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 1, - sym_tick, - ACTIONS(2000), 6, + ACTIONS(2002), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41427] = 7, + [41430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 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, + [41443] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1945), 1, sym_identifier, - ACTIONS(3041), 1, + ACTIONS(3044), 1, aux_sym_iterated_element_association_token1, STATE(1270), 1, sym_parameter_specification, @@ -49624,7 +49636,7 @@ static const uint16_t ts_small_parse_table[] = { sym__parameter_specification_list, STATE(1675), 1, sym_entry_index_specification, - [41449] = 7, + [41465] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(227), 1, @@ -49639,127 +49651,127 @@ static const uint16_t ts_small_parse_table[] = { sym_non_empty_mode, STATE(1454), 1, sym_global_aspect_element, - [41471] = 4, + [41487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3046), 1, anon_sym_COMMA, STATE(957), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3045), 4, + ACTIONS(3048), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41487] = 3, + [41503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, + ACTIONS(3052), 1, anon_sym_EQ_GT, - ACTIONS(3047), 5, + ACTIONS(3050), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41501] = 3, + [41517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1921), 1, + ACTIONS(1916), 1, sym_identifier, - ACTIONS(1923), 5, + ACTIONS(1918), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [41515] = 2, + [41531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 6, + ACTIONS(3054), 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, - [41527] = 7, + [41543] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3053), 1, + ACTIONS(3056), 1, aux_sym_compilation_unit_token1, - ACTIONS(3055), 1, + ACTIONS(3058), 1, aux_sym_allocator_token1, - ACTIONS(3057), 1, + ACTIONS(3060), 1, aux_sym_interface_type_definition_token2, STATE(1389), 1, sym_record_definition, - [41549] = 3, + [41565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 1, + ACTIONS(3062), 1, sym_identifier, - ACTIONS(3061), 5, + ACTIONS(3064), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [41563] = 7, + [41579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3053), 1, + ACTIONS(3056), 1, aux_sym_compilation_unit_token1, - ACTIONS(3063), 1, + ACTIONS(3066), 1, anon_sym_SEMI, - ACTIONS(3065), 1, + ACTIONS(3068), 1, aux_sym_with_clause_token1, STATE(1389), 1, sym_record_definition, - [41585] = 5, + [41601] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3067), 1, + ACTIONS(3070), 1, aux_sym_package_specification_token1, STATE(1104), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [41603] = 2, + [41619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 6, + ACTIONS(3072), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ_GT, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41615] = 4, + [41631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3071), 1, + ACTIONS(3074), 1, anon_sym_COMMA, STATE(943), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3074), 4, + ACTIONS(3077), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41631] = 7, + [41647] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49768,16 +49780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3076), 1, + ACTIONS(3079), 1, anon_sym_SEMI, - ACTIONS(3078), 1, + ACTIONS(3081), 1, aux_sym_with_clause_token2, STATE(264), 1, sym_actual_parameter_part, - [41653] = 3, + [41669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3083), 1, anon_sym_COLON, ACTIONS(919), 5, sym_tick, @@ -49785,7 +49797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, - [41667] = 7, + [41683] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49794,13 +49806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3082), 1, + ACTIONS(3085), 1, anon_sym_SEMI, - ACTIONS(3084), 1, + ACTIONS(3087), 1, aux_sym_with_clause_token2, STATE(264), 1, sym_actual_parameter_part, - [41689] = 7, + [41705] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49809,52 +49821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3086), 1, + ACTIONS(3089), 1, aux_sym_iterator_filter_token1, - ACTIONS(3088), 1, + ACTIONS(3091), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [41711] = 3, + [41727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3093), 1, sym_identifier, - ACTIONS(3092), 5, + ACTIONS(3095), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [41725] = 7, + [41741] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3056), 1, aux_sym_compilation_unit_token1, - ACTIONS(3094), 1, + ACTIONS(3097), 1, aux_sym_with_clause_token1, - ACTIONS(3096), 1, + ACTIONS(3099), 1, aux_sym_allocator_token1, - ACTIONS(3098), 1, + ACTIONS(3101), 1, aux_sym_private_type_declaration_token1, - ACTIONS(3100), 1, + ACTIONS(3103), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3102), 1, + ACTIONS(3105), 1, aux_sym_private_extension_declaration_token1, - [41747] = 5, + [41763] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3104), 1, + ACTIONS(3107), 1, aux_sym_iterator_filter_token1, - ACTIONS(3106), 1, + ACTIONS(3109), 1, aux_sym_package_specification_token3, STATE(963), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [41765] = 6, + [41781] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49865,63 +49877,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(3108), 2, + ACTIONS(3111), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [41785] = 4, + [41801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2763), 1, anon_sym_SEMI, - ACTIONS(3110), 1, + ACTIONS(3113), 1, anon_sym_COLON, ACTIONS(919), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [41801] = 6, + [41817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(2997), 1, anon_sym_LPAREN, - ACTIONS(3112), 1, + ACTIONS(3115), 1, anon_sym_SEMI, - ACTIONS(3114), 1, + ACTIONS(3117), 1, aux_sym_package_specification_token2, STATE(1436), 1, sym_known_discriminant_part, STATE(1439), 2, sym__discriminant_part, sym_unknown_discriminant_part, - [41821] = 6, + [41837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1065), 1, sym__assign_value, STATE(1471), 1, sym_aspect_specification, - ACTIONS(3116), 2, + ACTIONS(3119), 2, anon_sym_RPAREN, anon_sym_SEMI, - [41841] = 5, + [41857] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1949), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(1951), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3118), 1, + ACTIONS(3121), 1, aux_sym_entry_declaration_token1, STATE(1070), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [41859] = 7, + [41875] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -49930,32 +49942,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1031), 1, sym_actual_parameter_part, STATE(1804), 1, sym__assign_value, - [41881] = 4, + [41897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 1, + ACTIONS(3046), 1, anon_sym_COMMA, STATE(943), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3120), 4, + ACTIONS(3123), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [41897] = 7, + [41913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3121), 1, aux_sym_entry_declaration_token1, - ACTIONS(3122), 1, + ACTIONS(3125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3124), 1, + ACTIONS(3127), 1, aux_sym_access_to_subprogram_definition_token3, STATE(1024), 1, sym__subprogram_specification, @@ -49963,98 +49975,98 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1149), 1, sym_procedure_specification, - [41919] = 3, + [41935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, + ACTIONS(3129), 1, sym_identifier, - ACTIONS(3128), 5, + ACTIONS(3131), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_package_specification_token3, - [41933] = 7, + [41949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3130), 1, + ACTIONS(3133), 1, anon_sym_LPAREN, - ACTIONS(3132), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - ACTIONS(3134), 1, + ACTIONS(3137), 1, aux_sym_package_specification_token2, STATE(1100), 1, sym_known_discriminant_part, STATE(1355), 1, sym_aspect_specification, - [41955] = 5, + [41971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3139), 1, sym_identifier, STATE(1300), 1, sym_quantifier, - ACTIONS(3138), 2, + ACTIONS(3141), 2, aux_sym_use_clause_token1, aux_sym_quantifier_token1, STATE(1443), 2, sym_loop_parameter_specification, sym_iterator_specification, - [41973] = 3, + [41989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, + ACTIONS(3143), 1, sym_identifier, - ACTIONS(3142), 5, + ACTIONS(3145), 5, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_package_specification_token3, - [41987] = 5, + [42003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 1, - aux_sym_iterator_filter_token1, ACTIONS(3147), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3150), 1, aux_sym_package_specification_token3, - ACTIONS(3149), 1, + ACTIONS(3152), 1, aux_sym_pragma_g_token1, STATE(963), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [42005] = 6, + [42021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3155), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3157), 1, anon_sym_RBRACK, - ACTIONS(3158), 1, + ACTIONS(3161), 1, aux_sym_with_clause_token2, STATE(1323), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42025] = 6, + [42041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_COMMA, - ACTIONS(3162), 1, + ACTIONS(3165), 1, anon_sym_RPAREN, - ACTIONS(3164), 1, + ACTIONS(3167), 1, aux_sym_with_clause_token2, STATE(1373), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42045] = 7, + [42061] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, @@ -50063,27 +50075,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_subprogram_body_token1, ACTIONS(333), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3166), 1, + ACTIONS(3169), 1, aux_sym_declare_expression_token1, - ACTIONS(3168), 1, + ACTIONS(3171), 1, aux_sym_loop_statement_token1, STATE(1795), 1, sym_iteration_scheme, - [42067] = 6, + [42083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3163), 1, anon_sym_COMMA, - ACTIONS(3164), 1, + ACTIONS(3167), 1, aux_sym_with_clause_token2, - ACTIONS(3170), 1, + ACTIONS(3173), 1, anon_sym_RPAREN, STATE(1373), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42087] = 6, + [42103] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50094,23 +50106,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - ACTIONS(3172), 2, + ACTIONS(3175), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42107] = 6, + [42123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3174), 1, + ACTIONS(3177), 1, anon_sym_SEMI, STATE(1183), 1, sym__assign_value, STATE(1891), 1, sym_aspect_specification, - [42126] = 6, + [42142] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50119,11 +50131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3176), 1, + ACTIONS(3179), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42145] = 6, + [42161] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50132,24 +50144,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3178), 1, + ACTIONS(3181), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42164] = 6, + [42180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3180), 1, + ACTIONS(3183), 1, anon_sym_SEMI, STATE(1247), 1, sym__assign_value, STATE(1718), 1, sym_aspect_specification, - [42183] = 6, + [42199] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50158,11 +50170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3182), 1, + ACTIONS(3185), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42202] = 6, + [42218] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50171,11 +50183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(2443), 1, + ACTIONS(2454), 1, aux_sym_range_attribute_designator_token1, STATE(264), 1, sym_actual_parameter_part, - [42221] = 6, + [42237] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50184,37 +50196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3184), 1, + ACTIONS(3187), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42240] = 6, + [42256] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(429), 1, aux_sym_component_choice_list_token1, - ACTIONS(3186), 1, + ACTIONS(3189), 1, sym_identifier, - ACTIONS(3188), 1, + ACTIONS(3191), 1, sym_string_literal, STATE(1352), 1, sym__named_record_component_association, STATE(1689), 1, sym_component_choice_list, - [42259] = 6, + [42275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(3190), 1, + ACTIONS(3193), 1, anon_sym_SEMI, STATE(1315), 1, sym_formal_part, STATE(1605), 1, sym_aspect_specification, - [42278] = 6, + [42294] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50223,11 +50235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3192), 1, + ACTIONS(3195), 1, anon_sym_RPAREN, STATE(264), 1, sym_actual_parameter_part, - [42297] = 6, + [42313] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50236,20 +50248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3194), 1, + ACTIONS(3197), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42316] = 2, + [42332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 5, + ACTIONS(3199), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42327] = 4, + [42343] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, @@ -50260,7 +50272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - [42342] = 6, + [42358] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50269,11 +50281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3198), 1, + ACTIONS(3201), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42361] = 6, + [42377] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50282,11 +50294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3200), 1, + ACTIONS(3203), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42380] = 6, + [42396] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50295,24 +50307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3202), 1, + ACTIONS(3205), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, - [42399] = 6, + [42415] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3204), 1, + ACTIONS(3207), 1, anon_sym_SEMI, STATE(1334), 1, sym__assign_value, STATE(1927), 1, sym_aspect_specification, - [42418] = 6, + [42434] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50321,11 +50333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3206), 1, + ACTIONS(3209), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, - [42437] = 6, + [42453] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50334,24 +50346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3208), 1, + ACTIONS(3211), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42456] = 6, + [42472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3210), 1, + ACTIONS(3213), 1, anon_sym_SEMI, STATE(1306), 1, sym__assign_value, STATE(1653), 1, sym_aspect_specification, - [42475] = 6, + [42491] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50360,34 +50372,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3212), 1, + ACTIONS(3215), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, - [42494] = 4, + [42510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3219), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3214), 2, + ACTIONS(3217), 2, aux_sym_package_specification_token3, aux_sym_expression_token4, STATE(990), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [42509] = 5, + [42525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 1, + ACTIONS(3222), 1, aux_sym_package_specification_token3, - ACTIONS(3221), 1, + ACTIONS(3224), 1, aux_sym_expression_token4, - ACTIONS(3223), 1, + ACTIONS(3226), 1, aux_sym_elsif_expression_item_token1, STATE(995), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [42526] = 6, + [42542] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50396,73 +50408,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3225), 1, + ACTIONS(3228), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42545] = 6, + [42561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3227), 1, + ACTIONS(3230), 1, anon_sym_SEMI, - ACTIONS(3229), 1, + ACTIONS(3232), 1, aux_sym_package_specification_token2, - ACTIONS(3231), 1, + ACTIONS(3234), 1, aux_sym_object_renaming_declaration_token1, STATE(1487), 1, sym_aspect_specification, - [42564] = 4, + [42580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 1, + ACTIONS(3238), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3233), 2, + ACTIONS(3236), 2, anon_sym_RPAREN, aux_sym_expression_token4, STATE(994), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [42579] = 5, + [42595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 1, + ACTIONS(3226), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3238), 1, + ACTIONS(3241), 1, aux_sym_package_specification_token3, - ACTIONS(3240), 1, + ACTIONS(3243), 1, aux_sym_expression_token4, STATE(990), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [42596] = 6, + [42612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3242), 1, + ACTIONS(3245), 1, anon_sym_SEMI, STATE(1157), 1, sym__assign_value, STATE(1889), 1, sym_aspect_specification, - [42615] = 6, + [42631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3244), 1, + ACTIONS(3247), 1, anon_sym_SEMI, STATE(1331), 1, sym__assign_value, STATE(1884), 1, sym_aspect_specification, - [42634] = 6, + [42650] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50471,35 +50483,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3246), 1, + ACTIONS(3249), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42653] = 6, + [42669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3130), 1, + ACTIONS(3133), 1, anon_sym_LPAREN, - ACTIONS(3248), 1, + ACTIONS(3251), 1, aux_sym_package_specification_token2, STATE(1263), 1, sym_known_discriminant_part, STATE(1565), 1, sym_aspect_specification, - [42672] = 4, + [42688] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(3104), 1, + ACTIONS(3107), 1, aux_sym_iterator_filter_token1, STATE(950), 3, sym_exception_handler, aux_sym__exception_handler_list, sym_pragma_g, - [42687] = 2, + [42703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2029), 5, @@ -50508,20 +50520,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [42698] = 6, + [42714] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(979), 1, anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3250), 1, + ACTIONS(3253), 1, sym_tick, - ACTIONS(3252), 1, + ACTIONS(3255), 1, aux_sym_iterated_element_association_token2, STATE(264), 1, sym_actual_parameter_part, - [42717] = 6, + [42733] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50530,28 +50542,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3254), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, STATE(264), 1, sym_actual_parameter_part, - [42736] = 5, + [42752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3259), 1, anon_sym_RPAREN, - ACTIONS(3258), 1, + ACTIONS(3261), 1, aux_sym_expression_token4, - ACTIONS(3260), 1, + ACTIONS(3263), 1, aux_sym_elsif_expression_item_token1, STATE(1051), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [42753] = 6, + [42769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(3265), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3267), 1, anon_sym_LT_GT, STATE(1187), 1, sym_discriminant_specification, @@ -50559,41 +50571,41 @@ static const uint16_t ts_small_parse_table[] = { sym_discriminant_specification_list, STATE(1521), 1, sym__defining_identifier_list, - [42772] = 3, + [42788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 1, + ACTIONS(3269), 1, aux_sym_package_specification_token2, ACTIONS(919), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, aux_sym_with_clause_token2, - [42785] = 5, + [42801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(1425), 1, sym_formal_part, - STATE(832), 2, + STATE(834), 2, sym__parameter_and_result_profile, sym_result_profile, - [42802] = 5, + [42818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(1425), 1, sym_formal_part, - STATE(833), 2, + STATE(827), 2, sym__parameter_and_result_profile, sym_result_profile, - [42819] = 6, + [42835] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50602,11 +50614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3269), 1, + ACTIONS(3272), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42838] = 6, + [42854] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50615,61 +50627,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3271), 1, + ACTIONS(3274), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42857] = 4, + [42873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2250), 1, aux_sym_iterator_filter_token1, STATE(1284), 1, sym_iterator_filter, - ACTIONS(3273), 3, + ACTIONS(3276), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42872] = 2, + [42888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 5, + ACTIONS(3278), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [42883] = 5, + [42899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3155), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3157), 1, anon_sym_RBRACK, STATE(1323), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [42900] = 6, + [42916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3277), 1, + ACTIONS(3280), 1, anon_sym_SEMI, STATE(1242), 1, sym__assign_value, STATE(1722), 1, sym_aspect_specification, - [42919] = 6, + [42935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 1, + ACTIONS(3125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3124), 1, + ACTIONS(3127), 1, aux_sym_access_to_subprogram_definition_token3, STATE(1024), 1, sym__subprogram_specification, @@ -50677,7 +50689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1149), 1, sym_procedure_specification, - [42938] = 6, + [42954] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50686,11 +50698,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3279), 1, + ACTIONS(3282), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, - [42957] = 6, + [42973] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50699,11 +50711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3281), 1, + ACTIONS(3284), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42976] = 6, + [42992] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50712,11 +50724,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3283), 1, + ACTIONS(3286), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [42995] = 6, + [43011] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50725,48 +50737,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3285), 1, + ACTIONS(3288), 1, aux_sym_at_clause_token1, STATE(264), 1, sym_actual_parameter_part, - [43014] = 4, + [43030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 1, + ACTIONS(2747), 1, aux_sym_expression_token1, STATE(1037), 1, aux_sym__interface_list_repeat1, - ACTIONS(3287), 3, + ACTIONS(3290), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43029] = 6, + [43045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3289), 1, + ACTIONS(3292), 1, anon_sym_LPAREN, - ACTIONS(3291), 1, + ACTIONS(3294), 1, anon_sym_SEMI, STATE(1230), 1, sym_formal_part, STATE(1736), 1, sym_aspect_specification, - [43048] = 6, + [43064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3293), 1, + ACTIONS(3296), 1, anon_sym_SEMI, STATE(1313), 1, sym__assign_value, STATE(1647), 1, sym_aspect_specification, - [43067] = 6, + [43083] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50775,24 +50787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3295), 1, + ACTIONS(3298), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43086] = 6, + [43102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3297), 1, + ACTIONS(3300), 1, anon_sym_SEMI, - ACTIONS(3299), 1, + ACTIONS(3302), 1, aux_sym_package_specification_token2, - ACTIONS(3301), 1, + ACTIONS(3304), 1, aux_sym_object_renaming_declaration_token1, STATE(1435), 1, sym_aspect_specification, - [43105] = 6, + [43121] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50801,57 +50813,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3303), 1, + ACTIONS(3306), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43124] = 4, + [43140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, STATE(1221), 1, sym_formal_part, - ACTIONS(3305), 3, + ACTIONS(3308), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43139] = 5, + [43155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(1425), 1, sym_formal_part, STATE(1221), 2, sym__parameter_and_result_profile, sym_result_profile, - [43156] = 5, + [43172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(1425), 1, sym_formal_part, STATE(1151), 2, sym__parameter_and_result_profile, sym_result_profile, - [43173] = 4, + [43189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, STATE(1151), 1, sym_formal_part, - ACTIONS(3307), 3, + ACTIONS(3310), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43188] = 6, + [43204] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50860,21 +50872,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3309), 1, + ACTIONS(3312), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43207] = 3, + [43223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3314), 1, anon_sym_SEMI, ACTIONS(937), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [43220] = 6, + [43236] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50883,37 +50895,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3313), 1, + ACTIONS(3316), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43239] = 6, + [43255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3315), 1, + ACTIONS(3318), 1, anon_sym_SEMI, STATE(1342), 1, sym__assign_value, STATE(1615), 1, sym_aspect_specification, - [43258] = 6, + [43274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3317), 1, + ACTIONS(3320), 1, anon_sym_SEMI, STATE(1339), 1, sym__assign_value, STATE(1624), 1, sym_aspect_specification, - [43277] = 6, + [43293] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1949), 1, @@ -50926,7 +50938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1149), 1, sym_procedure_specification, - [43296] = 6, + [43312] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50935,61 +50947,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3319), 1, + ACTIONS(3322), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43315] = 4, + [43331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3324), 1, aux_sym_expression_token1, STATE(1037), 1, aux_sym__interface_list_repeat1, - ACTIONS(2882), 3, + ACTIONS(2877), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43330] = 6, + [43346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3324), 1, + ACTIONS(3327), 1, aux_sym_compilation_unit_token1, - ACTIONS(3326), 1, + ACTIONS(3329), 1, aux_sym_with_clause_token1, STATE(1498), 1, sym_record_definition, - [43349] = 6, + [43365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(3328), 1, + ACTIONS(3331), 1, anon_sym_SEMI, STATE(1266), 1, sym_formal_part, STATE(1696), 1, sym_aspect_specification, - [43368] = 6, + [43384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3057), 1, + ACTIONS(3060), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3330), 1, + ACTIONS(3333), 1, aux_sym_allocator_token1, STATE(1389), 1, sym_record_definition, - [43387] = 6, + [43403] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -50998,11 +51010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3332), 1, + ACTIONS(3335), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43406] = 6, + [43422] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51011,23 +51023,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3334), 1, + ACTIONS(3337), 1, anon_sym_COMMA, STATE(264), 1, sym_actual_parameter_part, - [43425] = 5, + [43441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, STATE(1425), 1, sym_formal_part, - STATE(827), 2, + STATE(833), 2, sym__parameter_and_result_profile, sym_result_profile, - [43442] = 6, + [43458] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51036,11 +51048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3336), 1, + ACTIONS(3339), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43461] = 4, + [43477] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1949), 1, @@ -51051,25 +51063,25 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [43476] = 6, + [43492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3227), 1, + ACTIONS(3230), 1, anon_sym_SEMI, - ACTIONS(3231), 1, + ACTIONS(3234), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3338), 1, + ACTIONS(3341), 1, aux_sym_package_specification_token2, STATE(1772), 1, sym_aspect_specification, - [43495] = 6, + [43511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 1, + ACTIONS(3125), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3124), 1, + ACTIONS(3127), 1, aux_sym_access_to_subprogram_definition_token3, STATE(1050), 1, sym__subprogram_specification, @@ -51077,80 +51089,80 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1149), 1, sym_procedure_specification, - [43514] = 2, + [43530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 5, + ACTIONS(3343), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43525] = 2, + [43541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 5, + ACTIONS(3345), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43536] = 6, + [43552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3297), 1, + ACTIONS(3300), 1, anon_sym_SEMI, - ACTIONS(3301), 1, + ACTIONS(3304), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3344), 1, + ACTIONS(3347), 1, aux_sym_package_specification_token2, STATE(1801), 1, sym_aspect_specification, - [43555] = 5, + [43571] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3263), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3346), 1, + ACTIONS(3349), 1, anon_sym_RPAREN, - ACTIONS(3348), 1, + ACTIONS(3351), 1, aux_sym_expression_token4, STATE(994), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [43572] = 2, + [43588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 5, + ACTIONS(3077), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43583] = 4, + [43599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2250), 1, aux_sym_iterator_filter_token1, STATE(1177), 1, sym_iterator_filter, - ACTIONS(3350), 3, + ACTIONS(3353), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [43598] = 3, + [43614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 1, + ACTIONS(2763), 1, anon_sym_SEMI, ACTIONS(919), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [43611] = 6, + [43627] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51159,11 +51171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3352), 1, + ACTIONS(3355), 1, anon_sym_SEMI, STATE(264), 1, sym_actual_parameter_part, - [43630] = 6, + [43646] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51172,240 +51184,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3357), 1, aux_sym_object_renaming_declaration_token1, STATE(264), 1, sym_actual_parameter_part, - [43649] = 6, + [43665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3356), 1, + ACTIONS(3359), 1, anon_sym_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3361), 1, anon_sym_SEMI, STATE(1322), 1, sym_formal_part, STATE(1646), 1, sym_aspect_specification, - [43668] = 2, + [43684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 4, + ACTIONS(3363), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [43678] = 2, + [43694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 4, + ACTIONS(3365), 4, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43688] = 2, + [43704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 4, + ACTIONS(3367), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym_package_specification_token2, - [43698] = 4, + [43714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 1, + ACTIONS(3369), 1, anon_sym_COMMA, STATE(1061), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3369), 2, + ACTIONS(3372), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [43712] = 3, + [43728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 1, + ACTIONS(3374), 1, aux_sym_iterated_element_association_token2, ACTIONS(879), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [43724] = 4, + [43740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, + ACTIONS(3377), 1, anon_sym_COMMA, STATE(1063), 1, aux_sym__name_list_repeat1, - ACTIONS(2964), 2, + ACTIONS(2967), 2, anon_sym_RPAREN, anon_sym_SEMI, - [43738] = 5, + [43754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3377), 1, + ACTIONS(3380), 1, aux_sym_compilation_unit_token1, STATE(1426), 1, sym_record_definition, - [43754] = 4, + [43770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1401), 1, sym_aspect_specification, - ACTIONS(3379), 2, + ACTIONS(3382), 2, anon_sym_RPAREN, anon_sym_SEMI, - [43768] = 4, + [43784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1429), 1, sym_aspect_specification, - ACTIONS(3381), 2, + ACTIONS(3384), 2, anon_sym_RPAREN, anon_sym_SEMI, - [43782] = 5, + [43798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3383), 1, + ACTIONS(3386), 1, anon_sym_SEMI, - ACTIONS(3385), 1, + ACTIONS(3388), 1, aux_sym_package_specification_token2, STATE(1383), 1, sym_aspect_specification, - [43798] = 4, + [43814] = 4, ACTIONS(3), 1, sym_comment, STATE(1158), 1, sym__enumeration_literal_specification, STATE(1789), 1, sym__enumeration_literal_list, - ACTIONS(3387), 2, + ACTIONS(3390), 2, sym_identifier, sym_character_literal, - [43812] = 5, + [43828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3028), 1, + ACTIONS(3038), 1, aux_sym_iterator_filter_token1, STATE(1396), 1, sym_aspect_specification, STATE(1677), 1, sym_entry_barrier, - [43828] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3297), 1, - anon_sym_SEMI, - ACTIONS(3344), 1, - aux_sym_package_specification_token2, - STATE(1801), 1, - sym_aspect_specification, [43844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 1, - aux_sym_allocator_token1, - ACTIONS(3102), 1, - aux_sym_private_extension_declaration_token1, - ACTIONS(3389), 1, - aux_sym_with_clause_token1, - ACTIONS(3391), 1, - aux_sym_private_type_declaration_token2, - [43860] = 3, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3300), 1, + anon_sym_SEMI, + ACTIONS(3347), 1, + aux_sym_package_specification_token2, + STATE(1801), 1, + sym_aspect_specification, + [43860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3058), 1, + aux_sym_allocator_token1, + ACTIONS(3105), 1, + aux_sym_private_extension_declaration_token1, + ACTIONS(3392), 1, + aux_sym_with_clause_token1, + ACTIONS(3394), 1, + aux_sym_private_type_declaration_token2, + [43876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3398), 1, aux_sym_expression_token1, - ACTIONS(3393), 3, + ACTIONS(3396), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [43872] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_SEMI, - ACTIONS(3399), 1, - aux_sym_with_clause_token2, - ACTIONS(3402), 1, - aux_sym_expression_token1, - STATE(1422), 1, - sym_record_extension_part, [43888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, + ACTIONS(3400), 1, anon_sym_SEMI, - ACTIONS(3406), 1, + ACTIONS(3402), 1, aux_sym_with_clause_token2, + ACTIONS(3405), 1, + aux_sym_expression_token1, + STATE(1422), 1, + sym_record_extension_part, + [43904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + anon_sym_SEMI, ACTIONS(3409), 1, + aux_sym_with_clause_token2, + ACTIONS(3412), 1, aux_sym_expression_token1, STATE(1382), 1, sym_record_extension_part, - [43904] = 2, + [43920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 4, + ACTIONS(3414), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [43914] = 2, + [43930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 4, + ACTIONS(3416), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [43924] = 4, + [43940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3418), 1, aux_sym_iterator_filter_token1, STATE(1642), 1, sym_variant_list, STATE(1109), 2, sym_variant, aux_sym_variant_list_repeat1, - [43938] = 5, + [43954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3417), 1, + ACTIONS(3420), 1, aux_sym_compilation_unit_token1, STATE(1426), 1, sym_record_definition, - [43954] = 4, + [43970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3424), 1, aux_sym_range_attribute_designator_token1, STATE(1361), 1, sym_real_range_specification, - ACTIONS(3419), 2, + ACTIONS(3422), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [43968] = 5, + [43984] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51416,21 +51428,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(1031), 1, sym_actual_parameter_part, - [43984] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3227), 1, - anon_sym_SEMI, - ACTIONS(3338), 1, - aux_sym_package_specification_token2, - STATE(1772), 1, - sym_aspect_specification, [44000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3230), 1, + anon_sym_SEMI, + ACTIONS(3341), 1, + aux_sym_package_specification_token2, + STATE(1772), 1, + sym_aspect_specification, + [44016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 1, sym_identifier, STATE(1187), 1, sym_discriminant_specification, @@ -51438,7 +51450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_discriminant_specification_list, STATE(1521), 1, sym__defining_identifier_list, - [44016] = 5, + [44032] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(949), 1, @@ -51449,512 +51461,512 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(264), 1, sym_actual_parameter_part, - [44032] = 2, + [44048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 4, + ACTIONS(3426), 4, anon_sym_RPAREN, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_accept_statement_token2, - [44042] = 5, + [44058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3425), 1, + ACTIONS(3428), 1, aux_sym_with_clause_token1, STATE(1389), 1, sym_record_definition, - [44058] = 4, + [44074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1408), 1, sym_aspect_specification, - ACTIONS(3427), 2, + ACTIONS(3430), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44072] = 5, + [44088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 1, + ACTIONS(3432), 1, aux_sym_package_specification_token3, - ACTIONS(3431), 1, + ACTIONS(3434), 1, aux_sym_expression_token3, - ACTIONS(3433), 1, + ACTIONS(3436), 1, aux_sym_expression_token4, STATE(1098), 1, aux_sym_selective_accept_repeat1, - [44088] = 4, + [44104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, + ACTIONS(3440), 1, aux_sym_allocator_token1, - ACTIONS(3439), 1, + ACTIONS(3442), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3435), 2, + ACTIONS(3438), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [44102] = 5, + [44118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3444), 1, aux_sym_compilation_unit_token1, - ACTIONS(3443), 1, + ACTIONS(3446), 1, anon_sym_SEMI, - ACTIONS(3445), 1, + ACTIONS(3448), 1, aux_sym_with_clause_token1, - ACTIONS(3447), 1, + ACTIONS(3450), 1, aux_sym_expression_token3, - [44118] = 4, + [44134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3449), 1, - aux_sym_iterator_filter_token1, ACTIONS(3452), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3455), 1, aux_sym_package_specification_token3, STATE(1090), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [44132] = 5, + [44148] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, anon_sym_COMMA, - ACTIONS(2743), 1, + ACTIONS(2765), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3454), 1, + ACTIONS(3457), 1, anon_sym_COLON, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - [44148] = 4, + [44164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3460), 1, anon_sym_COMMA, STATE(1101), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3459), 2, + ACTIONS(3462), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [44162] = 3, + [44178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3466), 1, aux_sym_expression_token2, - ACTIONS(3461), 3, + ACTIONS(3464), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [44174] = 4, + [44190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3470), 1, aux_sym_allocator_token1, - ACTIONS(3469), 1, + ACTIONS(3472), 1, aux_sym_private_type_declaration_token2, - ACTIONS(3465), 2, + ACTIONS(3468), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [44188] = 5, + [44204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3471), 1, + ACTIONS(3474), 1, anon_sym_SEMI, - ACTIONS(3473), 1, + ACTIONS(3476), 1, aux_sym_expression_token3, STATE(1664), 1, sym_aspect_specification, - [44204] = 4, + [44220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(3478), 1, aux_sym_iterator_filter_token1, - ACTIONS(3477), 1, + ACTIONS(3480), 1, aux_sym_package_specification_token3, STATE(1090), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [44218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3479), 1, - anon_sym_LPAREN, - ACTIONS(3481), 1, - anon_sym_SEMI, - ACTIONS(3483), 1, - aux_sym_accept_statement_token2, - STATE(1378), 1, - sym_formal_part, [44234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_expression_token3, - ACTIONS(3485), 1, - aux_sym_package_specification_token3, - ACTIONS(3487), 1, - aux_sym_expression_token4, - STATE(1122), 1, - aux_sym_selective_accept_repeat1, + ACTIONS(3482), 1, + anon_sym_LPAREN, + ACTIONS(3484), 1, + anon_sym_SEMI, + ACTIONS(3486), 1, + aux_sym_accept_statement_token2, + STATE(1378), 1, + sym_formal_part, [44250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, - aux_sym_primary_null_token1, - ACTIONS(1823), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3324), 1, - aux_sym_compilation_unit_token1, - STATE(1498), 1, - sym_record_definition, + ACTIONS(3434), 1, + aux_sym_expression_token3, + ACTIONS(3488), 1, + aux_sym_package_specification_token3, + ACTIONS(3490), 1, + aux_sym_expression_token4, + STATE(1122), 1, + aux_sym_selective_accept_repeat1, [44266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(1821), 1, + aux_sym_primary_null_token1, + ACTIONS(1827), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3327), 1, + aux_sym_compilation_unit_token1, + STATE(1498), 1, + sym_record_definition, + [44282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3489), 1, + ACTIONS(3492), 1, anon_sym_SEMI, - ACTIONS(3491), 1, + ACTIONS(3494), 1, aux_sym_package_specification_token2, STATE(1495), 1, sym_aspect_specification, - [44282] = 4, + [44298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3493), 1, + ACTIONS(3496), 1, anon_sym_COMMA, STATE(1101), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3496), 2, + ACTIONS(3499), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [44296] = 5, + [44312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3434), 1, aux_sym_expression_token3, - ACTIONS(3485), 1, + ACTIONS(3488), 1, aux_sym_package_specification_token3, - ACTIONS(3487), 1, + ACTIONS(3490), 1, aux_sym_expression_token4, STATE(1116), 1, aux_sym_selective_accept_repeat1, - [44312] = 3, + [44328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3500), 1, + ACTIONS(3503), 1, aux_sym_package_specification_token2, - ACTIONS(3498), 3, + ACTIONS(3501), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44324] = 5, + [44340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3503), 1, + ACTIONS(3506), 1, anon_sym_SEMI, - ACTIONS(3505), 1, + ACTIONS(3508), 1, aux_sym_package_specification_token2, STATE(1626), 1, sym_aspect_specification, - [44340] = 3, + [44356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3507), 1, + ACTIONS(3510), 1, aux_sym_package_specification_token2, - ACTIONS(3498), 3, + ACTIONS(3501), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44352] = 5, + [44368] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3510), 1, + ACTIONS(3513), 1, aux_sym_compilation_unit_token1, STATE(1426), 1, sym_record_definition, - [44368] = 4, + [44384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1403), 1, sym__assign_value, - ACTIONS(3512), 2, + ACTIONS(3515), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [44382] = 5, + [44398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3517), 1, anon_sym_COMMA, - ACTIONS(3516), 1, + ACTIONS(3519), 1, anon_sym_RPAREN, STATE(1232), 1, aux_sym_record_component_association_list_repeat1, STATE(1233), 1, aux_sym_positional_array_aggregate_repeat1, - [44398] = 4, + [44414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3418), 1, aux_sym_iterator_filter_token1, - ACTIONS(3519), 1, + ACTIONS(3522), 1, aux_sym_package_specification_token3, STATE(1147), 2, sym_variant, aux_sym_variant_list_repeat1, - [44412] = 4, + [44428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1430), 1, sym_aspect_specification, - ACTIONS(3521), 2, + ACTIONS(3524), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44426] = 2, + [44442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 4, + ACTIONS(3526), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44436] = 2, + [44452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3525), 4, + ACTIONS(3528), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44446] = 4, + [44462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1416), 1, sym__assign_value, - ACTIONS(3527), 2, + ACTIONS(3530), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [44460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3529), 1, - anon_sym_SEMI, - ACTIONS(3531), 1, - aux_sym_with_clause_token2, - ACTIONS(3534), 1, - aux_sym_expression_token1, - STATE(1505), 1, - sym_record_extension_part, [44476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, - aux_sym_primary_null_token1, - ACTIONS(1823), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3536), 1, - aux_sym_compilation_unit_token1, - STATE(1426), 1, - sym_record_definition, + ACTIONS(3532), 1, + anon_sym_SEMI, + ACTIONS(3534), 1, + aux_sym_with_clause_token2, + ACTIONS(3537), 1, + aux_sym_expression_token1, + STATE(1505), 1, + sym_record_extension_part, [44492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, - aux_sym_expression_token3, - ACTIONS(3538), 1, - aux_sym_package_specification_token3, - ACTIONS(3540), 1, - aux_sym_expression_token4, - STATE(1122), 1, - aux_sym_selective_accept_repeat1, + ACTIONS(1821), 1, + aux_sym_primary_null_token1, + ACTIONS(1827), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3539), 1, + aux_sym_compilation_unit_token1, + STATE(1426), 1, + sym_record_definition, [44508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3542), 1, - anon_sym_SEMI, - ACTIONS(3544), 1, + ACTIONS(3434), 1, aux_sym_expression_token3, - STATE(1550), 1, - sym_aspect_specification, + ACTIONS(3541), 1, + aux_sym_package_specification_token3, + ACTIONS(3543), 1, + aux_sym_expression_token4, + STATE(1122), 1, + aux_sym_selective_accept_repeat1, [44524] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3441), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3445), 1, - aux_sym_with_clause_token1, - ACTIONS(3546), 1, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3545), 1, anon_sym_SEMI, - ACTIONS(3548), 1, + ACTIONS(3547), 1, aux_sym_expression_token3, + STATE(1550), 1, + sym_aspect_specification, [44540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, + ACTIONS(3444), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3448), 1, + aux_sym_with_clause_token1, + ACTIONS(3549), 1, + anon_sym_SEMI, + ACTIONS(3551), 1, + aux_sym_expression_token3, + [44556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, anon_sym_SEMI, - ACTIONS(3550), 1, - aux_sym_with_clause_token2, ACTIONS(3553), 1, + aux_sym_with_clause_token2, + ACTIONS(3556), 1, aux_sym_expression_token1, STATE(1382), 1, sym_record_extension_part, - [44556] = 4, + [44572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3457), 1, + ACTIONS(3460), 1, anon_sym_COMMA, STATE(1092), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3555), 2, + ACTIONS(3558), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [44570] = 3, + [44586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3559), 1, + ACTIONS(3562), 1, aux_sym_expression_token1, - ACTIONS(3557), 3, + ACTIONS(3560), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44582] = 4, + [44598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3566), 1, aux_sym_expression_token3, STATE(1122), 1, aux_sym_selective_accept_repeat1, - ACTIONS(3561), 2, + ACTIONS(3564), 2, aux_sym_package_specification_token3, aux_sym_expression_token4, - [44596] = 4, + [44612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1350), 1, sym__assign_value, - ACTIONS(3566), 2, + ACTIONS(3569), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44610] = 3, + [44626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3568), 1, + ACTIONS(3571), 1, aux_sym_attribute_designator_token3, - ACTIONS(3570), 3, + ACTIONS(3573), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44622] = 4, + [44638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, STATE(1379), 1, sym_aspect_specification, - ACTIONS(3572), 2, + ACTIONS(3575), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44636] = 4, + [44652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1370), 1, sym__assign_value, - ACTIONS(3574), 2, + ACTIONS(3577), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [44650] = 4, + [44666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2114), 1, anon_sym_COLON_EQ, STATE(1368), 1, sym__assign_value, - ACTIONS(3574), 2, + ACTIONS(3577), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [44664] = 2, + [44680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 4, + ACTIONS(3579), 4, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44674] = 2, + [44690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3578), 4, + ACTIONS(3581), 4, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44684] = 4, + [44700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3583), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3585), 1, anon_sym_RPAREN, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [44698] = 2, + [44714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 4, + ACTIONS(3587), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [44708] = 3, + [44724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, + ACTIONS(3025), 1, aux_sym_iterated_element_association_token2, ACTIONS(919), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [44720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2659), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_SEMI, - ACTIONS(3588), 1, - aux_sym_accept_statement_token2, - STATE(1358), 1, - sym_formal_part, [44736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(2662), 1, + anon_sym_LPAREN, + ACTIONS(3589), 1, + anon_sym_SEMI, + ACTIONS(3591), 1, + aux_sym_accept_statement_token2, + STATE(1358), 1, + sym_formal_part, + [44752] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3265), 1, sym_identifier, STATE(1270), 1, sym_parameter_specification, @@ -51962,148 +51974,148 @@ static const uint16_t ts_small_parse_table[] = { sym__defining_identifier_list, STATE(1577), 1, sym__parameter_specification_list, - [44752] = 4, + [44768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3424), 1, aux_sym_range_attribute_designator_token1, STATE(1453), 1, sym_real_range_specification, - ACTIONS(3590), 2, + ACTIONS(3593), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [44766] = 5, + [44782] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, anon_sym_COMMA, - ACTIONS(2743), 1, + ACTIONS(2765), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3592), 1, + ACTIONS(3595), 1, anon_sym_COLON, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - [44782] = 5, + [44798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3297), 1, + ACTIONS(3300), 1, anon_sym_SEMI, - ACTIONS(3595), 1, + ACTIONS(3598), 1, aux_sym_package_specification_token2, STATE(1435), 1, sym_aspect_specification, - [44798] = 4, + [44814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, + ACTIONS(3600), 1, anon_sym_COMMA, STATE(1373), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3156), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [44812] = 3, + [44828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3599), 1, + ACTIONS(3602), 1, aux_sym_package_specification_token2, - ACTIONS(3498), 3, + ACTIONS(3501), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44824] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3397), 1, - anon_sym_SEMI, - ACTIONS(3602), 1, - aux_sym_with_clause_token2, - ACTIONS(3605), 1, - aux_sym_expression_token1, - STATE(1422), 1, - sym_record_extension_part, [44840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3529), 1, + ACTIONS(3400), 1, anon_sym_SEMI, - ACTIONS(3607), 1, + ACTIONS(3605), 1, aux_sym_with_clause_token2, - ACTIONS(3610), 1, + ACTIONS(3608), 1, aux_sym_expression_token1, - STATE(1505), 1, + STATE(1422), 1, sym_record_extension_part, [44856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, - aux_sym_with_clause_token2, - ACTIONS(3227), 1, + ACTIONS(3532), 1, anon_sym_SEMI, - ACTIONS(3612), 1, - aux_sym_package_specification_token2, - STATE(1487), 1, - sym_aspect_specification, + ACTIONS(3610), 1, + aux_sym_with_clause_token2, + ACTIONS(3613), 1, + aux_sym_expression_token1, + STATE(1505), 1, + sym_record_extension_part, [44872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, - aux_sym_primary_null_token1, - ACTIONS(1823), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3614), 1, - aux_sym_compilation_unit_token1, - STATE(1426), 1, - sym_record_definition, + ACTIONS(2212), 1, + aux_sym_with_clause_token2, + ACTIONS(3230), 1, + anon_sym_SEMI, + ACTIONS(3615), 1, + aux_sym_package_specification_token2, + STATE(1487), 1, + sym_aspect_specification, [44888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3616), 1, + ACTIONS(3617), 1, aux_sym_compilation_unit_token1, STATE(1426), 1, sym_record_definition, [44904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3618), 1, + ACTIONS(3619), 1, aux_sym_compilation_unit_token1, - STATE(1437), 1, + STATE(1426), 1, sym_record_definition, [44920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3620), 1, + ACTIONS(3621), 1, + aux_sym_compilation_unit_token1, + STATE(1437), 1, + sym_record_definition, + [44936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1821), 1, + aux_sym_primary_null_token1, + ACTIONS(1827), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3623), 1, aux_sym_with_clause_token1, STATE(1498), 1, sym_record_definition, - [44936] = 4, + [44952] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 1, - aux_sym_iterator_filter_token1, ACTIONS(3625), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3628), 1, aux_sym_package_specification_token3, STATE(1147), 2, sym_variant, aux_sym_variant_list_repeat1, - [44950] = 5, + [44966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3630), 1, sym_identifier, STATE(934), 1, sym_aspect_association, @@ -52111,39 +52123,39 @@ static const uint16_t ts_small_parse_table[] = { sym__aspect_mark, STATE(1060), 1, sym_aspect_mark_list, - [44966] = 3, + [44982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3629), 1, + ACTIONS(3632), 1, aux_sym_package_specification_token2, - ACTIONS(3498), 3, + ACTIONS(3501), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [44978] = 2, + [44994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 3, + ACTIONS(3635), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44987] = 2, + [45003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 3, + ACTIONS(3637), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [44996] = 4, + [45012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(3265), 1, sym_identifier, STATE(1444), 1, sym_parameter_specification, STATE(1570), 1, sym__defining_identifier_list, - [45009] = 4, + [45025] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, @@ -52152,1569 +52164,1569 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_value_sequence_token1, STATE(1907), 1, sym_iterated_element_association, - [45022] = 2, + [45038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 3, + ACTIONS(3639), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45031] = 4, + [45047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3638), 1, + ACTIONS(3641), 1, anon_sym_SEMI, STATE(1899), 1, sym_aspect_specification, - [45044] = 2, + [45060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 3, + ACTIONS(3643), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45053] = 4, + [45069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3317), 1, + ACTIONS(3320), 1, anon_sym_SEMI, STATE(1624), 1, sym_aspect_specification, - [45066] = 4, + [45082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3645), 1, anon_sym_COMMA, - ACTIONS(3644), 1, + ACTIONS(3647), 1, anon_sym_RPAREN, STATE(1252), 1, aux_sym__enumeration_literal_list_repeat1, - [45079] = 4, + [45095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3646), 1, + ACTIONS(3649), 1, anon_sym_SEMI, STATE(1554), 1, sym_aspect_specification, - [45092] = 3, + [45108] = 3, ACTIONS(3), 1, sym_comment, STATE(1063), 1, aux_sym__name_list_repeat1, - ACTIONS(3648), 2, + ACTIONS(3651), 2, anon_sym_COMMA, anon_sym_RPAREN, - [45103] = 3, + [45119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(3653), 1, sym_identifier, STATE(1903), 2, sym_loop_parameter_specification, sym_iterator_specification, - [45114] = 4, + [45130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(3655), 1, anon_sym_EQ_GT, - ACTIONS(3654), 1, + ACTIONS(3657), 1, anon_sym_PIPE, STATE(1178), 1, aux_sym_exception_choice_list_repeat1, - [45127] = 2, + [45143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 3, + ACTIONS(3659), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45136] = 4, + [45152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3661), 1, anon_sym_RPAREN, - ACTIONS(3660), 1, + ACTIONS(3663), 1, anon_sym_SEMI, STATE(1274), 1, aux_sym_discriminant_specification_list_repeat1, - [45149] = 4, + [45165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3662), 1, + ACTIONS(3665), 1, anon_sym_SEMI, STATE(1859), 1, sym_aspect_specification, - [45162] = 4, + [45178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3664), 1, + ACTIONS(3667), 1, anon_sym_SEMI, STATE(1704), 1, sym_aspect_specification, - [45175] = 4, + [45191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(3265), 1, sym_identifier, STATE(1397), 1, sym_discriminant_specification, STATE(1521), 1, sym__defining_identifier_list, - [45188] = 2, + [45204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 3, + ACTIONS(3669), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45197] = 4, + [45213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3668), 1, + ACTIONS(3671), 1, anon_sym_SEMI, STATE(1855), 1, sym_aspect_specification, - [45210] = 4, + [45226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, STATE(1498), 1, sym_record_definition, - [45223] = 2, + [45239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 3, + ACTIONS(3673), 3, anon_sym_SEMI, aux_sym_package_specification_token2, aux_sym_expression_token3, - [45232] = 4, + [45248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3672), 1, + ACTIONS(3675), 1, anon_sym_SEMI, STATE(1850), 1, sym_aspect_specification, - [45245] = 4, + [45261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3674), 1, + ACTIONS(3677), 1, aux_sym_package_specification_token2, STATE(1532), 1, sym_aspect_specification, - [45258] = 4, + [45274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, - anon_sym_COMMA, ACTIONS(3679), 1, + anon_sym_COMMA, + ACTIONS(3682), 1, anon_sym_RPAREN, STATE(1174), 1, aux_sym_record_component_association_list_repeat1, - [45271] = 4, + [45287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3684), 1, sym_identifier, - ACTIONS(3683), 1, + ACTIONS(3686), 1, aux_sym_use_clause_token2, - ACTIONS(3685), 1, + ACTIONS(3688), 1, aux_sym_package_body_token1, - [45284] = 4, + [45300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, + ACTIONS(3690), 1, anon_sym_COMMA, - ACTIONS(3689), 1, + ACTIONS(3692), 1, anon_sym_RPAREN, STATE(1267), 1, aux_sym_case_expression_repeat1, - [45297] = 2, + [45313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 3, + ACTIONS(3694), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45306] = 4, + [45322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3657), 1, anon_sym_PIPE, - ACTIONS(3693), 1, + ACTIONS(3696), 1, anon_sym_EQ_GT, STATE(1199), 1, aux_sym_exception_choice_list_repeat1, - [45319] = 4, + [45335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_COMMA, ACTIONS(3698), 1, + anon_sym_COMMA, + ACTIONS(3701), 1, anon_sym_RPAREN, STATE(1179), 1, aux_sym_index_constraint_repeat1, - [45332] = 4, + [45348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_COMMA, ACTIONS(3703), 1, + anon_sym_COMMA, + ACTIONS(3706), 1, anon_sym_RPAREN, STATE(1180), 1, aux_sym_discriminant_constraint_repeat1, - [45345] = 4, + [45361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3708), 1, anon_sym_RPAREN, - ACTIONS(3707), 1, + ACTIONS(3710), 1, anon_sym_SEMI, STATE(1209), 1, aux_sym__parameter_specification_list_repeat1, - [45358] = 4, + [45374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3712), 1, sym_identifier, - ACTIONS(3711), 1, + ACTIONS(3714), 1, aux_sym_use_clause_token2, - ACTIONS(3713), 1, + ACTIONS(3716), 1, aux_sym_package_body_token1, - [45371] = 4, + [45387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3715), 1, + ACTIONS(3718), 1, anon_sym_SEMI, STATE(1627), 1, sym_aspect_specification, - [45384] = 4, + [45400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3717), 1, + ACTIONS(3720), 1, anon_sym_SEMI, STATE(1817), 1, sym_aspect_specification, - [45397] = 4, + [45413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3719), 1, + ACTIONS(3722), 1, anon_sym_SEMI, STATE(1908), 1, sym_aspect_specification, - [45410] = 4, + [45426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 1, - anon_sym_COMMA, ACTIONS(3724), 1, + anon_sym_COMMA, + ACTIONS(3727), 1, anon_sym_RPAREN, STATE(1186), 1, aux_sym_actual_parameter_part_repeat1, - [45423] = 4, + [45439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3663), 1, anon_sym_SEMI, - ACTIONS(3726), 1, + ACTIONS(3729), 1, anon_sym_RPAREN, STATE(1164), 1, aux_sym_discriminant_specification_list_repeat1, - [45436] = 4, + [45452] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3728), 1, + ACTIONS(3731), 1, anon_sym_SEMI, STATE(1910), 1, sym_aspect_specification, - [45449] = 4, + [45465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3730), 1, + ACTIONS(3733), 1, anon_sym_SEMI, STATE(1797), 1, sym_aspect_specification, - [45462] = 4, + [45478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3735), 1, anon_sym_COMMA, - ACTIONS(3734), 1, + ACTIONS(3737), 1, anon_sym_RPAREN, STATE(1216), 1, aux_sym_discriminant_constraint_repeat1, - [45475] = 4, + [45491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, - anon_sym_COMMA, ACTIONS(3739), 1, + anon_sym_COMMA, + ACTIONS(3742), 1, anon_sym_COLON, STATE(1191), 1, aux_sym__defining_identifier_list_repeat1, - [45488] = 4, + [45504] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1943), 1, anon_sym_COMMA, - ACTIONS(3741), 1, + ACTIONS(3744), 1, anon_sym_COLON, STATE(1191), 1, aux_sym__defining_identifier_list_repeat1, - [45501] = 4, + [45517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_COMMA, ACTIONS(3746), 1, + anon_sym_COMMA, + ACTIONS(3749), 1, anon_sym_RPAREN, STATE(1193), 1, aux_sym_global_aspect_definition_repeat1, - [45514] = 2, + [45530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 3, + ACTIONS(3372), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [45523] = 2, + [45539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 3, + ACTIONS(3751), 3, anon_sym_SEMI, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [45532] = 4, + [45548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3750), 1, + ACTIONS(3753), 1, anon_sym_SEMI, STATE(1717), 1, sym_aspect_specification, - [45545] = 2, + [45561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 3, + ACTIONS(3755), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45554] = 4, + [45570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 1, + ACTIONS(3424), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(3754), 1, + ACTIONS(3757), 1, aux_sym_attribute_designator_token3, STATE(1447), 1, sym_real_range_specification, - [45567] = 4, + [45583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3759), 1, anon_sym_EQ_GT, - ACTIONS(3758), 1, + ACTIONS(3761), 1, anon_sym_PIPE, STATE(1199), 1, aux_sym_exception_choice_list_repeat1, - [45580] = 2, + [45596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 3, + ACTIONS(3764), 3, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, aux_sym_pragma_g_token1, - [45589] = 2, + [45605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 3, + ACTIONS(3766), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [45598] = 4, + [45614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - ACTIONS(3767), 1, + ACTIONS(3770), 1, anon_sym_RPAREN, STATE(1219), 1, aux_sym_index_constraint_repeat1, - [45611] = 4, + [45627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3769), 1, + ACTIONS(3772), 1, aux_sym_package_specification_token2, STATE(1614), 1, sym_aspect_specification, - [45624] = 4, + [45640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3771), 1, + ACTIONS(3774), 1, aux_sym_package_specification_token2, STATE(1569), 1, sym_aspect_specification, - [45637] = 4, + [45653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3773), 1, + ACTIONS(3776), 1, anon_sym_SEMI, STATE(1827), 1, sym_aspect_specification, - [45650] = 4, + [45666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, STATE(1437), 1, sym_record_definition, - [45663] = 2, + [45679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 3, + ACTIONS(3778), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [45672] = 4, + [45688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1817), 1, + ACTIONS(1821), 1, aux_sym_primary_null_token1, - ACTIONS(1823), 1, + ACTIONS(1827), 1, aux_sym_record_component_association_list_token1, STATE(1426), 1, sym_record_definition, - [45685] = 4, + [45701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3780), 1, anon_sym_RPAREN, - ACTIONS(3779), 1, + ACTIONS(3782), 1, anon_sym_SEMI, STATE(1209), 1, aux_sym__parameter_specification_list_repeat1, - [45698] = 4, + [45714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(3023), 1, aux_sym_chunk_specification_token1, - ACTIONS(3035), 1, + ACTIONS(3028), 1, anon_sym_COLON, - ACTIONS(3037), 1, + ACTIONS(3030), 1, aux_sym_iterator_specification_token1, - [45711] = 4, + [45727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3782), 1, + ACTIONS(3785), 1, aux_sym_package_specification_token2, STATE(1725), 1, sym_aspect_specification, - [45724] = 4, + [45740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3784), 1, + ACTIONS(3787), 1, anon_sym_SEMI, STATE(1744), 1, sym_aspect_specification, - [45737] = 4, + [45753] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym_PIPE, - ACTIONS(3786), 1, + ACTIONS(3789), 1, anon_sym_EQ_GT, STATE(1227), 1, aux_sym_discriminant_association_repeat1, - [45750] = 4, + [45766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3630), 1, sym_identifier, STATE(935), 1, sym__aspect_mark, STATE(1052), 1, sym_aspect_association, - [45763] = 4, + [45779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(3648), 1, + ACTIONS(3651), 1, anon_sym_SEMI, STATE(1063), 1, aux_sym__name_list_repeat1, - [45776] = 4, + [45792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3735), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3791), 1, anon_sym_RPAREN, STATE(1180), 1, aux_sym_discriminant_constraint_repeat1, - [45789] = 2, + [45805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 3, + ACTIONS(3793), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45798] = 4, + [45814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3792), 1, + ACTIONS(3795), 1, anon_sym_SEMI, STATE(1743), 1, sym_aspect_specification, - [45811] = 4, + [45827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - ACTIONS(3794), 1, + ACTIONS(3797), 1, anon_sym_RPAREN, STATE(1179), 1, aux_sym_index_constraint_repeat1, - [45824] = 4, + [45840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3796), 1, + ACTIONS(3799), 1, anon_sym_SEMI, STATE(1747), 1, sym_aspect_specification, - [45837] = 2, + [45853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 3, + ACTIONS(3310), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45846] = 4, + [45862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3798), 1, + ACTIONS(3801), 1, anon_sym_SEMI, STATE(1684), 1, sym_aspect_specification, - [45859] = 4, + [45875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3800), 1, + ACTIONS(3803), 1, anon_sym_SEMI, STATE(1849), 1, sym_aspect_specification, - [45872] = 2, + [45888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 3, + ACTIONS(3805), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [45881] = 4, + [45897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3804), 1, + ACTIONS(3807), 1, anon_sym_SEMI, STATE(1856), 1, sym_aspect_specification, - [45894] = 4, + [45910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 1, + ACTIONS(3690), 1, anon_sym_COMMA, - ACTIONS(3806), 1, + ACTIONS(3809), 1, anon_sym_RPAREN, STATE(1176), 1, aux_sym_case_expression_repeat1, - [45907] = 4, + [45923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(3811), 1, anon_sym_EQ_GT, - ACTIONS(3810), 1, + ACTIONS(3813), 1, anon_sym_PIPE, STATE(1227), 1, aux_sym_discriminant_association_repeat1, - [45920] = 4, + [45936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3813), 1, + ACTIONS(3816), 1, anon_sym_SEMI, STATE(1858), 1, sym_aspect_specification, - [45933] = 4, + [45949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3815), 1, + ACTIONS(3818), 1, anon_sym_SEMI, STATE(1863), 1, sym_aspect_specification, - [45946] = 4, + [45962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3817), 1, + ACTIONS(3820), 1, anon_sym_SEMI, STATE(1866), 1, sym_aspect_specification, - [45959] = 4, + [45975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3819), 1, + ACTIONS(3822), 1, anon_sym_EQ_GT, - ACTIONS(3821), 1, + ACTIONS(3824), 1, anon_sym_PIPE, STATE(1231), 1, aux_sym_discrete_choice_list_repeat1, - [45972] = 4, + [45988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3827), 1, anon_sym_COMMA, - ACTIONS(3826), 1, + ACTIONS(3829), 1, anon_sym_RPAREN, STATE(1174), 1, aux_sym_record_component_association_list_repeat1, - [45985] = 4, + [46001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(3831), 1, anon_sym_COMMA, - ACTIONS(3830), 1, + ACTIONS(3833), 1, anon_sym_RPAREN, STATE(1061), 1, aux_sym_positional_array_aggregate_repeat1, - [45998] = 2, + [46014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3832), 3, + ACTIONS(3835), 3, aux_sym_package_specification_token3, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [46007] = 4, + [46023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3836), 1, + ACTIONS(3839), 1, anon_sym_RPAREN, STATE(1345), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [46020] = 4, + [46036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3838), 1, + ACTIONS(3841), 1, anon_sym_SEMI, STATE(1654), 1, sym_aspect_specification, - [46033] = 4, + [46049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3840), 1, + ACTIONS(3843), 1, aux_sym_package_specification_token2, STATE(1773), 1, sym_aspect_specification, - [46046] = 4, + [46062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3842), 1, + ACTIONS(3845), 1, anon_sym_SEMI, STATE(1928), 1, sym_aspect_specification, - [46059] = 3, + [46075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3847), 1, sym_identifier, - ACTIONS(3846), 2, + ACTIONS(3849), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [46070] = 4, + [46086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3848), 1, + ACTIONS(3851), 1, anon_sym_SEMI, STATE(1930), 1, sym_aspect_specification, - [46083] = 3, + [46099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(3653), 1, sym_identifier, STATE(1443), 2, sym_loop_parameter_specification, sym_iterator_specification, - [46094] = 4, + [46110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3242), 1, + ACTIONS(3245), 1, anon_sym_SEMI, STATE(1889), 1, sym_aspect_specification, - [46107] = 4, + [46123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3850), 1, + ACTIONS(3853), 1, aux_sym_package_specification_token2, STATE(1569), 1, sym_aspect_specification, - [46120] = 4, + [46136] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3852), 1, + ACTIONS(3855), 1, anon_sym_LPAREN, STATE(1755), 1, sym_iterated_element_association, - [46133] = 2, + [46149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 3, + ACTIONS(3857), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46142] = 2, + [46158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 3, + ACTIONS(3859), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46151] = 4, + [46167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3858), 1, + ACTIONS(3861), 1, anon_sym_SEMI, STATE(1879), 1, sym_aspect_specification, - [46164] = 2, + [46180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3860), 3, + ACTIONS(3863), 3, anon_sym_RPAREN, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [46173] = 2, + [46189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 3, + ACTIONS(3865), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46182] = 2, + [46198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 3, + ACTIONS(3867), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46191] = 4, + [46207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3866), 1, + ACTIONS(3869), 1, anon_sym_SEMI, STATE(1638), 1, sym_aspect_specification, - [46204] = 4, + [46220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3645), 1, anon_sym_COMMA, - ACTIONS(3868), 1, + ACTIONS(3871), 1, anon_sym_RPAREN, STATE(1260), 1, aux_sym__enumeration_literal_list_repeat1, - [46217] = 2, + [46233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 3, + ACTIONS(3873), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46226] = 3, + [46242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1801), 1, + ACTIONS(1805), 1, aux_sym_attribute_designator_token1, STATE(1326), 2, sym_access_to_subprogram_definition, sym_access_to_object_definition, - [46237] = 4, + [46253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3872), 1, + ACTIONS(3875), 1, anon_sym_SEMI, STATE(1731), 1, sym_aspect_specification, - [46250] = 2, + [46266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 3, + ACTIONS(3877), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46259] = 2, + [46275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 3, + ACTIONS(3879), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [46268] = 4, + [46284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 1, + ACTIONS(3881), 1, anon_sym_COMMA, - ACTIONS(3880), 1, + ACTIONS(3883), 1, anon_sym_RPAREN, STATE(1186), 1, aux_sym_actual_parameter_part_repeat1, - [46281] = 3, + [46297] = 3, ACTIONS(3), 1, sym_comment, STATE(1414), 1, sym__enumeration_literal_specification, - ACTIONS(3882), 2, + ACTIONS(3885), 2, sym_identifier, sym_character_literal, - [46292] = 4, + [46308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 1, - anon_sym_COMMA, ACTIONS(3887), 1, + anon_sym_COMMA, + ACTIONS(3890), 1, anon_sym_RPAREN, STATE(1260), 1, aux_sym__enumeration_literal_list_repeat1, - [46305] = 2, + [46321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3889), 3, + ACTIONS(3892), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [46314] = 4, + [46330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3891), 1, + ACTIONS(3894), 1, anon_sym_SEMI, STATE(1897), 1, sym_aspect_specification, - [46327] = 4, + [46343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3893), 1, + ACTIONS(3896), 1, aux_sym_package_specification_token2, STATE(1877), 1, sym_aspect_specification, - [46340] = 2, + [46356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3895), 3, + ACTIONS(3898), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46349] = 4, + [46365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3897), 1, + ACTIONS(3900), 1, anon_sym_SEMI, STATE(1726), 1, sym_aspect_specification, - [46362] = 4, + [46378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3899), 1, + ACTIONS(3902), 1, anon_sym_SEMI, STATE(1529), 1, sym_aspect_specification, - [46375] = 4, + [46391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3901), 1, - anon_sym_COMMA, ACTIONS(3904), 1, + anon_sym_COMMA, + ACTIONS(3907), 1, anon_sym_RPAREN, STATE(1267), 1, aux_sym_case_expression_repeat1, - [46388] = 4, + [46404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3060), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3437), 1, + ACTIONS(3440), 1, aux_sym_allocator_token1, - ACTIONS(3441), 1, + ACTIONS(3444), 1, aux_sym_compilation_unit_token1, - [46401] = 4, + [46417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3906), 1, + ACTIONS(3909), 1, anon_sym_SEMI, STATE(1943), 1, sym_aspect_specification, - [46414] = 4, + [46430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, + ACTIONS(3710), 1, anon_sym_SEMI, - ACTIONS(3908), 1, + ACTIONS(3911), 1, anon_sym_RPAREN, STATE(1181), 1, aux_sym__parameter_specification_list_repeat1, - [46427] = 4, + [46443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3910), 1, + ACTIONS(3913), 1, anon_sym_SEMI, STATE(1780), 1, sym_aspect_specification, - [46440] = 4, + [46456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3912), 1, + ACTIONS(3915), 1, anon_sym_SEMI, STATE(1533), 1, sym_aspect_specification, - [46453] = 4, + [46469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(3916), 1, + ACTIONS(3919), 1, anon_sym_RPAREN, STATE(1319), 1, aux_sym_record_component_association_list_repeat2, - [46466] = 4, + [46482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, + ACTIONS(3921), 1, anon_sym_RPAREN, - ACTIONS(3920), 1, + ACTIONS(3923), 1, anon_sym_SEMI, STATE(1274), 1, aux_sym_discriminant_specification_list_repeat1, - [46479] = 4, + [46495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3333), 1, aux_sym_allocator_token1, - ACTIONS(3923), 1, + ACTIONS(3926), 1, aux_sym_with_clause_token1, - ACTIONS(3925), 1, + ACTIONS(3928), 1, aux_sym_private_type_declaration_token2, - [46492] = 2, + [46508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 3, + ACTIONS(3930), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46501] = 2, + [46517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 3, + ACTIONS(3932), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46510] = 2, + [46526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 3, + ACTIONS(3934), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46519] = 2, + [46535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 3, + ACTIONS(3936), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46528] = 2, + [46544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3935), 3, + ACTIONS(3938), 3, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, aux_sym_pragma_g_token1, - [46537] = 4, + [46553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, + ACTIONS(1923), 1, anon_sym_COLON, ACTIONS(1943), 1, anon_sym_COMMA, STATE(1192), 1, aux_sym__defining_identifier_list_repeat1, - [46550] = 4, + [46566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 1, + ACTIONS(3881), 1, anon_sym_COMMA, - ACTIONS(3937), 1, + ACTIONS(3940), 1, anon_sym_RPAREN, STATE(1258), 1, aux_sym_actual_parameter_part_repeat1, - [46563] = 4, + [46579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3939), 1, + ACTIONS(3942), 1, anon_sym_SEMI, STATE(1793), 1, sym_aspect_specification, - [46576] = 2, + [46592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 3, + ACTIONS(3944), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46585] = 2, + [46601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 3, + ACTIONS(3564), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [46594] = 4, + [46610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, + ACTIONS(3946), 1, anon_sym_EQ_GT, - ACTIONS(3945), 1, + ACTIONS(3948), 1, anon_sym_PIPE, STATE(1321), 1, aux_sym_discrete_choice_list_repeat1, - [46607] = 4, + [46623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(3831), 1, anon_sym_COMMA, - ACTIONS(3947), 1, + ACTIONS(3950), 1, anon_sym_RPAREN, STATE(1233), 1, aux_sym_positional_array_aggregate_repeat1, - [46620] = 2, + [46636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 3, + ACTIONS(3952), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46629] = 3, + [46645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3475), 1, + ACTIONS(3478), 1, aux_sym_iterator_filter_token1, STATE(1096), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [46640] = 4, + [46656] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1783), 1, anon_sym_PIPE, - ACTIONS(3951), 1, + ACTIONS(3954), 1, anon_sym_EQ_GT, STATE(1227), 1, aux_sym_discriminant_association_repeat1, - [46653] = 2, + [46669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 3, + ACTIONS(3956), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46662] = 4, + [46678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3955), 1, + ACTIONS(3958), 1, anon_sym_SEMI, STATE(1559), 1, sym_aspect_specification, - [46675] = 2, + [46691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3949), 3, + ACTIONS(3952), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46684] = 2, + [46700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3461), 3, + ACTIONS(3464), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [46693] = 4, + [46709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3957), 1, - anon_sym_COMMA, ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(3963), 1, anon_sym_RPAREN, STATE(1295), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [46706] = 2, + [46722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 3, + ACTIONS(3965), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [46715] = 4, + [46731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3964), 1, + ACTIONS(3967), 1, anon_sym_SEMI, STATE(1790), 1, sym_aspect_specification, - [46728] = 3, + [46744] = 3, ACTIONS(3), 1, sym_comment, STATE(1300), 1, sym_quantifier, - ACTIONS(3138), 2, + ACTIONS(3141), 2, aux_sym_use_clause_token1, aux_sym_quantifier_token1, - [46739] = 4, + [46755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3966), 1, + ACTIONS(3969), 1, anon_sym_SEMI, STATE(1786), 1, sym_aspect_specification, - [46752] = 3, + [46768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(3653), 1, sym_identifier, STATE(1904), 2, sym_loop_parameter_specification, sym_iterator_specification, - [46763] = 4, + [46779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(3970), 1, + ACTIONS(3973), 1, anon_sym_RPAREN, STATE(1312), 1, aux_sym_pragma_g_repeat1, - [46776] = 2, + [46792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3972), 3, + ACTIONS(3975), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [46785] = 2, + [46801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 3, + ACTIONS(3977), 3, aux_sym_terminate_alternative_token1, aux_sym_accept_statement_token1, aux_sym_delay_until_statement_token1, - [46794] = 4, + [46810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3976), 1, + ACTIONS(3979), 1, aux_sym_package_specification_token2, STATE(1614), 1, sym_aspect_specification, - [46807] = 4, + [46823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_SEMI, STATE(1557), 1, sym_aspect_specification, - [46820] = 4, + [46836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3980), 1, + ACTIONS(3983), 1, anon_sym_SEMI, STATE(1558), 1, sym_aspect_specification, - [46833] = 4, + [46849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 1, - anon_sym_COMMA, ACTIONS(3985), 1, + anon_sym_COMMA, + ACTIONS(3988), 1, anon_sym_RPAREN, STATE(1307), 1, aux_sym__index_subtype_definition_list_repeat1, - [46846] = 4, + [46862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(3990), 1, anon_sym_COMMA, - ACTIONS(3989), 1, + ACTIONS(3992), 1, anon_sym_RPAREN, STATE(1344), 1, aux_sym_global_aspect_definition_repeat1, - [46859] = 2, + [46875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3991), 3, + ACTIONS(3994), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46868] = 4, + [46884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2975), 1, anon_sym_COMMA, - ACTIONS(3993), 1, + ACTIONS(3996), 1, anon_sym_SEMI, STATE(1063), 1, aux_sym__name_list_repeat1, - [46881] = 3, + [46897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3463), 1, + ACTIONS(3466), 1, aux_sym_expression_token2, - ACTIONS(3995), 2, + ACTIONS(3998), 2, aux_sym_expression_token3, aux_sym_expression_token4, - [46892] = 4, + [46908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, - anon_sym_COMMA, ACTIONS(4000), 1, + anon_sym_COMMA, + ACTIONS(4003), 1, anon_sym_RPAREN, STATE(1312), 1, aux_sym_pragma_g_repeat1, - [46905] = 4, + [46921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4002), 1, + ACTIONS(4005), 1, anon_sym_SEMI, STATE(1779), 1, sym_aspect_specification, - [46918] = 2, + [46934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 3, + ACTIONS(4007), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46927] = 4, + [46943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4006), 1, + ACTIONS(4009), 1, anon_sym_SEMI, STATE(1751), 1, sym_aspect_specification, - [46940] = 2, + [46956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 3, + ACTIONS(4011), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [46949] = 4, + [46965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4013), 1, anon_sym_COMMA, - ACTIONS(4012), 1, + ACTIONS(4015), 1, anon_sym_RPAREN, STATE(1346), 1, aux_sym__index_subtype_definition_list_repeat1, - [46962] = 4, + [46978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, + ACTIONS(3827), 1, anon_sym_COMMA, - ACTIONS(4014), 1, + ACTIONS(4017), 1, anon_sym_RPAREN, STATE(1232), 1, aux_sym_record_component_association_list_repeat1, - [46975] = 4, + [46991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(3917), 1, anon_sym_COMMA, - ACTIONS(4016), 1, + ACTIONS(4019), 1, anon_sym_RPAREN, STATE(1343), 1, aux_sym_record_component_association_list_repeat2, - [46988] = 4, + [47004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3327), 1, aux_sym_compilation_unit_token1, - ACTIONS(4018), 1, + ACTIONS(4021), 1, anon_sym_SEMI, - ACTIONS(4020), 1, + ACTIONS(4023), 1, aux_sym_with_clause_token1, - [47001] = 4, + [47017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, + ACTIONS(3948), 1, anon_sym_PIPE, - ACTIONS(4022), 1, + ACTIONS(4025), 1, anon_sym_EQ_GT, STATE(1231), 1, aux_sym_discrete_choice_list_repeat1, - [47014] = 4, + [47030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4024), 1, + ACTIONS(4027), 1, anon_sym_SEMI, STATE(1618), 1, sym_aspect_specification, - [47027] = 4, + [47043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 1, + ACTIONS(4029), 1, anon_sym_COMMA, - ACTIONS(4028), 1, + ACTIONS(4031), 1, anon_sym_RBRACK, STATE(1061), 1, aux_sym_positional_array_aggregate_repeat1, - [47040] = 2, + [47056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 3, + ACTIONS(4033), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47049] = 2, + [47065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 3, + ACTIONS(4035), 3, sym_identifier, sym_string_literal, sym_character_literal, - [47058] = 2, + [47074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 3, + ACTIONS(4037), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47067] = 4, + [47083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4036), 1, + ACTIONS(4039), 1, anon_sym_SEMI, STATE(1770), 1, sym_aspect_specification, - [47080] = 2, + [47096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 3, + ACTIONS(4041), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [47089] = 2, + [47105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 3, + ACTIONS(4043), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [47098] = 4, + [47114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3968), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(4042), 1, + ACTIONS(4045), 1, anon_sym_RPAREN, STATE(1301), 1, aux_sym_pragma_g_repeat1, - [47111] = 4, + [47127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4044), 1, + ACTIONS(4047), 1, anon_sym_SEMI, STATE(1613), 1, sym_aspect_specification, - [47124] = 2, + [47140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 3, + ACTIONS(4049), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47133] = 4, + [47149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4048), 1, + ACTIONS(4051), 1, anon_sym_SEMI, STATE(1757), 1, sym_aspect_specification, - [47146] = 4, + [47162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(3210), 1, + ACTIONS(3213), 1, anon_sym_SEMI, STATE(1653), 1, sym_aspect_specification, - [47159] = 2, + [47175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4050), 3, + ACTIONS(4053), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [47168] = 2, + [47184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 3, + ACTIONS(3499), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [47177] = 4, + [47193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4052), 1, + ACTIONS(4055), 1, anon_sym_SEMI, STATE(1657), 1, sym_aspect_specification, - [47190] = 4, + [47206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4054), 1, + ACTIONS(4057), 1, anon_sym_SEMI, - ACTIONS(4056), 1, + ACTIONS(4059), 1, aux_sym_package_specification_token2, - ACTIONS(4058), 1, + ACTIONS(4061), 1, aux_sym_expression_token3, - [47203] = 4, + [47219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4060), 1, + ACTIONS(4063), 1, anon_sym_SEMI, STATE(1595), 1, sym_aspect_specification, - [47216] = 4, + [47232] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1781), 1, @@ -53723,3375 +53735,3375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(1290), 1, aux_sym_discriminant_association_repeat1, - [47229] = 2, + [47245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 3, + ACTIONS(4065), 3, aux_sym_package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [47238] = 4, + [47254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2219), 1, + ACTIONS(2212), 1, aux_sym_with_clause_token2, - ACTIONS(4064), 1, + ACTIONS(4067), 1, anon_sym_SEMI, STATE(1594), 1, sym_aspect_specification, - [47251] = 4, + [47267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 1, - anon_sym_COMMA, ACTIONS(4069), 1, + anon_sym_COMMA, + ACTIONS(4072), 1, anon_sym_RPAREN, STATE(1343), 1, aux_sym_record_component_association_list_repeat2, - [47264] = 4, + [47280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, + ACTIONS(3990), 1, anon_sym_COMMA, - ACTIONS(4071), 1, + ACTIONS(4074), 1, anon_sym_RPAREN, STATE(1193), 1, aux_sym_global_aspect_definition_repeat1, - [47277] = 4, + [47293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(4073), 1, + ACTIONS(4076), 1, anon_sym_RPAREN, STATE(1295), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [47290] = 4, + [47306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4013), 1, anon_sym_COMMA, - ACTIONS(4075), 1, + ACTIONS(4078), 1, anon_sym_RPAREN, STATE(1307), 1, aux_sym__index_subtype_definition_list_repeat1, - [47303] = 2, + [47319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 3, + ACTIONS(4080), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [47312] = 2, + [47328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 3, + ACTIONS(4080), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [47321] = 3, + [47337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4079), 1, + ACTIONS(4082), 1, aux_sym_with_clause_token2, STATE(1366), 1, sym_record_extension_part, - [47331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47339] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, [47347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 2, - anon_sym_COMMA, + ACTIONS(4084), 2, anon_sym_RPAREN, + anon_sym_SEMI, [47355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4083), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2272), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, [47363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 2, + ACTIONS(4072), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47371] = 3, + [47371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(4086), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47379] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, anon_sym_SEMI, - ACTIONS(3491), 1, + ACTIONS(3494), 1, aux_sym_package_specification_token2, - [47381] = 3, + [47397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(4090), 1, sym_identifier, - ACTIONS(4089), 1, + ACTIONS(4092), 1, anon_sym_SEMI, - [47391] = 3, + [47407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3583), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3585), 1, anon_sym_RPAREN, - [47401] = 3, + [47417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(4094), 1, anon_sym_SEMI, - ACTIONS(4093), 1, + ACTIONS(4096), 1, aux_sym_accept_statement_token2, - [47411] = 2, + [47427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 2, + ACTIONS(4098), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47419] = 3, + [47435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(4099), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - [47429] = 2, + [47445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 2, + ACTIONS(4104), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47437] = 3, + [47453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(4106), 1, aux_sym_with_clause_token2, STATE(1484), 1, sym_record_extension_part, - [47447] = 3, + [47463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4108), 1, sym_identifier, - ACTIONS(4107), 1, + ACTIONS(4110), 1, anon_sym_SEMI, - [47457] = 3, + [47473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 1, + ACTIONS(4112), 1, sym_identifier, - ACTIONS(4111), 1, + ACTIONS(4114), 1, anon_sym_SEMI, - [47467] = 2, + [47483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 2, + ACTIONS(4116), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47475] = 2, + [47491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4115), 2, + ACTIONS(4118), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47483] = 3, + [47499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3324), 1, + ACTIONS(3327), 1, aux_sym_compilation_unit_token1, - ACTIONS(3467), 1, + ACTIONS(3470), 1, aux_sym_allocator_token1, - [47493] = 2, + [47509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 2, + ACTIONS(4120), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47501] = 3, + [47517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4119), 1, + ACTIONS(4122), 1, aux_sym_package_specification_token3, - ACTIONS(4121), 1, + ACTIONS(4124), 1, aux_sym_exception_declaration_token1, - [47511] = 2, + [47527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 2, + ACTIONS(4120), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47519] = 2, + [47535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 2, + ACTIONS(3524), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47527] = 3, + [47543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4126), 1, aux_sym_package_specification_token3, - ACTIONS(4125), 1, + ACTIONS(4128), 1, aux_sym_subprogram_body_token1, - [47537] = 3, + [47553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(4130), 1, anon_sym_COMMA, STATE(1061), 1, aux_sym_positional_array_aggregate_repeat1, - [47547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 2, - anon_sym_COMMA, - anon_sym_RPAREN, [47563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4132), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, [47571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [47579] = 3, + ACTIONS(4003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4135), 1, + ACTIONS(4134), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 2, anon_sym_SEMI, - ACTIONS(4137), 1, + aux_sym_with_clause_token2, + [47595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4138), 1, + anon_sym_SEMI, + ACTIONS(4140), 1, aux_sym_accept_statement_token2, - [47589] = 2, + [47605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4142), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47597] = 2, + [47613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 2, + ACTIONS(3988), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47605] = 3, + [47621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4144), 1, sym_identifier, - ACTIONS(4143), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - [47615] = 2, + [47631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 2, + ACTIONS(4148), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47623] = 3, + [47639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4150), 1, anon_sym_SEMI, - ACTIONS(4149), 1, + ACTIONS(4152), 1, aux_sym_package_specification_token2, - [47633] = 3, + [47649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 1, + ACTIONS(4154), 1, aux_sym_with_clause_token2, - ACTIONS(4153), 1, + ACTIONS(4156), 1, aux_sym_expression_token1, - [47643] = 2, + [47659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(4158), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47651] = 3, + [47667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(4160), 1, aux_sym_with_clause_token2, STATE(1366), 1, sym_record_extension_part, - [47661] = 3, + [47677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 1, + ACTIONS(4162), 1, sym_identifier, STATE(238), 1, sym_reduction_attribute_designator, - [47671] = 3, + [47687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2659), 1, + ACTIONS(2662), 1, anon_sym_LPAREN, STATE(1457), 1, sym_formal_part, - [47681] = 2, + [47697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 2, + ACTIONS(4164), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47689] = 3, + [47705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4166), 1, aux_sym_iterator_filter_token1, STATE(1226), 1, sym_case_expression_alternative, - [47699] = 2, + [47715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4165), 2, + ACTIONS(4168), 2, sym_identifier, sym_string_literal, - [47707] = 2, + [47723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 2, + ACTIONS(4170), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47715] = 3, + [47731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4169), 1, + ACTIONS(4172), 1, sym_identifier, - ACTIONS(4171), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - [47725] = 2, + [47741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 2, + ACTIONS(4176), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47733] = 3, + [47749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(4178), 1, aux_sym_compilation_unit_token1, - ACTIONS(4177), 1, + ACTIONS(4180), 1, aux_sym_with_clause_token1, - [47743] = 3, + [47759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3038), 1, aux_sym_iterator_filter_token1, STATE(1803), 1, sym_entry_barrier, - [47753] = 2, + [47769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 2, + ACTIONS(3921), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47761] = 3, + [47777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4182), 1, sym_identifier, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - [47771] = 2, + [47787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 2, + ACTIONS(3575), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47779] = 3, + [47795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3060), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3437), 1, + ACTIONS(3440), 1, aux_sym_allocator_token1, - [47789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3819), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, [47805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4185), 2, + ACTIONS(4186), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_accept_statement_token2, [47813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3822), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, [47821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4188), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, [47829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 2, + ACTIONS(4190), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4192), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47837] = 3, + [47853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4191), 1, + ACTIONS(4194), 1, sym_identifier, - ACTIONS(4193), 1, - anon_sym_SEMI, - [47847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4195), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3427), 2, - anon_sym_RPAREN, + ACTIONS(4196), 1, anon_sym_SEMI, [47863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(4198), 2, + anon_sym_RPAREN, + anon_sym_SEMI, [47871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 2, + ACTIONS(3430), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47879] = 3, + [47879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4199), 1, - anon_sym_SEMI, - ACTIONS(4201), 1, - aux_sym_accept_statement_token2, - [47889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - sym_identifier, - ACTIONS(4205), 1, - anon_sym_SEMI, - [47899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3887), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [47907] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 2, + ACTIONS(3159), 2, anon_sym_EQ_GT, anon_sym_PIPE, + [47887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4200), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [47895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 1, + anon_sym_SEMI, + ACTIONS(4204), 1, + aux_sym_accept_statement_token2, + [47905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4208), 1, + anon_sym_SEMI, [47915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 2, + ACTIONS(3890), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [47923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [47931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4212), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47923] = 3, + [47939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4214), 1, aux_sym_expression_token3, - ACTIONS(4213), 1, + ACTIONS(4216), 1, aux_sym_expression_token4, - [47933] = 3, + [47949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(4218), 1, sym_identifier, - ACTIONS(4217), 1, + ACTIONS(4220), 1, anon_sym_SEMI, - [47943] = 3, + [47959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3159), 1, anon_sym_PIPE, - ACTIONS(4219), 1, - anon_sym_EQ_GT, - [47953] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4222), 1, - sym_identifier, - ACTIONS(4224), 1, - anon_sym_SEMI, - [47963] = 3, + anon_sym_EQ_GT, + [47969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4225), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(4227), 1, anon_sym_SEMI, - [47973] = 2, + [47979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 2, + ACTIONS(4229), 1, + sym_identifier, + ACTIONS(4231), 1, + anon_sym_SEMI, + [47989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47981] = 3, + [47997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 1, + ACTIONS(4235), 1, sym_identifier, - ACTIONS(4234), 1, + ACTIONS(4237), 1, anon_sym_SEMI, - [47991] = 2, + [48007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 2, + ACTIONS(4239), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47999] = 3, + [48015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(2769), 1, aux_sym_result_profile_token1, - STATE(835), 1, + STATE(830), 1, sym_result_profile, - [48009] = 2, + [48025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4241), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48017] = 3, + [48033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 1, + ACTIONS(3879), 1, anon_sym_COMMA, - ACTIONS(4240), 1, + ACTIONS(4243), 1, anon_sym_RBRACK, - [48027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4243), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 2, - anon_sym_RPAREN, - anon_sym_SEMI, [48043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 2, + ACTIONS(4246), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4248), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48051] = 3, + [48059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4249), 1, - sym_identifier, - ACTIONS(4251), 1, + ACTIONS(4250), 2, + anon_sym_RPAREN, anon_sym_SEMI, - [48061] = 3, + [48067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4252), 1, sym_identifier, - ACTIONS(4255), 1, + ACTIONS(4254), 1, anon_sym_SEMI, - [48071] = 3, + [48077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4256), 1, sym_identifier, - ACTIONS(4259), 1, + ACTIONS(4258), 1, anon_sym_SEMI, - [48081] = 2, + [48087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4260), 1, + sym_identifier, + ACTIONS(4262), 1, + anon_sym_SEMI, + [48097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4264), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [48089] = 3, + [48105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, + ACTIONS(4266), 1, anon_sym_SEMI, - ACTIONS(4265), 1, + ACTIONS(4268), 1, aux_sym_package_specification_token2, - [48099] = 3, + [48115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4267), 1, + ACTIONS(4270), 1, anon_sym_SEMI, - ACTIONS(4269), 1, + ACTIONS(4272), 1, aux_sym_package_specification_token2, - [48109] = 2, + [48125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 2, + ACTIONS(4275), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48117] = 3, + [48133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, + ACTIONS(4277), 1, aux_sym_with_clause_token2, - ACTIONS(4276), 1, + ACTIONS(4279), 1, aux_sym_expression_token1, - [48127] = 3, + [48143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - ACTIONS(4280), 1, + ACTIONS(4283), 1, aux_sym_package_specification_token2, - [48137] = 3, + [48153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 1, + ACTIONS(4285), 1, sym_identifier, - ACTIONS(4284), 1, + ACTIONS(4287), 1, anon_sym_SEMI, - [48147] = 2, + [48163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 2, + ACTIONS(3811), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [48155] = 2, + [48171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 2, + ACTIONS(4289), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48163] = 3, + [48179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, + ACTIONS(4291), 1, aux_sym_iterated_element_association_token2, - ACTIONS(4290), 1, + ACTIONS(4293), 1, anon_sym_EQ_GT, - [48173] = 2, + [48189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 2, + ACTIONS(3780), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48181] = 3, + [48197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4295), 1, sym_identifier, - ACTIONS(4294), 1, + ACTIONS(4297), 1, anon_sym_SEMI, - [48191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4296), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48199] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4298), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, [48207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48215] = 3, + ACTIONS(4299), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4301), 2, + anon_sym_SEMI, + aux_sym_with_clause_token2, + [48223] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4303), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4304), 1, + ACTIONS(4307), 1, aux_sym_access_to_subprogram_definition_token3, - [48225] = 3, + [48241] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, aux_sym_iterated_element_association_token1, STATE(1829), 1, sym_iterated_element_association, - [48235] = 3, + [48251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 1, + ACTIONS(4309), 1, sym_identifier, - ACTIONS(4308), 1, + ACTIONS(4311), 1, anon_sym_SEMI, - [48245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [48253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, [48261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3759), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, [48269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 2, + ACTIONS(4313), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48277] = 3, + [48277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(4316), 1, + ACTIONS(3749), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 2, anon_sym_SEMI, - [48287] = 2, + aux_sym_with_clause_token2, + [48293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 2, + ACTIONS(4317), 1, + sym_identifier, + ACTIONS(4319), 1, + anon_sym_SEMI, + [48303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4321), 2, aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [48295] = 3, + [48311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(3060), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3096), 1, + ACTIONS(3099), 1, aux_sym_allocator_token1, - [48305] = 3, + [48321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, + ACTIONS(4323), 1, sym_identifier, - ACTIONS(4322), 1, + ACTIONS(4325), 1, anon_sym_SEMI, - [48315] = 3, + [48331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(4160), 1, aux_sym_with_clause_token2, STATE(1488), 1, sym_record_extension_part, - [48325] = 2, + [48341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 2, + ACTIONS(4327), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48333] = 2, + [48349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 2, + ACTIONS(4329), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48341] = 3, + [48357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(3038), 1, aux_sym_iterator_filter_token1, STATE(1677), 1, sym_entry_barrier, - [48351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 2, - aux_sym_iterator_filter_token1, - aux_sym_with_clause_token2, - [48359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, [48367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 2, + ACTIONS(4331), 2, + aux_sym_iterator_filter_token1, + aux_sym_with_clause_token2, + [48375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [48383] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3727), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48375] = 3, + [48391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4335), 1, sym_identifier, - ACTIONS(4334), 1, + ACTIONS(4337), 1, anon_sym_SEMI, - [48385] = 3, + [48401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4339), 1, sym_identifier, - ACTIONS(4338), 1, + ACTIONS(4341), 1, anon_sym_SEMI, - [48395] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3381), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 2, - anon_sym_COMMA, - anon_sym_RPAREN, [48411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(3384), 2, anon_sym_RPAREN, anon_sym_SEMI, - [48419] = 3, + [48419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, + ACTIONS(4343), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3382), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4345), 1, anon_sym_LPAREN, - ACTIONS(4344), 1, + ACTIONS(4347), 1, anon_sym_SEMI, - [48429] = 2, + [48445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 2, + ACTIONS(4349), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48437] = 3, + [48453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(4351), 1, anon_sym_COMMA, - ACTIONS(4350), 1, + ACTIONS(4353), 1, anon_sym_RPAREN, - [48447] = 2, + [48463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3703), 2, + ACTIONS(3706), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48455] = 3, + [48471] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(267), 1, aux_sym_package_specification_token3, ACTIONS(269), 1, aux_sym_subprogram_body_token1, - [48465] = 3, + [48481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 1, + ACTIONS(4356), 1, sym_identifier, - ACTIONS(4355), 1, + ACTIONS(4358), 1, anon_sym_SEMI, - [48475] = 2, + [48491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 2, + ACTIONS(4360), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48483] = 3, + [48499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3712), 1, sym_identifier, - ACTIONS(3711), 1, + ACTIONS(3714), 1, aux_sym_use_clause_token2, - [48493] = 2, + [48509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 2, + ACTIONS(4362), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48501] = 3, + [48517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4166), 1, aux_sym_iterator_filter_token1, STATE(1405), 1, sym_case_expression_alternative, - [48511] = 2, + [48527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 2, + ACTIONS(3742), 2, anon_sym_COMMA, anon_sym_COLON, - [48519] = 3, + [48535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3684), 1, sym_identifier, - ACTIONS(3683), 1, + ACTIONS(3686), 1, aux_sym_use_clause_token2, - [48529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4361), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, - [48537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_RPAREN, [48545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3679), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 1, + ACTIONS(4364), 2, anon_sym_SEMI, - ACTIONS(3674), 1, - aux_sym_package_specification_token2, - [48563] = 2, + aux_sym_with_clause_token2, + [48553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3682), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3300), 1, + anon_sym_SEMI, + ACTIONS(3677), 1, + aux_sym_package_specification_token2, + [48579] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4369), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48571] = 2, + [48587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 2, + ACTIONS(4371), 2, aux_sym_iterator_filter_token1, aux_sym_package_specification_token3, - [48579] = 3, + [48595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(4373), 1, aux_sym_with_clause_token2, STATE(1488), 1, sym_record_extension_part, - [48589] = 3, + [48605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 1, + ACTIONS(4375), 1, sym_identifier, - ACTIONS(4374), 1, + ACTIONS(4377), 1, anon_sym_SEMI, - [48599] = 2, + [48615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 2, + ACTIONS(4379), 2, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, - [48607] = 3, + [48623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(4381), 1, aux_sym_chunk_specification_token1, - ACTIONS(4380), 1, + ACTIONS(4383), 1, aux_sym_iterator_specification_token1, - [48617] = 3, + [48633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3621), 1, aux_sym_compilation_unit_token1, - ACTIONS(4382), 1, + ACTIONS(4385), 1, aux_sym_with_clause_token1, - [48627] = 3, + [48643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4387), 1, anon_sym_SEMI, - ACTIONS(4386), 1, + ACTIONS(4389), 1, aux_sym_package_specification_token2, - [48637] = 3, + [48653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4391), 1, sym_identifier, - ACTIONS(4390), 1, + ACTIONS(4393), 1, anon_sym_SEMI, - [48647] = 3, + [48663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4395), 1, aux_sym_with_clause_token2, - ACTIONS(4394), 1, + ACTIONS(4397), 1, aux_sym_expression_token1, - [48657] = 2, + [48673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 2, + ACTIONS(4399), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [48665] = 3, + [48681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, + ACTIONS(4401), 1, aux_sym_compilation_unit_token1, - ACTIONS(4400), 1, + ACTIONS(4403), 1, aux_sym_with_clause_token2, - [48675] = 3, + [48691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4405), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4404), 1, + ACTIONS(4407), 1, aux_sym_access_to_subprogram_definition_token3, - [48685] = 3, + [48701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - aux_sym_access_to_subprogram_definition_token2, ACTIONS(2284), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(2286), 1, aux_sym_access_to_subprogram_definition_token3, - [48695] = 3, + [48711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(4160), 1, aux_sym_with_clause_token2, STATE(1484), 1, sym_record_extension_part, - [48705] = 3, + [48721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4409), 1, sym_identifier, - ACTIONS(4408), 1, + ACTIONS(4411), 1, anon_sym_SEMI, - [48715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4410), 2, - aux_sym_iterator_filter_token1, - aux_sym_package_specification_token3, - [48723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 2, - anon_sym_SEMI, - aux_sym_with_clause_token2, [48731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - aux_sym_record_component_association_list_token1, - [48738] = 2, + ACTIONS(4413), 2, + aux_sym_iterator_filter_token1, + aux_sym_package_specification_token3, + [48739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - aux_sym_subunit_token1, - [48745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, + ACTIONS(4415), 2, anon_sym_SEMI, - [48752] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 1, - anon_sym_SEMI, - [48759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4420), 1, - anon_sym_SEMI, - [48766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4422), 1, - anon_sym_RBRACK, - [48773] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_SEMI, - [48780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_SEMI, - [48787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_SEMI, - [48794] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_SEMI, - [48801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 1, - aux_sym_interface_type_definition_token2, - [48808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4430), 1, - aux_sym_record_component_association_list_token1, - [48815] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_RPAREN, - [48822] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, aux_sym_with_clause_token2, - [48829] = 2, + [48747] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, + aux_sym_record_component_association_list_token1, + [48754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + aux_sym_subunit_token1, + [48761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_SEMI, + [48768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4421), 1, + anon_sym_SEMI, + [48775] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_SEMI, + [48782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4425), 1, + anon_sym_RBRACK, + [48789] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_SEMI, + [48796] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + anon_sym_SEMI, + [48803] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4337), 1, + anon_sym_SEMI, + [48810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4431), 1, + anon_sym_SEMI, + [48817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 1, + aux_sym_interface_type_definition_token2, + [48824] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 1, + aux_sym_record_component_association_list_token1, + [48831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + anon_sym_RPAREN, + [48838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + aux_sym_with_clause_token2, + [48845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2173), 1, anon_sym_DOT_DOT, - [48836] = 2, + [48852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, + ACTIONS(4439), 1, anon_sym_COLON, - [48843] = 2, + [48859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(4441), 1, anon_sym_SEMI, - [48850] = 2, + [48866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 1, + ACTIONS(4443), 1, anon_sym_RPAREN, - [48857] = 2, + [48873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(4445), 1, anon_sym_EQ_GT, - [48864] = 2, + [48880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, + ACTIONS(4447), 1, aux_sym_package_specification_token3, - [48871] = 2, + [48887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4449), 1, sym_tick, - [48878] = 2, + [48894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4451), 1, anon_sym_RPAREN, - [48885] = 2, + [48901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 1, + ACTIONS(4453), 1, anon_sym_RPAREN, - [48892] = 2, + [48908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 1, + ACTIONS(4455), 1, anon_sym_SEMI, - [48899] = 2, + [48915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4457), 1, anon_sym_SEMI, - [48906] = 2, + [48922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 1, + ACTIONS(4459), 1, anon_sym_EQ_GT, - [48913] = 2, + [48929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 1, + ACTIONS(4268), 1, aux_sym_package_specification_token2, - [48920] = 2, + [48936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 1, + ACTIONS(4461), 1, anon_sym_SEMI, - [48927] = 2, + [48943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4463), 1, aux_sym_with_clause_token2, - [48934] = 2, + [48950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, + ACTIONS(4465), 1, aux_sym_package_specification_token2, - [48941] = 2, + [48957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4467), 1, anon_sym_LT_GT, - [48948] = 2, + [48964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(4469), 1, aux_sym_package_specification_token2, - [48955] = 2, + [48971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4471), 1, aux_sym_compilation_unit_token1, - [48962] = 2, + [48978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4473), 1, anon_sym_RPAREN, - [48969] = 2, + [48985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(4425), 1, anon_sym_RPAREN, - [48976] = 2, + [48992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, + ACTIONS(4475), 1, anon_sym_RPAREN, - [48983] = 2, + [48999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, + ACTIONS(4477), 1, aux_sym_compilation_unit_token1, - [48990] = 2, + [49006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4479), 1, anon_sym_SEMI, - [48997] = 2, + [49013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(207), 1, aux_sym_subprogram_body_token1, - [49004] = 2, + [49020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4481), 1, anon_sym_SEMI, - [49011] = 2, + [49027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, + ACTIONS(4483), 1, aux_sym_record_component_association_list_token1, - [49018] = 2, + [49034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4485), 1, aux_sym_compilation_unit_token1, - [49025] = 2, + [49041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 1, + ACTIONS(4487), 1, aux_sym_iterated_element_association_token2, - [49032] = 2, + [49048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(4489), 1, aux_sym_iterated_element_association_token2, - [49039] = 2, + [49055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(4491), 1, anon_sym_SEMI, - [49046] = 2, + [49062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_SEMI, - [49053] = 2, + [49069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 1, + ACTIONS(4493), 1, aux_sym_compilation_unit_token1, - [49060] = 2, + [49076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4495), 1, aux_sym_primary_null_token1, - [49067] = 2, + [49083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3841), 1, anon_sym_SEMI, - [49074] = 2, + [49090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4497), 1, aux_sym_package_specification_token3, - [49081] = 2, + [49097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4499), 1, aux_sym_subprogram_body_token1, - [49088] = 2, + [49104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(4501), 1, anon_sym_SEMI, - [49095] = 2, + [49111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, + ACTIONS(4503), 1, anon_sym_SEMI, - [49102] = 2, + [49118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4505), 1, anon_sym_SEMI, - [49109] = 2, + [49125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3875), 1, anon_sym_SEMI, - [49116] = 2, + [49132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4507), 1, anon_sym_SEMI, - [49123] = 2, + [49139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, + ACTIONS(4509), 1, anon_sym_DOT_DOT, - [49130] = 2, + [49146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4511), 1, anon_sym_LPAREN, - [49137] = 2, + [49153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, + ACTIONS(4513), 1, aux_sym_if_expression_token1, - [49144] = 2, + [49160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(3896), 1, aux_sym_package_specification_token2, - [49151] = 2, + [49167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 1, + ACTIONS(4515), 1, anon_sym_SEMI, - [49158] = 2, + [49174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(4517), 1, aux_sym_package_specification_token3, - [49165] = 2, + [49181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4519), 1, aux_sym_package_specification_token3, - [49172] = 2, + [49188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4521), 1, aux_sym_package_specification_token2, - [49179] = 2, + [49195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4523), 1, anon_sym_COLON, - [49186] = 2, + [49202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(3940), 1, anon_sym_RPAREN, - [49193] = 2, + [49209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4525), 1, anon_sym_SEMI, - [49200] = 2, + [49216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 1, + ACTIONS(4527), 1, anon_sym_SEMI, - [49207] = 2, + [49223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4529), 1, anon_sym_LPAREN, - [49214] = 2, + [49230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(4531), 1, aux_sym_asynchronous_select_token1, - [49221] = 2, + [49237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(4533), 1, aux_sym_package_specification_token3, - [49228] = 2, + [49244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4535), 1, anon_sym_RPAREN, - [49235] = 2, + [49251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, + ACTIONS(4537), 1, anon_sym_EQ_GT, - [49242] = 2, + [49258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4539), 1, anon_sym_SEMI, - [49249] = 2, + [49265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4541), 1, anon_sym_SEMI, - [49256] = 2, + [49272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 1, + ACTIONS(4543), 1, aux_sym_range_attribute_designator_token1, - [49263] = 2, + [49279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, + ACTIONS(4545), 1, anon_sym_RPAREN, - [49270] = 2, + [49286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1781), 1, anon_sym_EQ_GT, - [49277] = 2, + [49293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - [49284] = 2, + [49300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, + ACTIONS(4549), 1, aux_sym_package_specification_token3, - [49291] = 2, + [49307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(4551), 1, anon_sym_EQ_GT, - [49298] = 2, + [49314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4553), 1, sym_identifier, - [49305] = 2, + [49321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, + ACTIONS(4555), 1, sym_tick, - [49312] = 2, + [49328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4557), 1, anon_sym_SEMI, - [49319] = 2, + [49335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4019), 1, anon_sym_RPAREN, - [49326] = 2, + [49342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4559), 1, sym_identifier, - [49333] = 2, + [49349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4561), 1, aux_sym_loop_statement_token1, - [49340] = 2, + [49356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4563), 1, anon_sym_SEMI, - [49347] = 2, + [49363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, + ACTIONS(4565), 1, anon_sym_SEMI, - [49354] = 2, + [49370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, + ACTIONS(4567), 1, anon_sym_SEMI, - [49361] = 2, + [49377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4569), 1, anon_sym_SEMI, - [49368] = 2, + [49384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(4571), 1, anon_sym_RPAREN, - [49375] = 2, + [49391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(4573), 1, anon_sym_SEMI, - [49382] = 2, + [49398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4575), 1, sym_identifier, - [49389] = 2, + [49405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4577), 1, anon_sym_SEMI, - [49396] = 2, + [49412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4579), 1, aux_sym_asynchronous_select_token2, - [49403] = 2, + [49419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, + ACTIONS(4581), 1, anon_sym_COLON, - [49410] = 2, + [49426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(4583), 1, anon_sym_SEMI, - [49417] = 2, + [49433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4585), 1, aux_sym_package_specification_token2, - [49424] = 2, + [49440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, + ACTIONS(4587), 1, anon_sym_SEMI, - [49431] = 2, + [49447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4589), 1, aux_sym_expression_token2, - [49438] = 2, + [49454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 1, + ACTIONS(4591), 1, aux_sym_package_specification_token3, - [49445] = 2, + [49461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(4593), 1, aux_sym_attribute_designator_token2, - [49452] = 2, + [49468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4595), 1, anon_sym_SEMI, - [49459] = 2, + [49475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(4597), 1, aux_sym_package_specification_token3, - [49466] = 2, + [49482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, + ACTIONS(4599), 1, anon_sym_SEMI, - [49473] = 2, + [49489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3121), 1, aux_sym_entry_declaration_token1, - [49480] = 2, + [49496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - [49487] = 2, + [49503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, + ACTIONS(4603), 1, aux_sym_package_specification_token2, - [49494] = 2, + [49510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4605), 1, anon_sym_SEMI, - [49501] = 2, + [49517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4607), 1, aux_sym_asynchronous_select_token1, - [49508] = 2, + [49524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(4609), 1, anon_sym_RPAREN, - [49515] = 2, + [49531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(4611), 1, anon_sym_SEMI, - [49522] = 2, + [49538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 1, + ACTIONS(4613), 1, aux_sym_iterator_specification_token1, - [49529] = 2, + [49545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(4615), 1, aux_sym_iterator_specification_token1, - [49536] = 2, + [49552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4617), 1, aux_sym_asynchronous_select_token2, - [49543] = 2, + [49559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, + ACTIONS(4619), 1, aux_sym_package_specification_token2, - [49550] = 2, + [49566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4621), 1, anon_sym_LT_GT, - [49557] = 2, + [49573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 1, + ACTIONS(4063), 1, anon_sym_SEMI, - [49564] = 2, + [49580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(4623), 1, anon_sym_EQ_GT, - [49571] = 2, + [49587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, + ACTIONS(4625), 1, anon_sym_SEMI, - [49578] = 2, + [49594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(4627), 1, anon_sym_SEMI, - [49585] = 2, + [49601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, + ACTIONS(4629), 1, aux_sym_iterated_element_association_token2, - [49592] = 2, + [49608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 1, + ACTIONS(4631), 1, aux_sym_package_specification_token3, - [49599] = 2, + [49615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, + ACTIONS(4045), 1, anon_sym_RPAREN, - [49606] = 2, + [49622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - [49613] = 2, + [49629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(4635), 1, anon_sym_EQ_GT, - [49620] = 2, + [49636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4637), 1, aux_sym_package_specification_token3, - [49627] = 2, + [49643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4639), 1, sym_identifier, - [49634] = 2, + [49650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(4641), 1, anon_sym_SEMI, - [49641] = 2, + [49657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4643), 1, aux_sym_asynchronous_select_token1, - [49648] = 2, + [49664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(4645), 1, anon_sym_SEMI, - [49655] = 2, + [49671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4647), 1, anon_sym_SEMI, - [49662] = 2, + [49678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(4649), 1, aux_sym_asynchronous_select_token1, - [49669] = 2, + [49685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4651), 1, anon_sym_SEMI, - [49676] = 2, + [49692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4653), 1, anon_sym_SEMI, - [49683] = 2, + [49699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4655), 1, aux_sym_package_specification_token3, - [49690] = 2, + [49706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(4657), 1, aux_sym_with_clause_token2, - [49697] = 2, + [49713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4659), 1, aux_sym_if_expression_token1, - [49704] = 2, + [49720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(4661), 1, aux_sym_expression_token2, - [49711] = 2, + [49727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 1, + ACTIONS(3294), 1, anon_sym_SEMI, - [49718] = 2, + [49734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, + ACTIONS(4005), 1, anon_sym_SEMI, - [49725] = 2, + [49741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4663), 1, aux_sym_package_specification_token3, - [49732] = 2, + [49748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4665), 1, anon_sym_SEMI, - [49739] = 2, + [49755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4667), 1, anon_sym_SEMI, - [49746] = 2, + [49762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, + ACTIONS(4669), 1, aux_sym_package_specification_token3, - [49753] = 2, + [49769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_SEMI, - [49760] = 2, + [49776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3980), 1, + ACTIONS(3983), 1, anon_sym_SEMI, - [49767] = 2, + [49783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3967), 1, anon_sym_SEMI, - [49774] = 2, + [49790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(4671), 1, aux_sym_compilation_unit_token1, - [49781] = 2, + [49797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4673), 1, aux_sym_package_specification_token3, - [49788] = 2, + [49804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, + ACTIONS(4675), 1, anon_sym_SEMI, - [49795] = 2, + [49811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4677), 1, aux_sym_with_clause_token2, - [49802] = 2, + [49818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4679), 1, aux_sym_package_specification_token3, - [49809] = 2, + [49825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4681), 1, anon_sym_SEMI, - [49816] = 2, + [49832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4683), 1, aux_sym_chunk_specification_token1, - [49823] = 2, + [49839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(4685), 1, aux_sym_asynchronous_select_token1, - [49830] = 2, + [49846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4687), 1, anon_sym_SEMI, - [49837] = 2, + [49853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3545), 1, anon_sym_SEMI, - [49844] = 2, + [49860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(4689), 1, anon_sym_RBRACK, - [49851] = 2, + [49867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4691), 1, aux_sym_iterated_element_association_token2, - [49858] = 2, + [49874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - [49865] = 2, + [49881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4695), 1, anon_sym_SEMI, - [49872] = 2, + [49888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4697), 1, anon_sym_SEMI, - [49879] = 2, + [49895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4699), 1, anon_sym_SEMI, - [49886] = 2, + [49902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4701), 1, aux_sym_iterated_element_association_token2, - [49893] = 2, + [49909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4703), 1, aux_sym_with_clause_token2, - [49900] = 2, + [49916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4705), 1, anon_sym_EQ_GT, - [49907] = 2, + [49923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4707), 1, sym_identifier, - [49914] = 2, + [49930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, + ACTIONS(4709), 1, anon_sym_RPAREN, - [49921] = 2, + [49937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4711), 1, aux_sym_package_specification_token2, - [49928] = 2, + [49944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, + ACTIONS(4713), 1, aux_sym_package_specification_token2, - [49935] = 2, + [49951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(4178), 1, aux_sym_compilation_unit_token1, - [49942] = 2, + [49958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, + ACTIONS(4715), 1, aux_sym_allocator_token1, - [49949] = 2, + [49965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(4689), 1, anon_sym_RPAREN, - [49956] = 2, + [49972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(4717), 1, anon_sym_SEMI, - [49963] = 2, + [49979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3541), 1, aux_sym_package_specification_token3, - [49970] = 2, + [49986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4719), 1, anon_sym_RPAREN, - [49977] = 2, + [49993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4721), 1, anon_sym_SEMI, - [49984] = 2, + [50000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4723), 1, anon_sym_RPAREN, - [49991] = 2, + [50007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4725), 1, anon_sym_SEMI, - [49998] = 2, + [50014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 1, + ACTIONS(3915), 1, anon_sym_SEMI, - [50005] = 2, + [50021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(4727), 1, anon_sym_RPAREN, - [50012] = 2, + [50028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4729), 1, anon_sym_EQ_GT, - [50019] = 2, + [50035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(4731), 1, aux_sym_package_specification_token3, - [50026] = 2, + [50042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(4733), 1, anon_sym_SEMI, - [50033] = 2, + [50049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4735), 1, anon_sym_RPAREN, - [50040] = 2, + [50056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4734), 1, + ACTIONS(4737), 1, aux_sym_expression_token2, - [50047] = 2, + [50063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, + ACTIONS(3165), 1, anon_sym_RPAREN, - [50054] = 2, + [50070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - [50061] = 2, + [50077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4741), 1, anon_sym_SEMI, - [50068] = 2, + [50084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 1, + ACTIONS(4743), 1, aux_sym_subprogram_body_token1, - [50075] = 2, + [50091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(4745), 1, anon_sym_RPAREN, - [50082] = 2, + [50098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(4745), 1, anon_sym_RBRACK, - [50089] = 2, + [50105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, + ACTIONS(4747), 1, aux_sym_package_specification_token3, - [50096] = 2, + [50112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4749), 1, anon_sym_SEMI, - [50103] = 2, + [50119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(4751), 1, anon_sym_SEMI, - [50110] = 2, + [50126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(4753), 1, anon_sym_SEMI, - [50117] = 2, + [50133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(4755), 1, anon_sym_SEMI, - [50124] = 2, + [50140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4757), 1, aux_sym_with_clause_token2, - [50131] = 2, + [50147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(4759), 1, anon_sym_SEMI, - [50138] = 2, + [50154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, + ACTIONS(4237), 1, anon_sym_SEMI, - [50145] = 2, + [50161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(4761), 1, anon_sym_SEMI, - [50152] = 2, + [50168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(4763), 1, anon_sym_SEMI, - [50159] = 2, + [50175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4765), 1, aux_sym_package_specification_token3, - [50166] = 2, + [50182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, + ACTIONS(4767), 1, aux_sym_package_specification_token3, - [50173] = 2, + [50189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(4769), 1, anon_sym_SEMI, - [50180] = 2, + [50196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4768), 1, + ACTIONS(4771), 1, anon_sym_SEMI, - [50187] = 2, + [50203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4773), 1, aux_sym_with_clause_token2, - [50194] = 2, + [50210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(4775), 1, anon_sym_SEMI, - [50201] = 2, + [50217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(4777), 1, aux_sym_compilation_unit_token1, - [50208] = 2, + [50224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4779), 1, anon_sym_SEMI, - [50215] = 2, + [50231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(4781), 1, anon_sym_SEMI, - [50222] = 2, + [50238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, + ACTIONS(4783), 1, aux_sym_with_clause_token2, - [50229] = 2, + [50245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(445), 1, aux_sym_allocator_token1, - [50236] = 2, + [50252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4785), 1, anon_sym_SEMI, - [50243] = 2, + [50259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 1, + ACTIONS(3245), 1, anon_sym_SEMI, - [50250] = 2, + [50266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, + ACTIONS(4787), 1, anon_sym_EQ_GT, - [50257] = 2, + [50273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4789), 1, anon_sym_RBRACK, - [50264] = 2, + [50280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(4791), 1, aux_sym_package_specification_token2, - [50271] = 2, + [50287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3818), 1, anon_sym_SEMI, - [50278] = 2, + [50294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(4793), 1, anon_sym_EQ_GT, - [50285] = 2, + [50301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, + ACTIONS(4795), 1, aux_sym_loop_statement_token1, - [50292] = 2, + [50308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(4797), 1, aux_sym_package_specification_token3, - [50299] = 2, + [50315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4789), 1, anon_sym_RPAREN, - [50306] = 2, + [50322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4799), 1, anon_sym_SEMI, - [50313] = 2, + [50329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4801), 1, anon_sym_SEMI, - [50320] = 2, + [50336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - [50327] = 2, + [50343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4805), 1, aux_sym_allocator_token1, - [50334] = 2, + [50350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(4807), 1, aux_sym_if_expression_token1, - [50341] = 2, + [50357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4809), 1, anon_sym_SEMI, - [50348] = 2, + [50364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, + ACTIONS(4811), 1, anon_sym_SEMI, - [50355] = 2, + [50371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(4813), 1, anon_sym_SEMI, - [50362] = 2, + [50378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4815), 1, anon_sym_RPAREN, - [50369] = 2, + [50385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(4817), 1, aux_sym_package_specification_token3, - [50376] = 2, + [50392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(4819), 1, aux_sym_package_specification_token2, - [50383] = 2, + [50399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(325), 1, aux_sym_subprogram_body_token1, - [50390] = 2, + [50406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 1, + ACTIONS(3816), 1, anon_sym_SEMI, - [50397] = 2, + [50413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, + ACTIONS(3807), 1, anon_sym_SEMI, - [50404] = 2, + [50420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(4821), 1, anon_sym_SEMI, - [50411] = 2, + [50427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(4823), 1, aux_sym_package_specification_token3, - [50418] = 2, + [50434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4825), 1, anon_sym_SEMI, - [50425] = 2, + [50441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(4827), 1, anon_sym_SEMI, - [50432] = 2, + [50448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(4829), 1, aux_sym_at_clause_token1, - [50439] = 2, + [50455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4831), 1, sym_tick, - [50446] = 2, + [50462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4833), 1, anon_sym_SEMI, - [50453] = 2, + [50469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4832), 1, + ACTIONS(4835), 1, aux_sym__aspect_mark_token1, - [50460] = 2, + [50476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - [50467] = 2, + [50483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4837), 1, anon_sym_SEMI, - [50474] = 2, + [50490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 1, + ACTIONS(4839), 1, anon_sym_RBRACK, - [50481] = 2, + [50497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4841), 1, anon_sym_EQ_GT, - [50488] = 2, + [50504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, + ACTIONS(4843), 1, anon_sym_SEMI, - [50495] = 2, + [50511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, + ACTIONS(4845), 1, anon_sym_SEMI, - [50502] = 2, + [50518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(4847), 1, anon_sym_DOT_DOT, - [50509] = 2, + [50525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, + ACTIONS(4311), 1, anon_sym_SEMI, - [50516] = 2, + [50532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, + ACTIONS(4849), 1, aux_sym_object_renaming_declaration_token1, - [50523] = 2, + [50539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4851), 1, aux_sym_package_body_token1, - [50530] = 2, + [50546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 1, + ACTIONS(4853), 1, aux_sym_case_expression_token1, - [50537] = 2, + [50553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4855), 1, aux_sym_object_renaming_declaration_token1, - [50544] = 2, + [50560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4854), 1, + ACTIONS(4857), 1, aux_sym_with_clause_token2, - [50551] = 2, + [50567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(4859), 1, aux_sym_primary_null_token1, - [50558] = 2, + [50574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(4861), 1, aux_sym_attribute_designator_token4, - [50565] = 2, + [50581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4860), 1, + ACTIONS(4863), 1, aux_sym_with_clause_token2, - [50572] = 2, + [50588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4355), 1, + ACTIONS(4358), 1, anon_sym_SEMI, - [50579] = 2, + [50595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(4865), 1, anon_sym_SEMI, - [50586] = 2, + [50602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(257), 1, aux_sym_private_type_declaration_token1, - [50593] = 2, + [50609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3300), 1, anon_sym_SEMI, - [50600] = 2, + [50616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3677), 1, aux_sym_package_specification_token2, - [50607] = 2, + [50623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, + ACTIONS(4867), 1, anon_sym_SEMI, - [50614] = 2, + [50630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4866), 1, + ACTIONS(4869), 1, anon_sym_EQ_GT, - [50621] = 2, + [50637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(4871), 1, aux_sym_case_expression_token1, - [50628] = 2, + [50644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4870), 1, + ACTIONS(4873), 1, sym_identifier, - [50635] = 2, + [50651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4875), 1, sym_identifier, - [50642] = 2, + [50658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - [50649] = 2, + [50665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(4879), 1, anon_sym_SEMI, - [50656] = 2, + [50672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4878), 1, + ACTIONS(4881), 1, aux_sym_allocator_token1, - [50663] = 2, + [50679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 1, + ACTIONS(4883), 1, aux_sym_primary_null_token1, - [50670] = 2, + [50686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3621), 1, aux_sym_compilation_unit_token1, - [50677] = 2, + [50693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(4885), 1, aux_sym_with_clause_token2, - [50684] = 2, + [50700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(4887), 1, aux_sym_allocator_token1, - [50691] = 2, + [50707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - [50698] = 2, + [50714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4891), 1, aux_sym_compilation_unit_token1, - [50705] = 2, + [50721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4893), 1, aux_sym_compilation_unit_token1, - [50712] = 2, + [50728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, + ACTIONS(4895), 1, anon_sym_RPAREN, - [50719] = 2, + [50735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, + ACTIONS(4897), 1, anon_sym_SEMI, - [50726] = 2, + [50742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, + ACTIONS(4899), 1, aux_sym_record_component_association_list_token1, - [50733] = 2, + [50749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(4901), 1, aux_sym_package_specification_token2, - [50740] = 2, + [50756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3649), 1, anon_sym_SEMI, - [50747] = 2, + [50763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, + ACTIONS(4903), 1, sym_identifier, - [50754] = 2, + [50770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(4905), 1, aux_sym_loop_statement_token1, - [50761] = 2, + [50777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(4907), 1, anon_sym_SEMI, - [50768] = 2, + [50784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3939), 1, + ACTIONS(3942), 1, anon_sym_SEMI, - [50775] = 2, + [50791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(4909), 1, aux_sym_chunk_specification_token1, - [50782] = 2, + [50798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4911), 1, anon_sym_DOT_DOT, - [50789] = 2, + [50805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4913), 1, anon_sym_SEMI, - [50796] = 2, + [50812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 1, + ACTIONS(4266), 1, anon_sym_SEMI, - [50803] = 2, + [50819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(271), 1, aux_sym_subprogram_body_token1, - [50810] = 2, + [50826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, + ACTIONS(4915), 1, aux_sym_package_specification_token2, - [50817] = 2, + [50833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4917), 1, anon_sym_SEMI, - [50824] = 2, + [50840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(209), 1, aux_sym_private_type_declaration_token1, - [50831] = 2, + [50847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(4919), 1, anon_sym_SEMI, - [50838] = 2, + [50854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4921), 1, aux_sym_component_list_token1, - [50845] = 2, + [50861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4923), 1, sym_identifier, - [50852] = 2, + [50868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4123), 1, + ACTIONS(4126), 1, aux_sym_package_specification_token3, - [50859] = 2, + [50875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4925), 1, anon_sym_COLON, - [50866] = 2, + [50882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(4927), 1, anon_sym_RPAREN, - [50873] = 2, + [50889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(4929), 1, aux_sym_package_specification_token2, - [50880] = 2, + [50896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(4931), 1, aux_sym_loop_statement_token1, - [50887] = 2, + [50903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 1, + ACTIONS(4933), 1, aux_sym_package_specification_token3, - [50894] = 2, + [50910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(4935), 1, anon_sym_SEMI, - [50901] = 2, + [50917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4937), 1, anon_sym_SEMI, - [50908] = 2, + [50924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4939), 1, anon_sym_SEMI, - [50915] = 2, + [50931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, + ACTIONS(4174), 1, anon_sym_SEMI, - [50922] = 2, + [50938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, + ACTIONS(4941), 1, aux_sym_package_specification_token3, - [50929] = 2, + [50945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, + ACTIONS(4943), 1, aux_sym_allocator_token1, - [50936] = 2, + [50952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(4945), 1, aux_sym_record_component_association_list_token1, - [50943] = 2, + [50959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, + ACTIONS(4947), 1, aux_sym_with_clause_token2, - [50950] = 2, + [50966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(4949), 1, aux_sym_compilation_unit_token1, - [50957] = 2, + [50973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, + ACTIONS(4951), 1, aux_sym_compilation_unit_token1, - [50964] = 2, + [50980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3467), 1, + ACTIONS(3470), 1, aux_sym_allocator_token1, - [50971] = 2, + [50987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(4953), 1, anon_sym_SEMI, - [50978] = 2, + [50994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, + ACTIONS(3913), 1, anon_sym_SEMI, - [50985] = 2, + [51001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, + ACTIONS(4955), 1, anon_sym_SEMI, - [50992] = 2, + [51008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 1, + ACTIONS(4957), 1, anon_sym_RBRACK, - [50999] = 2, + [51015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, + ACTIONS(4959), 1, anon_sym_RPAREN, - [51006] = 2, + [51022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(4961), 1, aux_sym_expression_token2, - [51013] = 2, + [51029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(4963), 1, aux_sym_package_body_token1, - [51020] = 2, + [51036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4965), 1, anon_sym_SEMI, - [51027] = 2, + [51043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, + ACTIONS(4967), 1, anon_sym_SEMI, - [51034] = 2, + [51050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, + ACTIONS(4969), 1, anon_sym_SEMI, - [51041] = 2, + [51057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(4971), 1, anon_sym_GT_GT, - [51048] = 2, + [51064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(4973), 1, anon_sym_SEMI, - [51055] = 2, + [51071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 1, + ACTIONS(4975), 1, anon_sym_SEMI, - [51062] = 2, + [51078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4974), 1, + ACTIONS(4977), 1, anon_sym_SEMI, - [51069] = 2, + [51085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(4979), 1, aux_sym_expression_token2, - [51076] = 2, + [51092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, + ACTIONS(4981), 1, aux_sym_package_body_token1, - [51083] = 2, + [51099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 1, + ACTIONS(4983), 1, anon_sym_SEMI, - [51090] = 2, + [51106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, + ACTIONS(4985), 1, anon_sym_COLON, - [51097] = 2, + [51113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(4987), 1, anon_sym_COLON, - [51104] = 2, + [51120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(4989), 1, sym_identifier, - [51111] = 2, + [51127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(4991), 1, anon_sym_EQ_GT, - [51118] = 2, + [51134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, + ACTIONS(4993), 1, aux_sym_subprogram_body_token1, - [51125] = 2, + [51141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, + ACTIONS(4995), 1, aux_sym_with_clause_token2, - [51132] = 2, + [51148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(4997), 1, anon_sym_SEMI, - [51139] = 2, + [51155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(4999), 1, anon_sym_SEMI, - [51146] = 2, + [51162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 1, + ACTIONS(5001), 1, aux_sym_package_specification_token3, - [51153] = 2, + [51169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(5003), 1, anon_sym_SEMI, - [51160] = 2, + [51176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5005), 1, sym_identifier, - [51167] = 2, + [51183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(5007), 1, sym_identifier, - [51174] = 2, + [51190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(5009), 1, anon_sym_SEMI, - [51181] = 2, + [51197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, + ACTIONS(5011), 1, anon_sym_SEMI, - [51188] = 2, + [51204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - [51195] = 2, + [51211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, + ACTIONS(5013), 1, anon_sym_SEMI, - [51202] = 2, + [51218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, + ACTIONS(5015), 1, anon_sym_SEMI, - [51209] = 2, + [51225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, + ACTIONS(5017), 1, aux_sym_compilation_unit_token1, - [51216] = 2, + [51232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, + ACTIONS(5019), 1, aux_sym_package_specification_token2, - [51223] = 2, + [51239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, + ACTIONS(5021), 1, aux_sym_with_clause_token2, - [51230] = 2, + [51246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5023), 1, anon_sym_SEMI, - [51237] = 2, + [51253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(5025), 1, aux_sym_with_clause_token2, - [51244] = 2, + [51260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(323), 1, aux_sym_subprogram_body_token1, - [51251] = 2, + [51267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, + ACTIONS(5027), 1, anon_sym_SEMI, - [51258] = 2, + [51274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(5029), 1, sym_identifier, - [51265] = 2, + [51281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, + ACTIONS(5031), 1, anon_sym_SEMI, - [51272] = 2, + [51288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(5033), 1, sym_identifier, - [51279] = 2, + [51295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(5035), 1, anon_sym_SEMI, - [51286] = 2, + [51302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5037), 1, anon_sym_RPAREN, - [51293] = 2, + [51309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(273), 1, aux_sym_subprogram_body_token1, - [51300] = 2, + [51316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, + ACTIONS(5039), 1, aux_sym_package_specification_token3, - [51307] = 2, + [51323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(5041), 1, anon_sym_SEMI, - [51314] = 2, + [51330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, + ACTIONS(5043), 1, aux_sym_loop_statement_token1, - [51321] = 2, + [51337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, + ACTIONS(5045), 1, aux_sym_package_specification_token3, - [51328] = 2, + [51344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(5047), 1, aux_sym_package_specification_token2, - [51335] = 2, + [51351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, + ACTIONS(5049), 1, anon_sym_RPAREN, - [51342] = 2, + [51358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(5051), 1, anon_sym_SEMI, - [51349] = 2, + [51365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, + ACTIONS(5053), 1, anon_sym_SEMI, - [51356] = 2, + [51372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(5055), 1, sym_identifier, - [51363] = 2, + [51379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5054), 1, + ACTIONS(5057), 1, anon_sym_SEMI, - [51370] = 2, + [51386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(5059), 1, aux_sym_compilation_unit_token1, - [51377] = 2, + [51393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, + ACTIONS(5061), 1, anon_sym_SEMI, - [51384] = 2, + [51400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5060), 1, + ACTIONS(5063), 1, anon_sym_RPAREN, - [51391] = 2, + [51407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, + ACTIONS(5065), 1, aux_sym_with_clause_token2, - [51398] = 2, + [51414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, + ACTIONS(5067), 1, aux_sym_package_specification_token3, - [51405] = 2, + [51421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, + ACTIONS(5069), 1, anon_sym_RPAREN, - [51412] = 2, + [51428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3320), 1, anon_sym_SEMI, - [51419] = 2, + [51435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(5071), 1, anon_sym_SEMI, - [51426] = 2, + [51442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, + ACTIONS(5073), 1, anon_sym_SEMI, - [51433] = 2, + [51449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5075), 1, anon_sym_SEMI, - [51440] = 2, + [51456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 1, + ACTIONS(5077), 1, anon_sym_SEMI, - [51447] = 2, + [51463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5076), 1, + ACTIONS(5079), 1, aux_sym_with_clause_token2, - [51454] = 2, + [51470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4341), 1, anon_sym_SEMI, - [51461] = 2, + [51477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5081), 1, anon_sym_SEMI, - [51468] = 2, + [51484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, + ACTIONS(5083), 1, anon_sym_SEMI, - [51475] = 2, + [51491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, + ACTIONS(5085), 1, anon_sym_SEMI, - [51482] = 2, + [51498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, + ACTIONS(5087), 1, anon_sym_SEMI, - [51489] = 2, + [51505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(5089), 1, aux_sym_use_clause_token2, - [51496] = 2, + [51512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(5091), 1, anon_sym_SEMI, - [51503] = 2, + [51519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, + ACTIONS(5093), 1, aux_sym_package_specification_token3, - [51510] = 2, + [51526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, + ACTIONS(5095), 1, aux_sym_loop_statement_token1, - [51517] = 2, + [51533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, + ACTIONS(5097), 1, anon_sym_EQ_GT, - [51524] = 2, + [51540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5099), 1, aux_sym_asynchronous_select_token1, - [51531] = 2, + [51547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, + ACTIONS(5101), 1, aux_sym_package_specification_token3, - [51538] = 2, + [51554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, + ACTIONS(5103), 1, anon_sym_RBRACK, - [51545] = 2, + [51561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5105), 1, anon_sym_SEMI, - [51552] = 2, + [51568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 1, + ACTIONS(5107), 1, anon_sym_SEMI, - [51559] = 2, + [51575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5109), 1, anon_sym_SEMI, - [51566] = 2, + [51582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(5111), 1, aux_sym_compilation_unit_token1, - [51573] = 2, + [51589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5110), 1, + ACTIONS(5113), 1, aux_sym_package_specification_token3, - [51580] = 2, + [51596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(5115), 1, anon_sym_RPAREN, - [51587] = 2, + [51603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5117), 1, aux_sym_package_specification_token3, - [51594] = 2, + [51610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5119), 1, aux_sym_asynchronous_select_token1, - [51601] = 2, + [51617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(5121), 1, aux_sym_asynchronous_select_token1, - [51608] = 2, + [51624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, + ACTIONS(5123), 1, aux_sym_subprogram_body_token1, - [51615] = 2, + [51631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, + ACTIONS(5125), 1, aux_sym_result_profile_token1, - [51622] = 2, + [51638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5127), 1, sym_identifier, - [51629] = 2, + [51645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5129), 1, anon_sym_RPAREN, - [51636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_EQ_GT, - [51643] = 2, + [51652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5131), 1, - aux_sym_compilation_unit_token1, - [51650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3168), 1, - aux_sym_loop_statement_token1, - [51657] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5133), 1, - aux_sym_if_expression_token1, - [51664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5135), 1, - anon_sym_SEMI, - [51671] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, - anon_sym_RPAREN, - [51678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3210), 1, - anon_sym_SEMI, - [51685] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5139), 1, - anon_sym_SEMI, - [51692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4052), 1, - anon_sym_SEMI, - [51699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_SEMI, - [51706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5143), 1, - anon_sym_SEMI, - [51713] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5145), 1, - sym_tick, - [51720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5147), 1, - aux_sym_iterated_element_association_token2, - [51727] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5149), 1, - anon_sym_LT_GT, - [51734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5151), 1, - aux_sym_package_specification_token3, - [51741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 1, - anon_sym_SEMI, - [51748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5153), 1, - anon_sym_COLON, - [51755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5155), 1, - anon_sym_LT_GT, - [51762] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5157), 1, - anon_sym_LT_GT, - [51769] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5159), 1, - ts_builtin_sym_end, - [51776] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5161), 1, - sym_identifier, - [51783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - sym_identifier, - [51790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_SEMI, - [51797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 1, - anon_sym_SEMI, - [51804] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 1, - sym_identifier, - [51811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5169), 1, - anon_sym_LT_GT, - [51818] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5171), 1, - aux_sym_package_specification_token3, - [51825] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5173), 1, - sym_identifier, - [51832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 1, - anon_sym_LT_GT, - [51839] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_SEMI, - [51846] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, anon_sym_EQ_GT, - [51853] = 2, + [51659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, - sym_identifier, - [51860] = 2, + ACTIONS(5134), 1, + aux_sym_compilation_unit_token1, + [51666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, + ACTIONS(3171), 1, + aux_sym_loop_statement_token1, + [51673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5136), 1, + aux_sym_if_expression_token1, + [51680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 1, anon_sym_SEMI, - [51867] = 2, + [51687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, + ACTIONS(5140), 1, + anon_sym_RPAREN, + [51694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3213), 1, + anon_sym_SEMI, + [51701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5142), 1, + anon_sym_SEMI, + [51708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_SEMI, + [51715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 1, + anon_sym_SEMI, + [51722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5146), 1, + anon_sym_SEMI, + [51729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 1, + sym_tick, + [51736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 1, + aux_sym_iterated_element_association_token2, + [51743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5152), 1, + anon_sym_LT_GT, + [51750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 1, + aux_sym_package_specification_token3, + [51757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4208), 1, + anon_sym_SEMI, + [51764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5156), 1, + anon_sym_COLON, + [51771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + anon_sym_LT_GT, + [51778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_LT_GT, + [51785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + ts_builtin_sym_end, + [51792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 1, + sym_identifier, + [51799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 1, + sym_identifier, + [51806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 1, + anon_sym_SEMI, + [51813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 1, + anon_sym_SEMI, + [51820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 1, + sym_identifier, + [51827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5172), 1, + anon_sym_LT_GT, + [51834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + aux_sym_package_specification_token3, + [51841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5176), 1, + sym_identifier, + [51848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 1, + anon_sym_LT_GT, + [51855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_SEMI, + [51862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 1, + anon_sym_EQ_GT, + [51869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 1, + sym_identifier, + [51876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 1, + anon_sym_SEMI, + [51883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, aux_sym_allocator_token1, - [51874] = 2, + [51890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(329), 1, aux_sym_subprogram_body_token1, - [51881] = 2, + [51897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - [51888] = 2, + [51904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, + ACTIONS(5190), 1, anon_sym_EQ_GT, - [51895] = 2, + [51911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 1, + ACTIONS(5192), 1, aux_sym_global_mode_token1, - [51902] = 2, + [51918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - [51909] = 2, + [51925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5196), 1, sym_identifier, - [51916] = 2, + [51932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4387), 1, anon_sym_SEMI, - [51923] = 2, + [51939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, + ACTIONS(5198), 1, anon_sym_SEMI, }; @@ -57493,8 +57505,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(469)] = 26117, [SMALL_STATE(470)] = 26167, [SMALL_STATE(471)] = 26217, - [SMALL_STATE(472)] = 26299, - [SMALL_STATE(473)] = 26349, + [SMALL_STATE(472)] = 26267, + [SMALL_STATE(473)] = 26317, [SMALL_STATE(474)] = 26399, [SMALL_STATE(475)] = 26449, [SMALL_STATE(476)] = 26499, @@ -57506,8 +57518,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(482)] = 26829, [SMALL_STATE(483)] = 26878, [SMALL_STATE(484)] = 26927, - [SMALL_STATE(485)] = 26976, - [SMALL_STATE(486)] = 27025, + [SMALL_STATE(485)] = 26984, + [SMALL_STATE(486)] = 27033, [SMALL_STATE(487)] = 27082, [SMALL_STATE(488)] = 27131, [SMALL_STATE(489)] = 27187, @@ -57515,22 +57527,22 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(491)] = 27299, [SMALL_STATE(492)] = 27346, [SMALL_STATE(493)] = 27393, - [SMALL_STATE(494)] = 27456, - [SMALL_STATE(495)] = 27503, + [SMALL_STATE(494)] = 27440, + [SMALL_STATE(495)] = 27487, [SMALL_STATE(496)] = 27550, [SMALL_STATE(497)] = 27597, - [SMALL_STATE(498)] = 27646, + [SMALL_STATE(498)] = 27644, [SMALL_STATE(499)] = 27693, [SMALL_STATE(500)] = 27740, [SMALL_STATE(501)] = 27787, [SMALL_STATE(502)] = 27851, [SMALL_STATE(503)] = 27897, [SMALL_STATE(504)] = 27943, - [SMALL_STATE(505)] = 28013, - [SMALL_STATE(506)] = 28077, + [SMALL_STATE(505)] = 27989, + [SMALL_STATE(506)] = 28059, [SMALL_STATE(507)] = 28123, - [SMALL_STATE(508)] = 28207, - [SMALL_STATE(509)] = 28277, + [SMALL_STATE(508)] = 28169, + [SMALL_STATE(509)] = 28239, [SMALL_STATE(510)] = 28323, [SMALL_STATE(511)] = 28402, [SMALL_STATE(512)] = 28469, @@ -57547,1443 +57559,1443 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(523)] = 29088, [SMALL_STATE(524)] = 29143, [SMALL_STATE(525)] = 29198, - [SMALL_STATE(526)] = 29253, - [SMALL_STATE(527)] = 29292, + [SMALL_STATE(526)] = 29249, + [SMALL_STATE(527)] = 29288, [SMALL_STATE(528)] = 29343, - [SMALL_STATE(529)] = 29393, + [SMALL_STATE(529)] = 29385, [SMALL_STATE(530)] = 29435, [SMALL_STATE(531)] = 29504, [SMALL_STATE(532)] = 29549, [SMALL_STATE(533)] = 29591, [SMALL_STATE(534)] = 29637, [SMALL_STATE(535)] = 29678, - [SMALL_STATE(536)] = 29718, - [SMALL_STATE(537)] = 29774, - [SMALL_STATE(538)] = 29810, - [SMALL_STATE(539)] = 29866, - [SMALL_STATE(540)] = 29922, - [SMALL_STATE(541)] = 29978, + [SMALL_STATE(536)] = 29730, + [SMALL_STATE(537)] = 29786, + [SMALL_STATE(538)] = 29842, + [SMALL_STATE(539)] = 29878, + [SMALL_STATE(540)] = 29934, + [SMALL_STATE(541)] = 29990, [SMALL_STATE(542)] = 30030, [SMALL_STATE(543)] = 30086, [SMALL_STATE(544)] = 30143, [SMALL_STATE(545)] = 30200, [SMALL_STATE(546)] = 30257, [SMALL_STATE(547)] = 30314, - [SMALL_STATE(548)] = 30351, + [SMALL_STATE(548)] = 30371, [SMALL_STATE(549)] = 30408, - [SMALL_STATE(550)] = 30462, - [SMALL_STATE(551)] = 30516, - [SMALL_STATE(552)] = 30570, - [SMALL_STATE(553)] = 30624, - [SMALL_STATE(554)] = 30678, - [SMALL_STATE(555)] = 30710, - [SMALL_STATE(556)] = 30744, + [SMALL_STATE(550)] = 30440, + [SMALL_STATE(551)] = 30484, + [SMALL_STATE(552)] = 30538, + [SMALL_STATE(553)] = 30592, + [SMALL_STATE(554)] = 30646, + [SMALL_STATE(555)] = 30680, + [SMALL_STATE(556)] = 30734, [SMALL_STATE(557)] = 30788, [SMALL_STATE(558)] = 30828, [SMALL_STATE(559)] = 30882, [SMALL_STATE(560)] = 30931, [SMALL_STATE(561)] = 30982, [SMALL_STATE(562)] = 31031, - [SMALL_STATE(563)] = 31082, - [SMALL_STATE(564)] = 31133, - [SMALL_STATE(565)] = 31190, - [SMALL_STATE(566)] = 31219, - [SMALL_STATE(567)] = 31260, - [SMALL_STATE(568)] = 31311, - [SMALL_STATE(569)] = 31362, - [SMALL_STATE(570)] = 31413, - [SMALL_STATE(571)] = 31442, + [SMALL_STATE(563)] = 31060, + [SMALL_STATE(564)] = 31111, + [SMALL_STATE(565)] = 31162, + [SMALL_STATE(566)] = 31203, + [SMALL_STATE(567)] = 31254, + [SMALL_STATE(568)] = 31283, + [SMALL_STATE(569)] = 31334, + [SMALL_STATE(570)] = 31385, + [SMALL_STATE(571)] = 31414, [SMALL_STATE(572)] = 31471, [SMALL_STATE(573)] = 31525, [SMALL_STATE(574)] = 31579, [SMALL_STATE(575)] = 31633, - [SMALL_STATE(576)] = 31664, - [SMALL_STATE(577)] = 31695, - [SMALL_STATE(578)] = 31738, - [SMALL_STATE(579)] = 31769, - [SMALL_STATE(580)] = 31812, - [SMALL_STATE(581)] = 31863, - [SMALL_STATE(582)] = 31914, - [SMALL_STATE(583)] = 31965, + [SMALL_STATE(576)] = 31680, + [SMALL_STATE(577)] = 31731, + [SMALL_STATE(578)] = 31774, + [SMALL_STATE(579)] = 31805, + [SMALL_STATE(580)] = 31848, + [SMALL_STATE(581)] = 31879, + [SMALL_STATE(582)] = 31930, + [SMALL_STATE(583)] = 31981, [SMALL_STATE(584)] = 32012, [SMALL_STATE(585)] = 32041, - [SMALL_STATE(586)] = 32091, - [SMALL_STATE(587)] = 32131, - [SMALL_STATE(588)] = 32179, - [SMALL_STATE(589)] = 32227, - [SMALL_STATE(590)] = 32253, - [SMALL_STATE(591)] = 32303, - [SMALL_STATE(592)] = 32351, - [SMALL_STATE(593)] = 32377, - [SMALL_STATE(594)] = 32403, - [SMALL_STATE(595)] = 32429, + [SMALL_STATE(586)] = 32067, + [SMALL_STATE(587)] = 32117, + [SMALL_STATE(588)] = 32143, + [SMALL_STATE(589)] = 32193, + [SMALL_STATE(590)] = 32241, + [SMALL_STATE(591)] = 32289, + [SMALL_STATE(592)] = 32315, + [SMALL_STATE(593)] = 32363, + [SMALL_STATE(594)] = 32389, + [SMALL_STATE(595)] = 32437, [SMALL_STATE(596)] = 32477, [SMALL_STATE(597)] = 32527, [SMALL_STATE(598)] = 32553, [SMALL_STATE(599)] = 32582, - [SMALL_STATE(600)] = 32627, - [SMALL_STATE(601)] = 32672, - [SMALL_STATE(602)] = 32717, - [SMALL_STATE(603)] = 32746, - [SMALL_STATE(604)] = 32775, - [SMALL_STATE(605)] = 32812, - [SMALL_STATE(606)] = 32841, + [SMALL_STATE(600)] = 32619, + [SMALL_STATE(601)] = 32664, + [SMALL_STATE(602)] = 32707, + [SMALL_STATE(603)] = 32752, + [SMALL_STATE(604)] = 32781, + [SMALL_STATE(605)] = 32826, + [SMALL_STATE(606)] = 32855, [SMALL_STATE(607)] = 32884, [SMALL_STATE(608)] = 32913, [SMALL_STATE(609)] = 32942, [SMALL_STATE(610)] = 32966, - [SMALL_STATE(611)] = 32990, - [SMALL_STATE(612)] = 33030, - [SMALL_STATE(613)] = 33070, - [SMALL_STATE(614)] = 33112, - [SMALL_STATE(615)] = 33136, - [SMALL_STATE(616)] = 33176, - [SMALL_STATE(617)] = 33218, - [SMALL_STATE(618)] = 33242, - [SMALL_STATE(619)] = 33276, + [SMALL_STATE(611)] = 33008, + [SMALL_STATE(612)] = 33050, + [SMALL_STATE(613)] = 33074, + [SMALL_STATE(614)] = 33114, + [SMALL_STATE(615)] = 33154, + [SMALL_STATE(616)] = 33178, + [SMALL_STATE(617)] = 33222, + [SMALL_STATE(618)] = 33262, + [SMALL_STATE(619)] = 33296, [SMALL_STATE(620)] = 33320, - [SMALL_STATE(621)] = 33362, - [SMALL_STATE(622)] = 33396, + [SMALL_STATE(621)] = 33344, + [SMALL_STATE(622)] = 33378, [SMALL_STATE(623)] = 33420, [SMALL_STATE(624)] = 33459, [SMALL_STATE(625)] = 33498, - [SMALL_STATE(626)] = 33525, - [SMALL_STATE(627)] = 33564, - [SMALL_STATE(628)] = 33601, - [SMALL_STATE(629)] = 33628, - [SMALL_STATE(630)] = 33667, - [SMALL_STATE(631)] = 33706, - [SMALL_STATE(632)] = 33745, - [SMALL_STATE(633)] = 33784, - [SMALL_STATE(634)] = 33822, + [SMALL_STATE(626)] = 33535, + [SMALL_STATE(627)] = 33572, + [SMALL_STATE(628)] = 33611, + [SMALL_STATE(629)] = 33650, + [SMALL_STATE(630)] = 33677, + [SMALL_STATE(631)] = 33716, + [SMALL_STATE(632)] = 33743, + [SMALL_STATE(633)] = 33782, + [SMALL_STATE(634)] = 33821, [SMALL_STATE(635)] = 33860, - [SMALL_STATE(636)] = 33894, - [SMALL_STATE(637)] = 33928, - [SMALL_STATE(638)] = 33966, - [SMALL_STATE(639)] = 34002, - [SMALL_STATE(640)] = 34040, - [SMALL_STATE(641)] = 34078, - [SMALL_STATE(642)] = 34114, - [SMALL_STATE(643)] = 34150, - [SMALL_STATE(644)] = 34188, - [SMALL_STATE(645)] = 34222, - [SMALL_STATE(646)] = 34262, - [SMALL_STATE(647)] = 34300, - [SMALL_STATE(648)] = 34338, - [SMALL_STATE(649)] = 34372, - [SMALL_STATE(650)] = 34410, - [SMALL_STATE(651)] = 34448, - [SMALL_STATE(652)] = 34486, - [SMALL_STATE(653)] = 34519, - [SMALL_STATE(654)] = 34552, - [SMALL_STATE(655)] = 34573, - [SMALL_STATE(656)] = 34608, - [SMALL_STATE(657)] = 34643, - [SMALL_STATE(658)] = 34678, - [SMALL_STATE(659)] = 34711, - [SMALL_STATE(660)] = 34746, - [SMALL_STATE(661)] = 34767, - [SMALL_STATE(662)] = 34802, - [SMALL_STATE(663)] = 34837, - [SMALL_STATE(664)] = 34868, - [SMALL_STATE(665)] = 34901, - [SMALL_STATE(666)] = 34936, - [SMALL_STATE(667)] = 34969, - [SMALL_STATE(668)] = 34990, - [SMALL_STATE(669)] = 35023, - [SMALL_STATE(670)] = 35044, - [SMALL_STATE(671)] = 35065, - [SMALL_STATE(672)] = 35086, - [SMALL_STATE(673)] = 35107, - [SMALL_STATE(674)] = 35142, - [SMALL_STATE(675)] = 35170, - [SMALL_STATE(676)] = 35198, - [SMALL_STATE(677)] = 35226, - [SMALL_STATE(678)] = 35254, - [SMALL_STATE(679)] = 35282, - [SMALL_STATE(680)] = 35310, - [SMALL_STATE(681)] = 35338, - [SMALL_STATE(682)] = 35370, - [SMALL_STATE(683)] = 35398, - [SMALL_STATE(684)] = 35426, - [SMALL_STATE(685)] = 35458, - [SMALL_STATE(686)] = 35486, - [SMALL_STATE(687)] = 35514, - [SMALL_STATE(688)] = 35542, - [SMALL_STATE(689)] = 35570, - [SMALL_STATE(690)] = 35600, - [SMALL_STATE(691)] = 35632, - [SMALL_STATE(692)] = 35662, - [SMALL_STATE(693)] = 35690, - [SMALL_STATE(694)] = 35718, - [SMALL_STATE(695)] = 35746, - [SMALL_STATE(696)] = 35778, - [SMALL_STATE(697)] = 35806, - [SMALL_STATE(698)] = 35838, - [SMALL_STATE(699)] = 35866, - [SMALL_STATE(700)] = 35894, - [SMALL_STATE(701)] = 35922, - [SMALL_STATE(702)] = 35950, - [SMALL_STATE(703)] = 35978, - [SMALL_STATE(704)] = 36010, - [SMALL_STATE(705)] = 36038, - [SMALL_STATE(706)] = 36066, - [SMALL_STATE(707)] = 36094, - [SMALL_STATE(708)] = 36126, - [SMALL_STATE(709)] = 36156, - [SMALL_STATE(710)] = 36184, - [SMALL_STATE(711)] = 36212, - [SMALL_STATE(712)] = 36244, - [SMALL_STATE(713)] = 36272, - [SMALL_STATE(714)] = 36300, - [SMALL_STATE(715)] = 36328, - [SMALL_STATE(716)] = 36356, - [SMALL_STATE(717)] = 36384, - [SMALL_STATE(718)] = 36412, - [SMALL_STATE(719)] = 36442, - [SMALL_STATE(720)] = 36472, - [SMALL_STATE(721)] = 36500, - [SMALL_STATE(722)] = 36528, - [SMALL_STATE(723)] = 36556, - [SMALL_STATE(724)] = 36584, - [SMALL_STATE(725)] = 36612, - [SMALL_STATE(726)] = 36640, - [SMALL_STATE(727)] = 36668, - [SMALL_STATE(728)] = 36696, - [SMALL_STATE(729)] = 36726, - [SMALL_STATE(730)] = 36754, - [SMALL_STATE(731)] = 36782, - [SMALL_STATE(732)] = 36810, - [SMALL_STATE(733)] = 36838, - [SMALL_STATE(734)] = 36866, - [SMALL_STATE(735)] = 36894, - [SMALL_STATE(736)] = 36922, - [SMALL_STATE(737)] = 36952, - [SMALL_STATE(738)] = 36980, - [SMALL_STATE(739)] = 37008, - [SMALL_STATE(740)] = 37036, - [SMALL_STATE(741)] = 37064, - [SMALL_STATE(742)] = 37092, - [SMALL_STATE(743)] = 37122, - [SMALL_STATE(744)] = 37150, - [SMALL_STATE(745)] = 37178, - [SMALL_STATE(746)] = 37208, - [SMALL_STATE(747)] = 37236, - [SMALL_STATE(748)] = 37264, - [SMALL_STATE(749)] = 37294, - [SMALL_STATE(750)] = 37319, - [SMALL_STATE(751)] = 37344, - [SMALL_STATE(752)] = 37367, - [SMALL_STATE(753)] = 37392, - [SMALL_STATE(754)] = 37417, - [SMALL_STATE(755)] = 37442, - [SMALL_STATE(756)] = 37467, - [SMALL_STATE(757)] = 37492, - [SMALL_STATE(758)] = 37517, - [SMALL_STATE(759)] = 37542, - [SMALL_STATE(760)] = 37567, - [SMALL_STATE(761)] = 37588, - [SMALL_STATE(762)] = 37613, - [SMALL_STATE(763)] = 37638, - [SMALL_STATE(764)] = 37663, - [SMALL_STATE(765)] = 37688, - [SMALL_STATE(766)] = 37713, - [SMALL_STATE(767)] = 37738, - [SMALL_STATE(768)] = 37763, - [SMALL_STATE(769)] = 37788, - [SMALL_STATE(770)] = 37813, - [SMALL_STATE(771)] = 37838, - [SMALL_STATE(772)] = 37863, - [SMALL_STATE(773)] = 37888, - [SMALL_STATE(774)] = 37913, - [SMALL_STATE(775)] = 37938, - [SMALL_STATE(776)] = 37963, - [SMALL_STATE(777)] = 37988, - [SMALL_STATE(778)] = 38013, - [SMALL_STATE(779)] = 38038, - [SMALL_STATE(780)] = 38063, - [SMALL_STATE(781)] = 38090, - [SMALL_STATE(782)] = 38115, - [SMALL_STATE(783)] = 38140, - [SMALL_STATE(784)] = 38163, - [SMALL_STATE(785)] = 38188, - [SMALL_STATE(786)] = 38213, - [SMALL_STATE(787)] = 38238, - [SMALL_STATE(788)] = 38263, - [SMALL_STATE(789)] = 38288, - [SMALL_STATE(790)] = 38313, - [SMALL_STATE(791)] = 38338, - [SMALL_STATE(792)] = 38363, - [SMALL_STATE(793)] = 38388, - [SMALL_STATE(794)] = 38413, - [SMALL_STATE(795)] = 38440, - [SMALL_STATE(796)] = 38465, - [SMALL_STATE(797)] = 38500, - [SMALL_STATE(798)] = 38525, - [SMALL_STATE(799)] = 38550, - [SMALL_STATE(800)] = 38573, - [SMALL_STATE(801)] = 38602, - [SMALL_STATE(802)] = 38627, - [SMALL_STATE(803)] = 38652, - [SMALL_STATE(804)] = 38677, - [SMALL_STATE(805)] = 38700, - [SMALL_STATE(806)] = 38727, - [SMALL_STATE(807)] = 38752, - [SMALL_STATE(808)] = 38777, - [SMALL_STATE(809)] = 38802, - [SMALL_STATE(810)] = 38827, - [SMALL_STATE(811)] = 38849, - [SMALL_STATE(812)] = 38871, - [SMALL_STATE(813)] = 38891, - [SMALL_STATE(814)] = 38911, - [SMALL_STATE(815)] = 38929, - [SMALL_STATE(816)] = 38951, - [SMALL_STATE(817)] = 38970, - [SMALL_STATE(818)] = 38999, - [SMALL_STATE(819)] = 39018, - [SMALL_STATE(820)] = 39047, - [SMALL_STATE(821)] = 39066, - [SMALL_STATE(822)] = 39085, - [SMALL_STATE(823)] = 39114, - [SMALL_STATE(824)] = 39133, - [SMALL_STATE(825)] = 39152, - [SMALL_STATE(826)] = 39181, - [SMALL_STATE(827)] = 39210, - [SMALL_STATE(828)] = 39226, + [SMALL_STATE(636)] = 33899, + [SMALL_STATE(637)] = 33939, + [SMALL_STATE(638)] = 33977, + [SMALL_STATE(639)] = 34011, + [SMALL_STATE(640)] = 34045, + [SMALL_STATE(641)] = 34083, + [SMALL_STATE(642)] = 34121, + [SMALL_STATE(643)] = 34155, + [SMALL_STATE(644)] = 34189, + [SMALL_STATE(645)] = 34227, + [SMALL_STATE(646)] = 34265, + [SMALL_STATE(647)] = 34301, + [SMALL_STATE(648)] = 34339, + [SMALL_STATE(649)] = 34371, + [SMALL_STATE(650)] = 34407, + [SMALL_STATE(651)] = 34445, + [SMALL_STATE(652)] = 34483, + [SMALL_STATE(653)] = 34521, + [SMALL_STATE(654)] = 34559, + [SMALL_STATE(655)] = 34595, + [SMALL_STATE(656)] = 34633, + [SMALL_STATE(657)] = 34654, + [SMALL_STATE(658)] = 34685, + [SMALL_STATE(659)] = 34718, + [SMALL_STATE(660)] = 34753, + [SMALL_STATE(661)] = 34774, + [SMALL_STATE(662)] = 34809, + [SMALL_STATE(663)] = 34830, + [SMALL_STATE(664)] = 34865, + [SMALL_STATE(665)] = 34898, + [SMALL_STATE(666)] = 34931, + [SMALL_STATE(667)] = 34952, + [SMALL_STATE(668)] = 34987, + [SMALL_STATE(669)] = 35022, + [SMALL_STATE(670)] = 35043, + [SMALL_STATE(671)] = 35076, + [SMALL_STATE(672)] = 35109, + [SMALL_STATE(673)] = 35130, + [SMALL_STATE(674)] = 35165, + [SMALL_STATE(675)] = 35186, + [SMALL_STATE(676)] = 35214, + [SMALL_STATE(677)] = 35242, + [SMALL_STATE(678)] = 35270, + [SMALL_STATE(679)] = 35298, + [SMALL_STATE(680)] = 35326, + [SMALL_STATE(681)] = 35354, + [SMALL_STATE(682)] = 35386, + [SMALL_STATE(683)] = 35414, + [SMALL_STATE(684)] = 35442, + [SMALL_STATE(685)] = 35474, + [SMALL_STATE(686)] = 35502, + [SMALL_STATE(687)] = 35530, + [SMALL_STATE(688)] = 35558, + [SMALL_STATE(689)] = 35586, + [SMALL_STATE(690)] = 35614, + [SMALL_STATE(691)] = 35644, + [SMALL_STATE(692)] = 35676, + [SMALL_STATE(693)] = 35706, + [SMALL_STATE(694)] = 35734, + [SMALL_STATE(695)] = 35762, + [SMALL_STATE(696)] = 35790, + [SMALL_STATE(697)] = 35822, + [SMALL_STATE(698)] = 35850, + [SMALL_STATE(699)] = 35882, + [SMALL_STATE(700)] = 35910, + [SMALL_STATE(701)] = 35938, + [SMALL_STATE(702)] = 35966, + [SMALL_STATE(703)] = 35994, + [SMALL_STATE(704)] = 36026, + [SMALL_STATE(705)] = 36054, + [SMALL_STATE(706)] = 36082, + [SMALL_STATE(707)] = 36110, + [SMALL_STATE(708)] = 36138, + [SMALL_STATE(709)] = 36170, + [SMALL_STATE(710)] = 36198, + [SMALL_STATE(711)] = 36228, + [SMALL_STATE(712)] = 36256, + [SMALL_STATE(713)] = 36288, + [SMALL_STATE(714)] = 36316, + [SMALL_STATE(715)] = 36344, + [SMALL_STATE(716)] = 36372, + [SMALL_STATE(717)] = 36400, + [SMALL_STATE(718)] = 36428, + [SMALL_STATE(719)] = 36456, + [SMALL_STATE(720)] = 36486, + [SMALL_STATE(721)] = 36516, + [SMALL_STATE(722)] = 36544, + [SMALL_STATE(723)] = 36572, + [SMALL_STATE(724)] = 36600, + [SMALL_STATE(725)] = 36628, + [SMALL_STATE(726)] = 36656, + [SMALL_STATE(727)] = 36684, + [SMALL_STATE(728)] = 36712, + [SMALL_STATE(729)] = 36742, + [SMALL_STATE(730)] = 36770, + [SMALL_STATE(731)] = 36798, + [SMALL_STATE(732)] = 36826, + [SMALL_STATE(733)] = 36854, + [SMALL_STATE(734)] = 36882, + [SMALL_STATE(735)] = 36912, + [SMALL_STATE(736)] = 36940, + [SMALL_STATE(737)] = 36968, + [SMALL_STATE(738)] = 36996, + [SMALL_STATE(739)] = 37024, + [SMALL_STATE(740)] = 37052, + [SMALL_STATE(741)] = 37080, + [SMALL_STATE(742)] = 37108, + [SMALL_STATE(743)] = 37138, + [SMALL_STATE(744)] = 37166, + [SMALL_STATE(745)] = 37194, + [SMALL_STATE(746)] = 37224, + [SMALL_STATE(747)] = 37254, + [SMALL_STATE(748)] = 37282, + [SMALL_STATE(749)] = 37310, + [SMALL_STATE(750)] = 37335, + [SMALL_STATE(751)] = 37360, + [SMALL_STATE(752)] = 37385, + [SMALL_STATE(753)] = 37410, + [SMALL_STATE(754)] = 37435, + [SMALL_STATE(755)] = 37456, + [SMALL_STATE(756)] = 37479, + [SMALL_STATE(757)] = 37504, + [SMALL_STATE(758)] = 37527, + [SMALL_STATE(759)] = 37552, + [SMALL_STATE(760)] = 37577, + [SMALL_STATE(761)] = 37602, + [SMALL_STATE(762)] = 37627, + [SMALL_STATE(763)] = 37652, + [SMALL_STATE(764)] = 37677, + [SMALL_STATE(765)] = 37702, + [SMALL_STATE(766)] = 37727, + [SMALL_STATE(767)] = 37752, + [SMALL_STATE(768)] = 37777, + [SMALL_STATE(769)] = 37802, + [SMALL_STATE(770)] = 37827, + [SMALL_STATE(771)] = 37852, + [SMALL_STATE(772)] = 37877, + [SMALL_STATE(773)] = 37902, + [SMALL_STATE(774)] = 37927, + [SMALL_STATE(775)] = 37952, + [SMALL_STATE(776)] = 37977, + [SMALL_STATE(777)] = 38004, + [SMALL_STATE(778)] = 38029, + [SMALL_STATE(779)] = 38054, + [SMALL_STATE(780)] = 38079, + [SMALL_STATE(781)] = 38104, + [SMALL_STATE(782)] = 38129, + [SMALL_STATE(783)] = 38154, + [SMALL_STATE(784)] = 38179, + [SMALL_STATE(785)] = 38204, + [SMALL_STATE(786)] = 38229, + [SMALL_STATE(787)] = 38254, + [SMALL_STATE(788)] = 38279, + [SMALL_STATE(789)] = 38304, + [SMALL_STATE(790)] = 38327, + [SMALL_STATE(791)] = 38352, + [SMALL_STATE(792)] = 38379, + [SMALL_STATE(793)] = 38404, + [SMALL_STATE(794)] = 38429, + [SMALL_STATE(795)] = 38454, + [SMALL_STATE(796)] = 38489, + [SMALL_STATE(797)] = 38514, + [SMALL_STATE(798)] = 38539, + [SMALL_STATE(799)] = 38564, + [SMALL_STATE(800)] = 38589, + [SMALL_STATE(801)] = 38614, + [SMALL_STATE(802)] = 38643, + [SMALL_STATE(803)] = 38668, + [SMALL_STATE(804)] = 38691, + [SMALL_STATE(805)] = 38716, + [SMALL_STATE(806)] = 38741, + [SMALL_STATE(807)] = 38766, + [SMALL_STATE(808)] = 38791, + [SMALL_STATE(809)] = 38816, + [SMALL_STATE(810)] = 38843, + [SMALL_STATE(811)] = 38865, + [SMALL_STATE(812)] = 38885, + [SMALL_STATE(813)] = 38907, + [SMALL_STATE(814)] = 38925, + [SMALL_STATE(815)] = 38947, + [SMALL_STATE(816)] = 38967, + [SMALL_STATE(817)] = 38996, + [SMALL_STATE(818)] = 39015, + [SMALL_STATE(819)] = 39044, + [SMALL_STATE(820)] = 39063, + [SMALL_STATE(821)] = 39082, + [SMALL_STATE(822)] = 39101, + [SMALL_STATE(823)] = 39120, + [SMALL_STATE(824)] = 39149, + [SMALL_STATE(825)] = 39178, + [SMALL_STATE(826)] = 39197, + [SMALL_STATE(827)] = 39226, + [SMALL_STATE(828)] = 39242, [SMALL_STATE(829)] = 39258, [SMALL_STATE(830)] = 39290, - [SMALL_STATE(831)] = 39322, + [SMALL_STATE(831)] = 39306, [SMALL_STATE(832)] = 39338, - [SMALL_STATE(833)] = 39354, - [SMALL_STATE(834)] = 39370, + [SMALL_STATE(833)] = 39370, + [SMALL_STATE(834)] = 39386, [SMALL_STATE(835)] = 39402, - [SMALL_STATE(836)] = 39418, - [SMALL_STATE(837)] = 39436, - [SMALL_STATE(838)] = 39463, - [SMALL_STATE(839)] = 39488, - [SMALL_STATE(840)] = 39519, - [SMALL_STATE(841)] = 39550, - [SMALL_STATE(842)] = 39577, - [SMALL_STATE(843)] = 39604, - [SMALL_STATE(844)] = 39631, - [SMALL_STATE(845)] = 39658, - [SMALL_STATE(846)] = 39685, - [SMALL_STATE(847)] = 39712, - [SMALL_STATE(848)] = 39741, - [SMALL_STATE(849)] = 39768, - [SMALL_STATE(850)] = 39797, - [SMALL_STATE(851)] = 39824, - [SMALL_STATE(852)] = 39855, - [SMALL_STATE(853)] = 39871, - [SMALL_STATE(854)] = 39887, - [SMALL_STATE(855)] = 39913, - [SMALL_STATE(856)] = 39929, - [SMALL_STATE(857)] = 39945, - [SMALL_STATE(858)] = 39961, - [SMALL_STATE(859)] = 39977, - [SMALL_STATE(860)] = 39993, - [SMALL_STATE(861)] = 40009, - [SMALL_STATE(862)] = 40025, - [SMALL_STATE(863)] = 40041, - [SMALL_STATE(864)] = 40057, - [SMALL_STATE(865)] = 40073, - [SMALL_STATE(866)] = 40089, - [SMALL_STATE(867)] = 40115, - [SMALL_STATE(868)] = 40139, - [SMALL_STATE(869)] = 40155, - [SMALL_STATE(870)] = 40181, - [SMALL_STATE(871)] = 40197, - [SMALL_STATE(872)] = 40213, - [SMALL_STATE(873)] = 40241, - [SMALL_STATE(874)] = 40257, - [SMALL_STATE(875)] = 40273, - [SMALL_STATE(876)] = 40289, - [SMALL_STATE(877)] = 40305, - [SMALL_STATE(878)] = 40321, - [SMALL_STATE(879)] = 40337, - [SMALL_STATE(880)] = 40353, - [SMALL_STATE(881)] = 40369, - [SMALL_STATE(882)] = 40391, - [SMALL_STATE(883)] = 40407, - [SMALL_STATE(884)] = 40433, - [SMALL_STATE(885)] = 40449, - [SMALL_STATE(886)] = 40465, - [SMALL_STATE(887)] = 40481, - [SMALL_STATE(888)] = 40497, - [SMALL_STATE(889)] = 40513, - [SMALL_STATE(890)] = 40529, - [SMALL_STATE(891)] = 40545, - [SMALL_STATE(892)] = 40561, - [SMALL_STATE(893)] = 40577, - [SMALL_STATE(894)] = 40593, - [SMALL_STATE(895)] = 40615, - [SMALL_STATE(896)] = 40641, - [SMALL_STATE(897)] = 40667, - [SMALL_STATE(898)] = 40683, - [SMALL_STATE(899)] = 40699, - [SMALL_STATE(900)] = 40715, - [SMALL_STATE(901)] = 40738, - [SMALL_STATE(902)] = 40759, - [SMALL_STATE(903)] = 40784, - [SMALL_STATE(904)] = 40809, - [SMALL_STATE(905)] = 40834, - [SMALL_STATE(906)] = 40859, - [SMALL_STATE(907)] = 40880, - [SMALL_STATE(908)] = 40905, - [SMALL_STATE(909)] = 40930, - [SMALL_STATE(910)] = 40955, - [SMALL_STATE(911)] = 40980, - [SMALL_STATE(912)] = 41005, - [SMALL_STATE(913)] = 41030, - [SMALL_STATE(914)] = 41055, - [SMALL_STATE(915)] = 41080, - [SMALL_STATE(916)] = 41105, - [SMALL_STATE(917)] = 41126, - [SMALL_STATE(918)] = 41151, - [SMALL_STATE(919)] = 41176, - [SMALL_STATE(920)] = 41189, - [SMALL_STATE(921)] = 41214, - [SMALL_STATE(922)] = 41227, - [SMALL_STATE(923)] = 41252, - [SMALL_STATE(924)] = 41265, - [SMALL_STATE(925)] = 41290, - [SMALL_STATE(926)] = 41303, - [SMALL_STATE(927)] = 41316, - [SMALL_STATE(928)] = 41341, - [SMALL_STATE(929)] = 41366, - [SMALL_STATE(930)] = 41391, - [SMALL_STATE(931)] = 41412, - [SMALL_STATE(932)] = 41427, - [SMALL_STATE(933)] = 41449, - [SMALL_STATE(934)] = 41471, - [SMALL_STATE(935)] = 41487, - [SMALL_STATE(936)] = 41501, - [SMALL_STATE(937)] = 41515, - [SMALL_STATE(938)] = 41527, - [SMALL_STATE(939)] = 41549, - [SMALL_STATE(940)] = 41563, - [SMALL_STATE(941)] = 41585, - [SMALL_STATE(942)] = 41603, - [SMALL_STATE(943)] = 41615, - [SMALL_STATE(944)] = 41631, - [SMALL_STATE(945)] = 41653, - [SMALL_STATE(946)] = 41667, - [SMALL_STATE(947)] = 41689, - [SMALL_STATE(948)] = 41711, - [SMALL_STATE(949)] = 41725, - [SMALL_STATE(950)] = 41747, - [SMALL_STATE(951)] = 41765, - [SMALL_STATE(952)] = 41785, - [SMALL_STATE(953)] = 41801, - [SMALL_STATE(954)] = 41821, - [SMALL_STATE(955)] = 41841, - [SMALL_STATE(956)] = 41859, - [SMALL_STATE(957)] = 41881, - [SMALL_STATE(958)] = 41897, - [SMALL_STATE(959)] = 41919, - [SMALL_STATE(960)] = 41933, - [SMALL_STATE(961)] = 41955, - [SMALL_STATE(962)] = 41973, - [SMALL_STATE(963)] = 41987, - [SMALL_STATE(964)] = 42005, - [SMALL_STATE(965)] = 42025, - [SMALL_STATE(966)] = 42045, - [SMALL_STATE(967)] = 42067, - [SMALL_STATE(968)] = 42087, - [SMALL_STATE(969)] = 42107, - [SMALL_STATE(970)] = 42126, - [SMALL_STATE(971)] = 42145, - [SMALL_STATE(972)] = 42164, - [SMALL_STATE(973)] = 42183, - [SMALL_STATE(974)] = 42202, - [SMALL_STATE(975)] = 42221, - [SMALL_STATE(976)] = 42240, - [SMALL_STATE(977)] = 42259, - [SMALL_STATE(978)] = 42278, - [SMALL_STATE(979)] = 42297, - [SMALL_STATE(980)] = 42316, - [SMALL_STATE(981)] = 42327, - [SMALL_STATE(982)] = 42342, - [SMALL_STATE(983)] = 42361, - [SMALL_STATE(984)] = 42380, - [SMALL_STATE(985)] = 42399, - [SMALL_STATE(986)] = 42418, - [SMALL_STATE(987)] = 42437, - [SMALL_STATE(988)] = 42456, - [SMALL_STATE(989)] = 42475, - [SMALL_STATE(990)] = 42494, - [SMALL_STATE(991)] = 42509, - [SMALL_STATE(992)] = 42526, - [SMALL_STATE(993)] = 42545, - [SMALL_STATE(994)] = 42564, - [SMALL_STATE(995)] = 42579, - [SMALL_STATE(996)] = 42596, - [SMALL_STATE(997)] = 42615, - [SMALL_STATE(998)] = 42634, - [SMALL_STATE(999)] = 42653, - [SMALL_STATE(1000)] = 42672, - [SMALL_STATE(1001)] = 42687, - [SMALL_STATE(1002)] = 42698, - [SMALL_STATE(1003)] = 42717, - [SMALL_STATE(1004)] = 42736, - [SMALL_STATE(1005)] = 42753, - [SMALL_STATE(1006)] = 42772, - [SMALL_STATE(1007)] = 42785, - [SMALL_STATE(1008)] = 42802, - [SMALL_STATE(1009)] = 42819, - [SMALL_STATE(1010)] = 42838, - [SMALL_STATE(1011)] = 42857, - [SMALL_STATE(1012)] = 42872, - [SMALL_STATE(1013)] = 42883, - [SMALL_STATE(1014)] = 42900, - [SMALL_STATE(1015)] = 42919, - [SMALL_STATE(1016)] = 42938, - [SMALL_STATE(1017)] = 42957, - [SMALL_STATE(1018)] = 42976, - [SMALL_STATE(1019)] = 42995, - [SMALL_STATE(1020)] = 43014, - [SMALL_STATE(1021)] = 43029, - [SMALL_STATE(1022)] = 43048, - [SMALL_STATE(1023)] = 43067, - [SMALL_STATE(1024)] = 43086, - [SMALL_STATE(1025)] = 43105, - [SMALL_STATE(1026)] = 43124, - [SMALL_STATE(1027)] = 43139, - [SMALL_STATE(1028)] = 43156, - [SMALL_STATE(1029)] = 43173, - [SMALL_STATE(1030)] = 43188, - [SMALL_STATE(1031)] = 43207, - [SMALL_STATE(1032)] = 43220, - [SMALL_STATE(1033)] = 43239, - [SMALL_STATE(1034)] = 43258, - [SMALL_STATE(1035)] = 43277, - [SMALL_STATE(1036)] = 43296, - [SMALL_STATE(1037)] = 43315, - [SMALL_STATE(1038)] = 43330, - [SMALL_STATE(1039)] = 43349, - [SMALL_STATE(1040)] = 43368, - [SMALL_STATE(1041)] = 43387, - [SMALL_STATE(1042)] = 43406, - [SMALL_STATE(1043)] = 43425, - [SMALL_STATE(1044)] = 43442, - [SMALL_STATE(1045)] = 43461, - [SMALL_STATE(1046)] = 43476, - [SMALL_STATE(1047)] = 43495, - [SMALL_STATE(1048)] = 43514, - [SMALL_STATE(1049)] = 43525, - [SMALL_STATE(1050)] = 43536, - [SMALL_STATE(1051)] = 43555, - [SMALL_STATE(1052)] = 43572, - [SMALL_STATE(1053)] = 43583, - [SMALL_STATE(1054)] = 43598, - [SMALL_STATE(1055)] = 43611, - [SMALL_STATE(1056)] = 43630, - [SMALL_STATE(1057)] = 43649, - [SMALL_STATE(1058)] = 43668, - [SMALL_STATE(1059)] = 43678, - [SMALL_STATE(1060)] = 43688, - [SMALL_STATE(1061)] = 43698, - [SMALL_STATE(1062)] = 43712, - [SMALL_STATE(1063)] = 43724, - [SMALL_STATE(1064)] = 43738, - [SMALL_STATE(1065)] = 43754, - [SMALL_STATE(1066)] = 43768, - [SMALL_STATE(1067)] = 43782, - [SMALL_STATE(1068)] = 43798, - [SMALL_STATE(1069)] = 43812, - [SMALL_STATE(1070)] = 43828, - [SMALL_STATE(1071)] = 43844, - [SMALL_STATE(1072)] = 43860, - [SMALL_STATE(1073)] = 43872, - [SMALL_STATE(1074)] = 43888, - [SMALL_STATE(1075)] = 43904, - [SMALL_STATE(1076)] = 43914, - [SMALL_STATE(1077)] = 43924, - [SMALL_STATE(1078)] = 43938, - [SMALL_STATE(1079)] = 43954, - [SMALL_STATE(1080)] = 43968, - [SMALL_STATE(1081)] = 43984, - [SMALL_STATE(1082)] = 44000, - [SMALL_STATE(1083)] = 44016, - [SMALL_STATE(1084)] = 44032, - [SMALL_STATE(1085)] = 44042, - [SMALL_STATE(1086)] = 44058, - [SMALL_STATE(1087)] = 44072, - [SMALL_STATE(1088)] = 44088, - [SMALL_STATE(1089)] = 44102, - [SMALL_STATE(1090)] = 44118, - [SMALL_STATE(1091)] = 44132, - [SMALL_STATE(1092)] = 44148, - [SMALL_STATE(1093)] = 44162, - [SMALL_STATE(1094)] = 44174, - [SMALL_STATE(1095)] = 44188, - [SMALL_STATE(1096)] = 44204, - [SMALL_STATE(1097)] = 44218, - [SMALL_STATE(1098)] = 44234, - [SMALL_STATE(1099)] = 44250, - [SMALL_STATE(1100)] = 44266, - [SMALL_STATE(1101)] = 44282, - [SMALL_STATE(1102)] = 44296, - [SMALL_STATE(1103)] = 44312, - [SMALL_STATE(1104)] = 44324, - [SMALL_STATE(1105)] = 44340, - [SMALL_STATE(1106)] = 44352, - [SMALL_STATE(1107)] = 44368, - [SMALL_STATE(1108)] = 44382, - [SMALL_STATE(1109)] = 44398, - [SMALL_STATE(1110)] = 44412, - [SMALL_STATE(1111)] = 44426, - [SMALL_STATE(1112)] = 44436, - [SMALL_STATE(1113)] = 44446, - [SMALL_STATE(1114)] = 44460, - [SMALL_STATE(1115)] = 44476, - [SMALL_STATE(1116)] = 44492, - [SMALL_STATE(1117)] = 44508, - [SMALL_STATE(1118)] = 44524, - [SMALL_STATE(1119)] = 44540, - [SMALL_STATE(1120)] = 44556, - [SMALL_STATE(1121)] = 44570, - [SMALL_STATE(1122)] = 44582, - [SMALL_STATE(1123)] = 44596, - [SMALL_STATE(1124)] = 44610, - [SMALL_STATE(1125)] = 44622, - [SMALL_STATE(1126)] = 44636, - [SMALL_STATE(1127)] = 44650, - [SMALL_STATE(1128)] = 44664, - [SMALL_STATE(1129)] = 44674, - [SMALL_STATE(1130)] = 44684, - [SMALL_STATE(1131)] = 44698, - [SMALL_STATE(1132)] = 44708, - [SMALL_STATE(1133)] = 44720, - [SMALL_STATE(1134)] = 44736, - [SMALL_STATE(1135)] = 44752, - [SMALL_STATE(1136)] = 44766, - [SMALL_STATE(1137)] = 44782, - [SMALL_STATE(1138)] = 44798, - [SMALL_STATE(1139)] = 44812, - [SMALL_STATE(1140)] = 44824, - [SMALL_STATE(1141)] = 44840, - [SMALL_STATE(1142)] = 44856, - [SMALL_STATE(1143)] = 44872, - [SMALL_STATE(1144)] = 44888, - [SMALL_STATE(1145)] = 44904, - [SMALL_STATE(1146)] = 44920, - [SMALL_STATE(1147)] = 44936, - [SMALL_STATE(1148)] = 44950, - [SMALL_STATE(1149)] = 44966, - [SMALL_STATE(1150)] = 44978, - [SMALL_STATE(1151)] = 44987, - [SMALL_STATE(1152)] = 44996, - [SMALL_STATE(1153)] = 45009, - [SMALL_STATE(1154)] = 45022, - [SMALL_STATE(1155)] = 45031, - [SMALL_STATE(1156)] = 45044, - [SMALL_STATE(1157)] = 45053, - [SMALL_STATE(1158)] = 45066, - [SMALL_STATE(1159)] = 45079, - [SMALL_STATE(1160)] = 45092, - [SMALL_STATE(1161)] = 45103, - [SMALL_STATE(1162)] = 45114, - [SMALL_STATE(1163)] = 45127, - [SMALL_STATE(1164)] = 45136, - [SMALL_STATE(1165)] = 45149, - [SMALL_STATE(1166)] = 45162, - [SMALL_STATE(1167)] = 45175, - [SMALL_STATE(1168)] = 45188, - [SMALL_STATE(1169)] = 45197, - [SMALL_STATE(1170)] = 45210, - [SMALL_STATE(1171)] = 45223, - [SMALL_STATE(1172)] = 45232, - [SMALL_STATE(1173)] = 45245, - [SMALL_STATE(1174)] = 45258, - [SMALL_STATE(1175)] = 45271, - [SMALL_STATE(1176)] = 45284, - [SMALL_STATE(1177)] = 45297, - [SMALL_STATE(1178)] = 45306, - [SMALL_STATE(1179)] = 45319, - [SMALL_STATE(1180)] = 45332, - [SMALL_STATE(1181)] = 45345, - [SMALL_STATE(1182)] = 45358, - [SMALL_STATE(1183)] = 45371, - [SMALL_STATE(1184)] = 45384, - [SMALL_STATE(1185)] = 45397, - [SMALL_STATE(1186)] = 45410, - [SMALL_STATE(1187)] = 45423, - [SMALL_STATE(1188)] = 45436, - [SMALL_STATE(1189)] = 45449, - [SMALL_STATE(1190)] = 45462, - [SMALL_STATE(1191)] = 45475, - [SMALL_STATE(1192)] = 45488, - [SMALL_STATE(1193)] = 45501, - [SMALL_STATE(1194)] = 45514, - [SMALL_STATE(1195)] = 45523, - [SMALL_STATE(1196)] = 45532, - [SMALL_STATE(1197)] = 45545, - [SMALL_STATE(1198)] = 45554, - [SMALL_STATE(1199)] = 45567, - [SMALL_STATE(1200)] = 45580, - [SMALL_STATE(1201)] = 45589, - [SMALL_STATE(1202)] = 45598, - [SMALL_STATE(1203)] = 45611, - [SMALL_STATE(1204)] = 45624, - [SMALL_STATE(1205)] = 45637, - [SMALL_STATE(1206)] = 45650, - [SMALL_STATE(1207)] = 45663, - [SMALL_STATE(1208)] = 45672, - [SMALL_STATE(1209)] = 45685, - [SMALL_STATE(1210)] = 45698, - [SMALL_STATE(1211)] = 45711, - [SMALL_STATE(1212)] = 45724, - [SMALL_STATE(1213)] = 45737, - [SMALL_STATE(1214)] = 45750, - [SMALL_STATE(1215)] = 45763, - [SMALL_STATE(1216)] = 45776, - [SMALL_STATE(1217)] = 45789, - [SMALL_STATE(1218)] = 45798, - [SMALL_STATE(1219)] = 45811, - [SMALL_STATE(1220)] = 45824, - [SMALL_STATE(1221)] = 45837, - [SMALL_STATE(1222)] = 45846, - [SMALL_STATE(1223)] = 45859, - [SMALL_STATE(1224)] = 45872, - [SMALL_STATE(1225)] = 45881, - [SMALL_STATE(1226)] = 45894, - [SMALL_STATE(1227)] = 45907, - [SMALL_STATE(1228)] = 45920, - [SMALL_STATE(1229)] = 45933, - [SMALL_STATE(1230)] = 45946, - [SMALL_STATE(1231)] = 45959, - [SMALL_STATE(1232)] = 45972, - [SMALL_STATE(1233)] = 45985, - [SMALL_STATE(1234)] = 45998, - [SMALL_STATE(1235)] = 46007, - [SMALL_STATE(1236)] = 46020, - [SMALL_STATE(1237)] = 46033, - [SMALL_STATE(1238)] = 46046, - [SMALL_STATE(1239)] = 46059, - [SMALL_STATE(1240)] = 46070, - [SMALL_STATE(1241)] = 46083, - [SMALL_STATE(1242)] = 46094, - [SMALL_STATE(1243)] = 46107, - [SMALL_STATE(1244)] = 46120, - [SMALL_STATE(1245)] = 46133, - [SMALL_STATE(1246)] = 46142, - [SMALL_STATE(1247)] = 46151, - [SMALL_STATE(1248)] = 46164, - [SMALL_STATE(1249)] = 46173, - [SMALL_STATE(1250)] = 46182, - [SMALL_STATE(1251)] = 46191, - [SMALL_STATE(1252)] = 46204, - [SMALL_STATE(1253)] = 46217, - [SMALL_STATE(1254)] = 46226, - [SMALL_STATE(1255)] = 46237, - [SMALL_STATE(1256)] = 46250, - [SMALL_STATE(1257)] = 46259, - [SMALL_STATE(1258)] = 46268, - [SMALL_STATE(1259)] = 46281, - [SMALL_STATE(1260)] = 46292, - [SMALL_STATE(1261)] = 46305, - [SMALL_STATE(1262)] = 46314, - [SMALL_STATE(1263)] = 46327, - [SMALL_STATE(1264)] = 46340, - [SMALL_STATE(1265)] = 46349, - [SMALL_STATE(1266)] = 46362, - [SMALL_STATE(1267)] = 46375, - [SMALL_STATE(1268)] = 46388, - [SMALL_STATE(1269)] = 46401, - [SMALL_STATE(1270)] = 46414, - [SMALL_STATE(1271)] = 46427, - [SMALL_STATE(1272)] = 46440, - [SMALL_STATE(1273)] = 46453, - [SMALL_STATE(1274)] = 46466, - [SMALL_STATE(1275)] = 46479, - [SMALL_STATE(1276)] = 46492, - [SMALL_STATE(1277)] = 46501, - [SMALL_STATE(1278)] = 46510, - [SMALL_STATE(1279)] = 46519, - [SMALL_STATE(1280)] = 46528, - [SMALL_STATE(1281)] = 46537, - [SMALL_STATE(1282)] = 46550, - [SMALL_STATE(1283)] = 46563, - [SMALL_STATE(1284)] = 46576, - [SMALL_STATE(1285)] = 46585, - [SMALL_STATE(1286)] = 46594, - [SMALL_STATE(1287)] = 46607, - [SMALL_STATE(1288)] = 46620, - [SMALL_STATE(1289)] = 46629, - [SMALL_STATE(1290)] = 46640, - [SMALL_STATE(1291)] = 46653, - [SMALL_STATE(1292)] = 46662, - [SMALL_STATE(1293)] = 46675, - [SMALL_STATE(1294)] = 46684, - [SMALL_STATE(1295)] = 46693, - [SMALL_STATE(1296)] = 46706, - [SMALL_STATE(1297)] = 46715, - [SMALL_STATE(1298)] = 46728, - [SMALL_STATE(1299)] = 46739, - [SMALL_STATE(1300)] = 46752, - [SMALL_STATE(1301)] = 46763, - [SMALL_STATE(1302)] = 46776, - [SMALL_STATE(1303)] = 46785, - [SMALL_STATE(1304)] = 46794, - [SMALL_STATE(1305)] = 46807, - [SMALL_STATE(1306)] = 46820, - [SMALL_STATE(1307)] = 46833, - [SMALL_STATE(1308)] = 46846, - [SMALL_STATE(1309)] = 46859, - [SMALL_STATE(1310)] = 46868, - [SMALL_STATE(1311)] = 46881, - [SMALL_STATE(1312)] = 46892, - [SMALL_STATE(1313)] = 46905, - [SMALL_STATE(1314)] = 46918, - [SMALL_STATE(1315)] = 46927, - [SMALL_STATE(1316)] = 46940, - [SMALL_STATE(1317)] = 46949, - [SMALL_STATE(1318)] = 46962, - [SMALL_STATE(1319)] = 46975, - [SMALL_STATE(1320)] = 46988, - [SMALL_STATE(1321)] = 47001, - [SMALL_STATE(1322)] = 47014, - [SMALL_STATE(1323)] = 47027, - [SMALL_STATE(1324)] = 47040, - [SMALL_STATE(1325)] = 47049, - [SMALL_STATE(1326)] = 47058, - [SMALL_STATE(1327)] = 47067, - [SMALL_STATE(1328)] = 47080, - [SMALL_STATE(1329)] = 47089, - [SMALL_STATE(1330)] = 47098, - [SMALL_STATE(1331)] = 47111, - [SMALL_STATE(1332)] = 47124, - [SMALL_STATE(1333)] = 47133, - [SMALL_STATE(1334)] = 47146, - [SMALL_STATE(1335)] = 47159, - [SMALL_STATE(1336)] = 47168, - [SMALL_STATE(1337)] = 47177, - [SMALL_STATE(1338)] = 47190, - [SMALL_STATE(1339)] = 47203, - [SMALL_STATE(1340)] = 47216, - [SMALL_STATE(1341)] = 47229, - [SMALL_STATE(1342)] = 47238, - [SMALL_STATE(1343)] = 47251, - [SMALL_STATE(1344)] = 47264, - [SMALL_STATE(1345)] = 47277, - [SMALL_STATE(1346)] = 47290, - [SMALL_STATE(1347)] = 47303, - [SMALL_STATE(1348)] = 47312, - [SMALL_STATE(1349)] = 47321, - [SMALL_STATE(1350)] = 47331, - [SMALL_STATE(1351)] = 47339, - [SMALL_STATE(1352)] = 47347, - [SMALL_STATE(1353)] = 47355, - [SMALL_STATE(1354)] = 47363, - [SMALL_STATE(1355)] = 47371, - [SMALL_STATE(1356)] = 47381, - [SMALL_STATE(1357)] = 47391, - [SMALL_STATE(1358)] = 47401, - [SMALL_STATE(1359)] = 47411, - [SMALL_STATE(1360)] = 47419, - [SMALL_STATE(1361)] = 47429, - [SMALL_STATE(1362)] = 47437, - [SMALL_STATE(1363)] = 47447, - [SMALL_STATE(1364)] = 47457, - [SMALL_STATE(1365)] = 47467, - [SMALL_STATE(1366)] = 47475, - [SMALL_STATE(1367)] = 47483, - [SMALL_STATE(1368)] = 47493, - [SMALL_STATE(1369)] = 47501, - [SMALL_STATE(1370)] = 47511, - [SMALL_STATE(1371)] = 47519, - [SMALL_STATE(1372)] = 47527, - [SMALL_STATE(1373)] = 47537, - [SMALL_STATE(1374)] = 47547, - [SMALL_STATE(1375)] = 47555, - [SMALL_STATE(1376)] = 47563, - [SMALL_STATE(1377)] = 47571, - [SMALL_STATE(1378)] = 47579, - [SMALL_STATE(1379)] = 47589, - [SMALL_STATE(1380)] = 47597, - [SMALL_STATE(1381)] = 47605, - [SMALL_STATE(1382)] = 47615, - [SMALL_STATE(1383)] = 47623, - [SMALL_STATE(1384)] = 47633, - [SMALL_STATE(1385)] = 47643, - [SMALL_STATE(1386)] = 47651, - [SMALL_STATE(1387)] = 47661, - [SMALL_STATE(1388)] = 47671, - [SMALL_STATE(1389)] = 47681, - [SMALL_STATE(1390)] = 47689, - [SMALL_STATE(1391)] = 47699, - [SMALL_STATE(1392)] = 47707, - [SMALL_STATE(1393)] = 47715, - [SMALL_STATE(1394)] = 47725, - [SMALL_STATE(1395)] = 47733, - [SMALL_STATE(1396)] = 47743, - [SMALL_STATE(1397)] = 47753, - [SMALL_STATE(1398)] = 47761, - [SMALL_STATE(1399)] = 47771, - [SMALL_STATE(1400)] = 47779, - [SMALL_STATE(1401)] = 47789, - [SMALL_STATE(1402)] = 47797, - [SMALL_STATE(1403)] = 47805, - [SMALL_STATE(1404)] = 47813, - [SMALL_STATE(1405)] = 47821, - [SMALL_STATE(1406)] = 47829, - [SMALL_STATE(1407)] = 47837, - [SMALL_STATE(1408)] = 47847, - [SMALL_STATE(1409)] = 47855, - [SMALL_STATE(1410)] = 47863, - [SMALL_STATE(1411)] = 47871, - [SMALL_STATE(1412)] = 47879, - [SMALL_STATE(1413)] = 47889, - [SMALL_STATE(1414)] = 47899, - [SMALL_STATE(1415)] = 47907, - [SMALL_STATE(1416)] = 47915, - [SMALL_STATE(1417)] = 47923, - [SMALL_STATE(1418)] = 47933, - [SMALL_STATE(1419)] = 47943, - [SMALL_STATE(1420)] = 47953, - [SMALL_STATE(1421)] = 47963, - [SMALL_STATE(1422)] = 47973, - [SMALL_STATE(1423)] = 47981, - [SMALL_STATE(1424)] = 47991, - [SMALL_STATE(1425)] = 47999, - [SMALL_STATE(1426)] = 48009, - [SMALL_STATE(1427)] = 48017, - [SMALL_STATE(1428)] = 48027, - [SMALL_STATE(1429)] = 48035, - [SMALL_STATE(1430)] = 48043, - [SMALL_STATE(1431)] = 48051, - [SMALL_STATE(1432)] = 48061, - [SMALL_STATE(1433)] = 48071, - [SMALL_STATE(1434)] = 48081, - [SMALL_STATE(1435)] = 48089, - [SMALL_STATE(1436)] = 48099, - [SMALL_STATE(1437)] = 48109, - [SMALL_STATE(1438)] = 48117, - [SMALL_STATE(1439)] = 48127, - [SMALL_STATE(1440)] = 48137, - [SMALL_STATE(1441)] = 48147, - [SMALL_STATE(1442)] = 48155, - [SMALL_STATE(1443)] = 48163, - [SMALL_STATE(1444)] = 48173, - [SMALL_STATE(1445)] = 48181, - [SMALL_STATE(1446)] = 48191, - [SMALL_STATE(1447)] = 48199, - [SMALL_STATE(1448)] = 48207, - [SMALL_STATE(1449)] = 48215, - [SMALL_STATE(1450)] = 48225, - [SMALL_STATE(1451)] = 48235, - [SMALL_STATE(1452)] = 48245, - [SMALL_STATE(1453)] = 48253, - [SMALL_STATE(1454)] = 48261, - [SMALL_STATE(1455)] = 48269, - [SMALL_STATE(1456)] = 48277, - [SMALL_STATE(1457)] = 48287, - [SMALL_STATE(1458)] = 48295, - [SMALL_STATE(1459)] = 48305, - [SMALL_STATE(1460)] = 48315, - [SMALL_STATE(1461)] = 48325, - [SMALL_STATE(1462)] = 48333, - [SMALL_STATE(1463)] = 48341, - [SMALL_STATE(1464)] = 48351, - [SMALL_STATE(1465)] = 48359, - [SMALL_STATE(1466)] = 48367, - [SMALL_STATE(1467)] = 48375, - [SMALL_STATE(1468)] = 48385, - [SMALL_STATE(1469)] = 48395, - [SMALL_STATE(1470)] = 48403, - [SMALL_STATE(1471)] = 48411, - [SMALL_STATE(1472)] = 48419, - [SMALL_STATE(1473)] = 48429, - [SMALL_STATE(1474)] = 48437, - [SMALL_STATE(1475)] = 48447, - [SMALL_STATE(1476)] = 48455, - [SMALL_STATE(1477)] = 48465, - [SMALL_STATE(1478)] = 48475, - [SMALL_STATE(1479)] = 48483, - [SMALL_STATE(1480)] = 48493, - [SMALL_STATE(1481)] = 48501, - [SMALL_STATE(1482)] = 48511, - [SMALL_STATE(1483)] = 48519, - [SMALL_STATE(1484)] = 48529, - [SMALL_STATE(1485)] = 48537, - [SMALL_STATE(1486)] = 48545, - [SMALL_STATE(1487)] = 48553, - [SMALL_STATE(1488)] = 48563, - [SMALL_STATE(1489)] = 48571, - [SMALL_STATE(1490)] = 48579, - [SMALL_STATE(1491)] = 48589, - [SMALL_STATE(1492)] = 48599, - [SMALL_STATE(1493)] = 48607, - [SMALL_STATE(1494)] = 48617, - [SMALL_STATE(1495)] = 48627, - [SMALL_STATE(1496)] = 48637, - [SMALL_STATE(1497)] = 48647, - [SMALL_STATE(1498)] = 48657, - [SMALL_STATE(1499)] = 48665, - [SMALL_STATE(1500)] = 48675, - [SMALL_STATE(1501)] = 48685, - [SMALL_STATE(1502)] = 48695, - [SMALL_STATE(1503)] = 48705, - [SMALL_STATE(1504)] = 48715, - [SMALL_STATE(1505)] = 48723, - [SMALL_STATE(1506)] = 48731, - [SMALL_STATE(1507)] = 48738, - [SMALL_STATE(1508)] = 48745, - [SMALL_STATE(1509)] = 48752, - [SMALL_STATE(1510)] = 48759, - [SMALL_STATE(1511)] = 48766, - [SMALL_STATE(1512)] = 48773, - [SMALL_STATE(1513)] = 48780, - [SMALL_STATE(1514)] = 48787, - [SMALL_STATE(1515)] = 48794, - [SMALL_STATE(1516)] = 48801, - [SMALL_STATE(1517)] = 48808, - [SMALL_STATE(1518)] = 48815, - [SMALL_STATE(1519)] = 48822, - [SMALL_STATE(1520)] = 48829, - [SMALL_STATE(1521)] = 48836, - [SMALL_STATE(1522)] = 48843, - [SMALL_STATE(1523)] = 48850, - [SMALL_STATE(1524)] = 48857, - [SMALL_STATE(1525)] = 48864, - [SMALL_STATE(1526)] = 48871, - [SMALL_STATE(1527)] = 48878, - [SMALL_STATE(1528)] = 48885, - [SMALL_STATE(1529)] = 48892, - [SMALL_STATE(1530)] = 48899, - [SMALL_STATE(1531)] = 48906, - [SMALL_STATE(1532)] = 48913, - [SMALL_STATE(1533)] = 48920, - [SMALL_STATE(1534)] = 48927, - [SMALL_STATE(1535)] = 48934, - [SMALL_STATE(1536)] = 48941, - [SMALL_STATE(1537)] = 48948, - [SMALL_STATE(1538)] = 48955, - [SMALL_STATE(1539)] = 48962, - [SMALL_STATE(1540)] = 48969, - [SMALL_STATE(1541)] = 48976, - [SMALL_STATE(1542)] = 48983, - [SMALL_STATE(1543)] = 48990, - [SMALL_STATE(1544)] = 48997, - [SMALL_STATE(1545)] = 49004, - [SMALL_STATE(1546)] = 49011, - [SMALL_STATE(1547)] = 49018, - [SMALL_STATE(1548)] = 49025, - [SMALL_STATE(1549)] = 49032, - [SMALL_STATE(1550)] = 49039, - [SMALL_STATE(1551)] = 49046, - [SMALL_STATE(1552)] = 49053, - [SMALL_STATE(1553)] = 49060, - [SMALL_STATE(1554)] = 49067, - [SMALL_STATE(1555)] = 49074, - [SMALL_STATE(1556)] = 49081, - [SMALL_STATE(1557)] = 49088, - [SMALL_STATE(1558)] = 49095, - [SMALL_STATE(1559)] = 49102, - [SMALL_STATE(1560)] = 49109, - [SMALL_STATE(1561)] = 49116, - [SMALL_STATE(1562)] = 49123, - [SMALL_STATE(1563)] = 49130, - [SMALL_STATE(1564)] = 49137, - [SMALL_STATE(1565)] = 49144, - [SMALL_STATE(1566)] = 49151, - [SMALL_STATE(1567)] = 49158, - [SMALL_STATE(1568)] = 49165, - [SMALL_STATE(1569)] = 49172, - [SMALL_STATE(1570)] = 49179, - [SMALL_STATE(1571)] = 49186, - [SMALL_STATE(1572)] = 49193, - [SMALL_STATE(1573)] = 49200, - [SMALL_STATE(1574)] = 49207, - [SMALL_STATE(1575)] = 49214, - [SMALL_STATE(1576)] = 49221, - [SMALL_STATE(1577)] = 49228, - [SMALL_STATE(1578)] = 49235, - [SMALL_STATE(1579)] = 49242, - [SMALL_STATE(1580)] = 49249, - [SMALL_STATE(1581)] = 49256, - [SMALL_STATE(1582)] = 49263, - [SMALL_STATE(1583)] = 49270, - [SMALL_STATE(1584)] = 49277, - [SMALL_STATE(1585)] = 49284, - [SMALL_STATE(1586)] = 49291, - [SMALL_STATE(1587)] = 49298, - [SMALL_STATE(1588)] = 49305, - [SMALL_STATE(1589)] = 49312, - [SMALL_STATE(1590)] = 49319, - [SMALL_STATE(1591)] = 49326, - [SMALL_STATE(1592)] = 49333, - [SMALL_STATE(1593)] = 49340, - [SMALL_STATE(1594)] = 49347, - [SMALL_STATE(1595)] = 49354, - [SMALL_STATE(1596)] = 49361, - [SMALL_STATE(1597)] = 49368, - [SMALL_STATE(1598)] = 49375, - [SMALL_STATE(1599)] = 49382, - [SMALL_STATE(1600)] = 49389, - [SMALL_STATE(1601)] = 49396, - [SMALL_STATE(1602)] = 49403, - [SMALL_STATE(1603)] = 49410, - [SMALL_STATE(1604)] = 49417, - [SMALL_STATE(1605)] = 49424, - [SMALL_STATE(1606)] = 49431, - [SMALL_STATE(1607)] = 49438, - [SMALL_STATE(1608)] = 49445, - [SMALL_STATE(1609)] = 49452, - [SMALL_STATE(1610)] = 49459, - [SMALL_STATE(1611)] = 49466, - [SMALL_STATE(1612)] = 49473, - [SMALL_STATE(1613)] = 49480, - [SMALL_STATE(1614)] = 49487, - [SMALL_STATE(1615)] = 49494, - [SMALL_STATE(1616)] = 49501, - [SMALL_STATE(1617)] = 49508, - [SMALL_STATE(1618)] = 49515, - [SMALL_STATE(1619)] = 49522, - [SMALL_STATE(1620)] = 49529, - [SMALL_STATE(1621)] = 49536, - [SMALL_STATE(1622)] = 49543, - [SMALL_STATE(1623)] = 49550, - [SMALL_STATE(1624)] = 49557, - [SMALL_STATE(1625)] = 49564, - [SMALL_STATE(1626)] = 49571, - [SMALL_STATE(1627)] = 49578, - [SMALL_STATE(1628)] = 49585, - [SMALL_STATE(1629)] = 49592, - [SMALL_STATE(1630)] = 49599, - [SMALL_STATE(1631)] = 49606, - [SMALL_STATE(1632)] = 49613, - [SMALL_STATE(1633)] = 49620, - [SMALL_STATE(1634)] = 49627, - [SMALL_STATE(1635)] = 49634, - [SMALL_STATE(1636)] = 49641, - [SMALL_STATE(1637)] = 49648, - [SMALL_STATE(1638)] = 49655, - [SMALL_STATE(1639)] = 49662, - [SMALL_STATE(1640)] = 49669, - [SMALL_STATE(1641)] = 49676, - [SMALL_STATE(1642)] = 49683, - [SMALL_STATE(1643)] = 49690, - [SMALL_STATE(1644)] = 49697, - [SMALL_STATE(1645)] = 49704, - [SMALL_STATE(1646)] = 49711, - [SMALL_STATE(1647)] = 49718, - [SMALL_STATE(1648)] = 49725, - [SMALL_STATE(1649)] = 49732, - [SMALL_STATE(1650)] = 49739, - [SMALL_STATE(1651)] = 49746, - [SMALL_STATE(1652)] = 49753, - [SMALL_STATE(1653)] = 49760, - [SMALL_STATE(1654)] = 49767, - [SMALL_STATE(1655)] = 49774, - [SMALL_STATE(1656)] = 49781, - [SMALL_STATE(1657)] = 49788, - [SMALL_STATE(1658)] = 49795, - [SMALL_STATE(1659)] = 49802, - [SMALL_STATE(1660)] = 49809, - [SMALL_STATE(1661)] = 49816, - [SMALL_STATE(1662)] = 49823, - [SMALL_STATE(1663)] = 49830, - [SMALL_STATE(1664)] = 49837, - [SMALL_STATE(1665)] = 49844, - [SMALL_STATE(1666)] = 49851, - [SMALL_STATE(1667)] = 49858, - [SMALL_STATE(1668)] = 49865, - [SMALL_STATE(1669)] = 49872, - [SMALL_STATE(1670)] = 49879, - [SMALL_STATE(1671)] = 49886, - [SMALL_STATE(1672)] = 49893, - [SMALL_STATE(1673)] = 49900, - [SMALL_STATE(1674)] = 49907, - [SMALL_STATE(1675)] = 49914, - [SMALL_STATE(1676)] = 49921, - [SMALL_STATE(1677)] = 49928, - [SMALL_STATE(1678)] = 49935, - [SMALL_STATE(1679)] = 49942, - [SMALL_STATE(1680)] = 49949, - [SMALL_STATE(1681)] = 49956, - [SMALL_STATE(1682)] = 49963, - [SMALL_STATE(1683)] = 49970, - [SMALL_STATE(1684)] = 49977, - [SMALL_STATE(1685)] = 49984, - [SMALL_STATE(1686)] = 49991, - [SMALL_STATE(1687)] = 49998, - [SMALL_STATE(1688)] = 50005, - [SMALL_STATE(1689)] = 50012, - [SMALL_STATE(1690)] = 50019, - [SMALL_STATE(1691)] = 50026, - [SMALL_STATE(1692)] = 50033, - [SMALL_STATE(1693)] = 50040, - [SMALL_STATE(1694)] = 50047, - [SMALL_STATE(1695)] = 50054, - [SMALL_STATE(1696)] = 50061, - [SMALL_STATE(1697)] = 50068, - [SMALL_STATE(1698)] = 50075, - [SMALL_STATE(1699)] = 50082, - [SMALL_STATE(1700)] = 50089, - [SMALL_STATE(1701)] = 50096, - [SMALL_STATE(1702)] = 50103, - [SMALL_STATE(1703)] = 50110, - [SMALL_STATE(1704)] = 50117, - [SMALL_STATE(1705)] = 50124, - [SMALL_STATE(1706)] = 50131, - [SMALL_STATE(1707)] = 50138, - [SMALL_STATE(1708)] = 50145, - [SMALL_STATE(1709)] = 50152, - [SMALL_STATE(1710)] = 50159, - [SMALL_STATE(1711)] = 50166, - [SMALL_STATE(1712)] = 50173, - [SMALL_STATE(1713)] = 50180, - [SMALL_STATE(1714)] = 50187, - [SMALL_STATE(1715)] = 50194, - [SMALL_STATE(1716)] = 50201, - [SMALL_STATE(1717)] = 50208, - [SMALL_STATE(1718)] = 50215, - [SMALL_STATE(1719)] = 50222, - [SMALL_STATE(1720)] = 50229, - [SMALL_STATE(1721)] = 50236, - [SMALL_STATE(1722)] = 50243, - [SMALL_STATE(1723)] = 50250, - [SMALL_STATE(1724)] = 50257, - [SMALL_STATE(1725)] = 50264, - [SMALL_STATE(1726)] = 50271, - [SMALL_STATE(1727)] = 50278, - [SMALL_STATE(1728)] = 50285, - [SMALL_STATE(1729)] = 50292, - [SMALL_STATE(1730)] = 50299, - [SMALL_STATE(1731)] = 50306, - [SMALL_STATE(1732)] = 50313, - [SMALL_STATE(1733)] = 50320, - [SMALL_STATE(1734)] = 50327, - [SMALL_STATE(1735)] = 50334, - [SMALL_STATE(1736)] = 50341, - [SMALL_STATE(1737)] = 50348, - [SMALL_STATE(1738)] = 50355, - [SMALL_STATE(1739)] = 50362, - [SMALL_STATE(1740)] = 50369, - [SMALL_STATE(1741)] = 50376, - [SMALL_STATE(1742)] = 50383, - [SMALL_STATE(1743)] = 50390, - [SMALL_STATE(1744)] = 50397, - [SMALL_STATE(1745)] = 50404, - [SMALL_STATE(1746)] = 50411, - [SMALL_STATE(1747)] = 50418, - [SMALL_STATE(1748)] = 50425, - [SMALL_STATE(1749)] = 50432, - [SMALL_STATE(1750)] = 50439, - [SMALL_STATE(1751)] = 50446, - [SMALL_STATE(1752)] = 50453, - [SMALL_STATE(1753)] = 50460, - [SMALL_STATE(1754)] = 50467, - [SMALL_STATE(1755)] = 50474, - [SMALL_STATE(1756)] = 50481, - [SMALL_STATE(1757)] = 50488, - [SMALL_STATE(1758)] = 50495, - [SMALL_STATE(1759)] = 50502, - [SMALL_STATE(1760)] = 50509, - [SMALL_STATE(1761)] = 50516, - [SMALL_STATE(1762)] = 50523, - [SMALL_STATE(1763)] = 50530, - [SMALL_STATE(1764)] = 50537, - [SMALL_STATE(1765)] = 50544, - [SMALL_STATE(1766)] = 50551, - [SMALL_STATE(1767)] = 50558, - [SMALL_STATE(1768)] = 50565, - [SMALL_STATE(1769)] = 50572, - [SMALL_STATE(1770)] = 50579, - [SMALL_STATE(1771)] = 50586, - [SMALL_STATE(1772)] = 50593, - [SMALL_STATE(1773)] = 50600, - [SMALL_STATE(1774)] = 50607, - [SMALL_STATE(1775)] = 50614, - [SMALL_STATE(1776)] = 50621, - [SMALL_STATE(1777)] = 50628, - [SMALL_STATE(1778)] = 50635, - [SMALL_STATE(1779)] = 50642, - [SMALL_STATE(1780)] = 50649, - [SMALL_STATE(1781)] = 50656, - [SMALL_STATE(1782)] = 50663, - [SMALL_STATE(1783)] = 50670, - [SMALL_STATE(1784)] = 50677, - [SMALL_STATE(1785)] = 50684, - [SMALL_STATE(1786)] = 50691, - [SMALL_STATE(1787)] = 50698, - [SMALL_STATE(1788)] = 50705, - [SMALL_STATE(1789)] = 50712, - [SMALL_STATE(1790)] = 50719, - [SMALL_STATE(1791)] = 50726, - [SMALL_STATE(1792)] = 50733, - [SMALL_STATE(1793)] = 50740, - [SMALL_STATE(1794)] = 50747, - [SMALL_STATE(1795)] = 50754, - [SMALL_STATE(1796)] = 50761, - [SMALL_STATE(1797)] = 50768, - [SMALL_STATE(1798)] = 50775, - [SMALL_STATE(1799)] = 50782, - [SMALL_STATE(1800)] = 50789, - [SMALL_STATE(1801)] = 50796, - [SMALL_STATE(1802)] = 50803, - [SMALL_STATE(1803)] = 50810, - [SMALL_STATE(1804)] = 50817, - [SMALL_STATE(1805)] = 50824, - [SMALL_STATE(1806)] = 50831, - [SMALL_STATE(1807)] = 50838, - [SMALL_STATE(1808)] = 50845, - [SMALL_STATE(1809)] = 50852, - [SMALL_STATE(1810)] = 50859, - [SMALL_STATE(1811)] = 50866, - [SMALL_STATE(1812)] = 50873, - [SMALL_STATE(1813)] = 50880, - [SMALL_STATE(1814)] = 50887, - [SMALL_STATE(1815)] = 50894, - [SMALL_STATE(1816)] = 50901, - [SMALL_STATE(1817)] = 50908, - [SMALL_STATE(1818)] = 50915, - [SMALL_STATE(1819)] = 50922, - [SMALL_STATE(1820)] = 50929, - [SMALL_STATE(1821)] = 50936, - [SMALL_STATE(1822)] = 50943, - [SMALL_STATE(1823)] = 50950, - [SMALL_STATE(1824)] = 50957, - [SMALL_STATE(1825)] = 50964, - [SMALL_STATE(1826)] = 50971, - [SMALL_STATE(1827)] = 50978, - [SMALL_STATE(1828)] = 50985, - [SMALL_STATE(1829)] = 50992, - [SMALL_STATE(1830)] = 50999, - [SMALL_STATE(1831)] = 51006, - [SMALL_STATE(1832)] = 51013, - [SMALL_STATE(1833)] = 51020, - [SMALL_STATE(1834)] = 51027, - [SMALL_STATE(1835)] = 51034, - [SMALL_STATE(1836)] = 51041, - [SMALL_STATE(1837)] = 51048, - [SMALL_STATE(1838)] = 51055, - [SMALL_STATE(1839)] = 51062, - [SMALL_STATE(1840)] = 51069, - [SMALL_STATE(1841)] = 51076, - [SMALL_STATE(1842)] = 51083, - [SMALL_STATE(1843)] = 51090, - [SMALL_STATE(1844)] = 51097, - [SMALL_STATE(1845)] = 51104, - [SMALL_STATE(1846)] = 51111, - [SMALL_STATE(1847)] = 51118, - [SMALL_STATE(1848)] = 51125, - [SMALL_STATE(1849)] = 51132, - [SMALL_STATE(1850)] = 51139, - [SMALL_STATE(1851)] = 51146, - [SMALL_STATE(1852)] = 51153, - [SMALL_STATE(1853)] = 51160, - [SMALL_STATE(1854)] = 51167, - [SMALL_STATE(1855)] = 51174, - [SMALL_STATE(1856)] = 51181, - [SMALL_STATE(1857)] = 51188, - [SMALL_STATE(1858)] = 51195, - [SMALL_STATE(1859)] = 51202, - [SMALL_STATE(1860)] = 51209, - [SMALL_STATE(1861)] = 51216, - [SMALL_STATE(1862)] = 51223, - [SMALL_STATE(1863)] = 51230, - [SMALL_STATE(1864)] = 51237, - [SMALL_STATE(1865)] = 51244, - [SMALL_STATE(1866)] = 51251, - [SMALL_STATE(1867)] = 51258, - [SMALL_STATE(1868)] = 51265, - [SMALL_STATE(1869)] = 51272, - [SMALL_STATE(1870)] = 51279, - [SMALL_STATE(1871)] = 51286, - [SMALL_STATE(1872)] = 51293, - [SMALL_STATE(1873)] = 51300, - [SMALL_STATE(1874)] = 51307, - [SMALL_STATE(1875)] = 51314, - [SMALL_STATE(1876)] = 51321, - [SMALL_STATE(1877)] = 51328, - [SMALL_STATE(1878)] = 51335, - [SMALL_STATE(1879)] = 51342, - [SMALL_STATE(1880)] = 51349, - [SMALL_STATE(1881)] = 51356, - [SMALL_STATE(1882)] = 51363, - [SMALL_STATE(1883)] = 51370, - [SMALL_STATE(1884)] = 51377, - [SMALL_STATE(1885)] = 51384, - [SMALL_STATE(1886)] = 51391, - [SMALL_STATE(1887)] = 51398, - [SMALL_STATE(1888)] = 51405, - [SMALL_STATE(1889)] = 51412, - [SMALL_STATE(1890)] = 51419, - [SMALL_STATE(1891)] = 51426, - [SMALL_STATE(1892)] = 51433, - [SMALL_STATE(1893)] = 51440, - [SMALL_STATE(1894)] = 51447, - [SMALL_STATE(1895)] = 51454, - [SMALL_STATE(1896)] = 51461, - [SMALL_STATE(1897)] = 51468, - [SMALL_STATE(1898)] = 51475, - [SMALL_STATE(1899)] = 51482, - [SMALL_STATE(1900)] = 51489, - [SMALL_STATE(1901)] = 51496, - [SMALL_STATE(1902)] = 51503, - [SMALL_STATE(1903)] = 51510, - [SMALL_STATE(1904)] = 51517, - [SMALL_STATE(1905)] = 51524, - [SMALL_STATE(1906)] = 51531, - [SMALL_STATE(1907)] = 51538, - [SMALL_STATE(1908)] = 51545, - [SMALL_STATE(1909)] = 51552, - [SMALL_STATE(1910)] = 51559, - [SMALL_STATE(1911)] = 51566, - [SMALL_STATE(1912)] = 51573, - [SMALL_STATE(1913)] = 51580, - [SMALL_STATE(1914)] = 51587, - [SMALL_STATE(1915)] = 51594, - [SMALL_STATE(1916)] = 51601, - [SMALL_STATE(1917)] = 51608, - [SMALL_STATE(1918)] = 51615, - [SMALL_STATE(1919)] = 51622, - [SMALL_STATE(1920)] = 51629, - [SMALL_STATE(1921)] = 51636, - [SMALL_STATE(1922)] = 51643, - [SMALL_STATE(1923)] = 51650, - [SMALL_STATE(1924)] = 51657, - [SMALL_STATE(1925)] = 51664, - [SMALL_STATE(1926)] = 51671, - [SMALL_STATE(1927)] = 51678, - [SMALL_STATE(1928)] = 51685, - [SMALL_STATE(1929)] = 51692, - [SMALL_STATE(1930)] = 51699, - [SMALL_STATE(1931)] = 51706, - [SMALL_STATE(1932)] = 51713, - [SMALL_STATE(1933)] = 51720, - [SMALL_STATE(1934)] = 51727, - [SMALL_STATE(1935)] = 51734, - [SMALL_STATE(1936)] = 51741, - [SMALL_STATE(1937)] = 51748, - [SMALL_STATE(1938)] = 51755, - [SMALL_STATE(1939)] = 51762, - [SMALL_STATE(1940)] = 51769, - [SMALL_STATE(1941)] = 51776, - [SMALL_STATE(1942)] = 51783, - [SMALL_STATE(1943)] = 51790, - [SMALL_STATE(1944)] = 51797, - [SMALL_STATE(1945)] = 51804, - [SMALL_STATE(1946)] = 51811, - [SMALL_STATE(1947)] = 51818, - [SMALL_STATE(1948)] = 51825, - [SMALL_STATE(1949)] = 51832, - [SMALL_STATE(1950)] = 51839, - [SMALL_STATE(1951)] = 51846, - [SMALL_STATE(1952)] = 51853, - [SMALL_STATE(1953)] = 51860, - [SMALL_STATE(1954)] = 51867, - [SMALL_STATE(1955)] = 51874, - [SMALL_STATE(1956)] = 51881, - [SMALL_STATE(1957)] = 51888, - [SMALL_STATE(1958)] = 51895, - [SMALL_STATE(1959)] = 51902, - [SMALL_STATE(1960)] = 51909, - [SMALL_STATE(1961)] = 51916, - [SMALL_STATE(1962)] = 51923, + [SMALL_STATE(836)] = 39434, + [SMALL_STATE(837)] = 39452, + [SMALL_STATE(838)] = 39483, + [SMALL_STATE(839)] = 39510, + [SMALL_STATE(840)] = 39541, + [SMALL_STATE(841)] = 39568, + [SMALL_STATE(842)] = 39595, + [SMALL_STATE(843)] = 39626, + [SMALL_STATE(844)] = 39653, + [SMALL_STATE(845)] = 39680, + [SMALL_STATE(846)] = 39707, + [SMALL_STATE(847)] = 39734, + [SMALL_STATE(848)] = 39759, + [SMALL_STATE(849)] = 39788, + [SMALL_STATE(850)] = 39815, + [SMALL_STATE(851)] = 39842, + [SMALL_STATE(852)] = 39871, + [SMALL_STATE(853)] = 39887, + [SMALL_STATE(854)] = 39903, + [SMALL_STATE(855)] = 39929, + [SMALL_STATE(856)] = 39945, + [SMALL_STATE(857)] = 39961, + [SMALL_STATE(858)] = 39977, + [SMALL_STATE(859)] = 39993, + [SMALL_STATE(860)] = 40009, + [SMALL_STATE(861)] = 40025, + [SMALL_STATE(862)] = 40041, + [SMALL_STATE(863)] = 40057, + [SMALL_STATE(864)] = 40073, + [SMALL_STATE(865)] = 40089, + [SMALL_STATE(866)] = 40105, + [SMALL_STATE(867)] = 40131, + [SMALL_STATE(868)] = 40155, + [SMALL_STATE(869)] = 40171, + [SMALL_STATE(870)] = 40199, + [SMALL_STATE(871)] = 40215, + [SMALL_STATE(872)] = 40231, + [SMALL_STATE(873)] = 40257, + [SMALL_STATE(874)] = 40273, + [SMALL_STATE(875)] = 40289, + [SMALL_STATE(876)] = 40305, + [SMALL_STATE(877)] = 40321, + [SMALL_STATE(878)] = 40337, + [SMALL_STATE(879)] = 40353, + [SMALL_STATE(880)] = 40375, + [SMALL_STATE(881)] = 40391, + [SMALL_STATE(882)] = 40407, + [SMALL_STATE(883)] = 40423, + [SMALL_STATE(884)] = 40449, + [SMALL_STATE(885)] = 40465, + [SMALL_STATE(886)] = 40481, + [SMALL_STATE(887)] = 40497, + [SMALL_STATE(888)] = 40513, + [SMALL_STATE(889)] = 40529, + [SMALL_STATE(890)] = 40545, + [SMALL_STATE(891)] = 40561, + [SMALL_STATE(892)] = 40577, + [SMALL_STATE(893)] = 40593, + [SMALL_STATE(894)] = 40609, + [SMALL_STATE(895)] = 40631, + [SMALL_STATE(896)] = 40657, + [SMALL_STATE(897)] = 40673, + [SMALL_STATE(898)] = 40699, + [SMALL_STATE(899)] = 40715, + [SMALL_STATE(900)] = 40731, + [SMALL_STATE(901)] = 40754, + [SMALL_STATE(902)] = 40775, + [SMALL_STATE(903)] = 40800, + [SMALL_STATE(904)] = 40825, + [SMALL_STATE(905)] = 40850, + [SMALL_STATE(906)] = 40875, + [SMALL_STATE(907)] = 40900, + [SMALL_STATE(908)] = 40925, + [SMALL_STATE(909)] = 40950, + [SMALL_STATE(910)] = 40975, + [SMALL_STATE(911)] = 41000, + [SMALL_STATE(912)] = 41025, + [SMALL_STATE(913)] = 41050, + [SMALL_STATE(914)] = 41075, + [SMALL_STATE(915)] = 41100, + [SMALL_STATE(916)] = 41125, + [SMALL_STATE(917)] = 41146, + [SMALL_STATE(918)] = 41171, + [SMALL_STATE(919)] = 41196, + [SMALL_STATE(920)] = 41209, + [SMALL_STATE(921)] = 41222, + [SMALL_STATE(922)] = 41235, + [SMALL_STATE(923)] = 41260, + [SMALL_STATE(924)] = 41285, + [SMALL_STATE(925)] = 41310, + [SMALL_STATE(926)] = 41323, + [SMALL_STATE(927)] = 41344, + [SMALL_STATE(928)] = 41369, + [SMALL_STATE(929)] = 41390, + [SMALL_STATE(930)] = 41415, + [SMALL_STATE(931)] = 41430, + [SMALL_STATE(932)] = 41443, + [SMALL_STATE(933)] = 41465, + [SMALL_STATE(934)] = 41487, + [SMALL_STATE(935)] = 41503, + [SMALL_STATE(936)] = 41517, + [SMALL_STATE(937)] = 41531, + [SMALL_STATE(938)] = 41543, + [SMALL_STATE(939)] = 41565, + [SMALL_STATE(940)] = 41579, + [SMALL_STATE(941)] = 41601, + [SMALL_STATE(942)] = 41619, + [SMALL_STATE(943)] = 41631, + [SMALL_STATE(944)] = 41647, + [SMALL_STATE(945)] = 41669, + [SMALL_STATE(946)] = 41683, + [SMALL_STATE(947)] = 41705, + [SMALL_STATE(948)] = 41727, + [SMALL_STATE(949)] = 41741, + [SMALL_STATE(950)] = 41763, + [SMALL_STATE(951)] = 41781, + [SMALL_STATE(952)] = 41801, + [SMALL_STATE(953)] = 41817, + [SMALL_STATE(954)] = 41837, + [SMALL_STATE(955)] = 41857, + [SMALL_STATE(956)] = 41875, + [SMALL_STATE(957)] = 41897, + [SMALL_STATE(958)] = 41913, + [SMALL_STATE(959)] = 41935, + [SMALL_STATE(960)] = 41949, + [SMALL_STATE(961)] = 41971, + [SMALL_STATE(962)] = 41989, + [SMALL_STATE(963)] = 42003, + [SMALL_STATE(964)] = 42021, + [SMALL_STATE(965)] = 42041, + [SMALL_STATE(966)] = 42061, + [SMALL_STATE(967)] = 42083, + [SMALL_STATE(968)] = 42103, + [SMALL_STATE(969)] = 42123, + [SMALL_STATE(970)] = 42142, + [SMALL_STATE(971)] = 42161, + [SMALL_STATE(972)] = 42180, + [SMALL_STATE(973)] = 42199, + [SMALL_STATE(974)] = 42218, + [SMALL_STATE(975)] = 42237, + [SMALL_STATE(976)] = 42256, + [SMALL_STATE(977)] = 42275, + [SMALL_STATE(978)] = 42294, + [SMALL_STATE(979)] = 42313, + [SMALL_STATE(980)] = 42332, + [SMALL_STATE(981)] = 42343, + [SMALL_STATE(982)] = 42358, + [SMALL_STATE(983)] = 42377, + [SMALL_STATE(984)] = 42396, + [SMALL_STATE(985)] = 42415, + [SMALL_STATE(986)] = 42434, + [SMALL_STATE(987)] = 42453, + [SMALL_STATE(988)] = 42472, + [SMALL_STATE(989)] = 42491, + [SMALL_STATE(990)] = 42510, + [SMALL_STATE(991)] = 42525, + [SMALL_STATE(992)] = 42542, + [SMALL_STATE(993)] = 42561, + [SMALL_STATE(994)] = 42580, + [SMALL_STATE(995)] = 42595, + [SMALL_STATE(996)] = 42612, + [SMALL_STATE(997)] = 42631, + [SMALL_STATE(998)] = 42650, + [SMALL_STATE(999)] = 42669, + [SMALL_STATE(1000)] = 42688, + [SMALL_STATE(1001)] = 42703, + [SMALL_STATE(1002)] = 42714, + [SMALL_STATE(1003)] = 42733, + [SMALL_STATE(1004)] = 42752, + [SMALL_STATE(1005)] = 42769, + [SMALL_STATE(1006)] = 42788, + [SMALL_STATE(1007)] = 42801, + [SMALL_STATE(1008)] = 42818, + [SMALL_STATE(1009)] = 42835, + [SMALL_STATE(1010)] = 42854, + [SMALL_STATE(1011)] = 42873, + [SMALL_STATE(1012)] = 42888, + [SMALL_STATE(1013)] = 42899, + [SMALL_STATE(1014)] = 42916, + [SMALL_STATE(1015)] = 42935, + [SMALL_STATE(1016)] = 42954, + [SMALL_STATE(1017)] = 42973, + [SMALL_STATE(1018)] = 42992, + [SMALL_STATE(1019)] = 43011, + [SMALL_STATE(1020)] = 43030, + [SMALL_STATE(1021)] = 43045, + [SMALL_STATE(1022)] = 43064, + [SMALL_STATE(1023)] = 43083, + [SMALL_STATE(1024)] = 43102, + [SMALL_STATE(1025)] = 43121, + [SMALL_STATE(1026)] = 43140, + [SMALL_STATE(1027)] = 43155, + [SMALL_STATE(1028)] = 43172, + [SMALL_STATE(1029)] = 43189, + [SMALL_STATE(1030)] = 43204, + [SMALL_STATE(1031)] = 43223, + [SMALL_STATE(1032)] = 43236, + [SMALL_STATE(1033)] = 43255, + [SMALL_STATE(1034)] = 43274, + [SMALL_STATE(1035)] = 43293, + [SMALL_STATE(1036)] = 43312, + [SMALL_STATE(1037)] = 43331, + [SMALL_STATE(1038)] = 43346, + [SMALL_STATE(1039)] = 43365, + [SMALL_STATE(1040)] = 43384, + [SMALL_STATE(1041)] = 43403, + [SMALL_STATE(1042)] = 43422, + [SMALL_STATE(1043)] = 43441, + [SMALL_STATE(1044)] = 43458, + [SMALL_STATE(1045)] = 43477, + [SMALL_STATE(1046)] = 43492, + [SMALL_STATE(1047)] = 43511, + [SMALL_STATE(1048)] = 43530, + [SMALL_STATE(1049)] = 43541, + [SMALL_STATE(1050)] = 43552, + [SMALL_STATE(1051)] = 43571, + [SMALL_STATE(1052)] = 43588, + [SMALL_STATE(1053)] = 43599, + [SMALL_STATE(1054)] = 43614, + [SMALL_STATE(1055)] = 43627, + [SMALL_STATE(1056)] = 43646, + [SMALL_STATE(1057)] = 43665, + [SMALL_STATE(1058)] = 43684, + [SMALL_STATE(1059)] = 43694, + [SMALL_STATE(1060)] = 43704, + [SMALL_STATE(1061)] = 43714, + [SMALL_STATE(1062)] = 43728, + [SMALL_STATE(1063)] = 43740, + [SMALL_STATE(1064)] = 43754, + [SMALL_STATE(1065)] = 43770, + [SMALL_STATE(1066)] = 43784, + [SMALL_STATE(1067)] = 43798, + [SMALL_STATE(1068)] = 43814, + [SMALL_STATE(1069)] = 43828, + [SMALL_STATE(1070)] = 43844, + [SMALL_STATE(1071)] = 43860, + [SMALL_STATE(1072)] = 43876, + [SMALL_STATE(1073)] = 43888, + [SMALL_STATE(1074)] = 43904, + [SMALL_STATE(1075)] = 43920, + [SMALL_STATE(1076)] = 43930, + [SMALL_STATE(1077)] = 43940, + [SMALL_STATE(1078)] = 43954, + [SMALL_STATE(1079)] = 43970, + [SMALL_STATE(1080)] = 43984, + [SMALL_STATE(1081)] = 44000, + [SMALL_STATE(1082)] = 44016, + [SMALL_STATE(1083)] = 44032, + [SMALL_STATE(1084)] = 44048, + [SMALL_STATE(1085)] = 44058, + [SMALL_STATE(1086)] = 44074, + [SMALL_STATE(1087)] = 44088, + [SMALL_STATE(1088)] = 44104, + [SMALL_STATE(1089)] = 44118, + [SMALL_STATE(1090)] = 44134, + [SMALL_STATE(1091)] = 44148, + [SMALL_STATE(1092)] = 44164, + [SMALL_STATE(1093)] = 44178, + [SMALL_STATE(1094)] = 44190, + [SMALL_STATE(1095)] = 44204, + [SMALL_STATE(1096)] = 44220, + [SMALL_STATE(1097)] = 44234, + [SMALL_STATE(1098)] = 44250, + [SMALL_STATE(1099)] = 44266, + [SMALL_STATE(1100)] = 44282, + [SMALL_STATE(1101)] = 44298, + [SMALL_STATE(1102)] = 44312, + [SMALL_STATE(1103)] = 44328, + [SMALL_STATE(1104)] = 44340, + [SMALL_STATE(1105)] = 44356, + [SMALL_STATE(1106)] = 44368, + [SMALL_STATE(1107)] = 44384, + [SMALL_STATE(1108)] = 44398, + [SMALL_STATE(1109)] = 44414, + [SMALL_STATE(1110)] = 44428, + [SMALL_STATE(1111)] = 44442, + [SMALL_STATE(1112)] = 44452, + [SMALL_STATE(1113)] = 44462, + [SMALL_STATE(1114)] = 44476, + [SMALL_STATE(1115)] = 44492, + [SMALL_STATE(1116)] = 44508, + [SMALL_STATE(1117)] = 44524, + [SMALL_STATE(1118)] = 44540, + [SMALL_STATE(1119)] = 44556, + [SMALL_STATE(1120)] = 44572, + [SMALL_STATE(1121)] = 44586, + [SMALL_STATE(1122)] = 44598, + [SMALL_STATE(1123)] = 44612, + [SMALL_STATE(1124)] = 44626, + [SMALL_STATE(1125)] = 44638, + [SMALL_STATE(1126)] = 44652, + [SMALL_STATE(1127)] = 44666, + [SMALL_STATE(1128)] = 44680, + [SMALL_STATE(1129)] = 44690, + [SMALL_STATE(1130)] = 44700, + [SMALL_STATE(1131)] = 44714, + [SMALL_STATE(1132)] = 44724, + [SMALL_STATE(1133)] = 44736, + [SMALL_STATE(1134)] = 44752, + [SMALL_STATE(1135)] = 44768, + [SMALL_STATE(1136)] = 44782, + [SMALL_STATE(1137)] = 44798, + [SMALL_STATE(1138)] = 44814, + [SMALL_STATE(1139)] = 44828, + [SMALL_STATE(1140)] = 44840, + [SMALL_STATE(1141)] = 44856, + [SMALL_STATE(1142)] = 44872, + [SMALL_STATE(1143)] = 44888, + [SMALL_STATE(1144)] = 44904, + [SMALL_STATE(1145)] = 44920, + [SMALL_STATE(1146)] = 44936, + [SMALL_STATE(1147)] = 44952, + [SMALL_STATE(1148)] = 44966, + [SMALL_STATE(1149)] = 44982, + [SMALL_STATE(1150)] = 44994, + [SMALL_STATE(1151)] = 45003, + [SMALL_STATE(1152)] = 45012, + [SMALL_STATE(1153)] = 45025, + [SMALL_STATE(1154)] = 45038, + [SMALL_STATE(1155)] = 45047, + [SMALL_STATE(1156)] = 45060, + [SMALL_STATE(1157)] = 45069, + [SMALL_STATE(1158)] = 45082, + [SMALL_STATE(1159)] = 45095, + [SMALL_STATE(1160)] = 45108, + [SMALL_STATE(1161)] = 45119, + [SMALL_STATE(1162)] = 45130, + [SMALL_STATE(1163)] = 45143, + [SMALL_STATE(1164)] = 45152, + [SMALL_STATE(1165)] = 45165, + [SMALL_STATE(1166)] = 45178, + [SMALL_STATE(1167)] = 45191, + [SMALL_STATE(1168)] = 45204, + [SMALL_STATE(1169)] = 45213, + [SMALL_STATE(1170)] = 45226, + [SMALL_STATE(1171)] = 45239, + [SMALL_STATE(1172)] = 45248, + [SMALL_STATE(1173)] = 45261, + [SMALL_STATE(1174)] = 45274, + [SMALL_STATE(1175)] = 45287, + [SMALL_STATE(1176)] = 45300, + [SMALL_STATE(1177)] = 45313, + [SMALL_STATE(1178)] = 45322, + [SMALL_STATE(1179)] = 45335, + [SMALL_STATE(1180)] = 45348, + [SMALL_STATE(1181)] = 45361, + [SMALL_STATE(1182)] = 45374, + [SMALL_STATE(1183)] = 45387, + [SMALL_STATE(1184)] = 45400, + [SMALL_STATE(1185)] = 45413, + [SMALL_STATE(1186)] = 45426, + [SMALL_STATE(1187)] = 45439, + [SMALL_STATE(1188)] = 45452, + [SMALL_STATE(1189)] = 45465, + [SMALL_STATE(1190)] = 45478, + [SMALL_STATE(1191)] = 45491, + [SMALL_STATE(1192)] = 45504, + [SMALL_STATE(1193)] = 45517, + [SMALL_STATE(1194)] = 45530, + [SMALL_STATE(1195)] = 45539, + [SMALL_STATE(1196)] = 45548, + [SMALL_STATE(1197)] = 45561, + [SMALL_STATE(1198)] = 45570, + [SMALL_STATE(1199)] = 45583, + [SMALL_STATE(1200)] = 45596, + [SMALL_STATE(1201)] = 45605, + [SMALL_STATE(1202)] = 45614, + [SMALL_STATE(1203)] = 45627, + [SMALL_STATE(1204)] = 45640, + [SMALL_STATE(1205)] = 45653, + [SMALL_STATE(1206)] = 45666, + [SMALL_STATE(1207)] = 45679, + [SMALL_STATE(1208)] = 45688, + [SMALL_STATE(1209)] = 45701, + [SMALL_STATE(1210)] = 45714, + [SMALL_STATE(1211)] = 45727, + [SMALL_STATE(1212)] = 45740, + [SMALL_STATE(1213)] = 45753, + [SMALL_STATE(1214)] = 45766, + [SMALL_STATE(1215)] = 45779, + [SMALL_STATE(1216)] = 45792, + [SMALL_STATE(1217)] = 45805, + [SMALL_STATE(1218)] = 45814, + [SMALL_STATE(1219)] = 45827, + [SMALL_STATE(1220)] = 45840, + [SMALL_STATE(1221)] = 45853, + [SMALL_STATE(1222)] = 45862, + [SMALL_STATE(1223)] = 45875, + [SMALL_STATE(1224)] = 45888, + [SMALL_STATE(1225)] = 45897, + [SMALL_STATE(1226)] = 45910, + [SMALL_STATE(1227)] = 45923, + [SMALL_STATE(1228)] = 45936, + [SMALL_STATE(1229)] = 45949, + [SMALL_STATE(1230)] = 45962, + [SMALL_STATE(1231)] = 45975, + [SMALL_STATE(1232)] = 45988, + [SMALL_STATE(1233)] = 46001, + [SMALL_STATE(1234)] = 46014, + [SMALL_STATE(1235)] = 46023, + [SMALL_STATE(1236)] = 46036, + [SMALL_STATE(1237)] = 46049, + [SMALL_STATE(1238)] = 46062, + [SMALL_STATE(1239)] = 46075, + [SMALL_STATE(1240)] = 46086, + [SMALL_STATE(1241)] = 46099, + [SMALL_STATE(1242)] = 46110, + [SMALL_STATE(1243)] = 46123, + [SMALL_STATE(1244)] = 46136, + [SMALL_STATE(1245)] = 46149, + [SMALL_STATE(1246)] = 46158, + [SMALL_STATE(1247)] = 46167, + [SMALL_STATE(1248)] = 46180, + [SMALL_STATE(1249)] = 46189, + [SMALL_STATE(1250)] = 46198, + [SMALL_STATE(1251)] = 46207, + [SMALL_STATE(1252)] = 46220, + [SMALL_STATE(1253)] = 46233, + [SMALL_STATE(1254)] = 46242, + [SMALL_STATE(1255)] = 46253, + [SMALL_STATE(1256)] = 46266, + [SMALL_STATE(1257)] = 46275, + [SMALL_STATE(1258)] = 46284, + [SMALL_STATE(1259)] = 46297, + [SMALL_STATE(1260)] = 46308, + [SMALL_STATE(1261)] = 46321, + [SMALL_STATE(1262)] = 46330, + [SMALL_STATE(1263)] = 46343, + [SMALL_STATE(1264)] = 46356, + [SMALL_STATE(1265)] = 46365, + [SMALL_STATE(1266)] = 46378, + [SMALL_STATE(1267)] = 46391, + [SMALL_STATE(1268)] = 46404, + [SMALL_STATE(1269)] = 46417, + [SMALL_STATE(1270)] = 46430, + [SMALL_STATE(1271)] = 46443, + [SMALL_STATE(1272)] = 46456, + [SMALL_STATE(1273)] = 46469, + [SMALL_STATE(1274)] = 46482, + [SMALL_STATE(1275)] = 46495, + [SMALL_STATE(1276)] = 46508, + [SMALL_STATE(1277)] = 46517, + [SMALL_STATE(1278)] = 46526, + [SMALL_STATE(1279)] = 46535, + [SMALL_STATE(1280)] = 46544, + [SMALL_STATE(1281)] = 46553, + [SMALL_STATE(1282)] = 46566, + [SMALL_STATE(1283)] = 46579, + [SMALL_STATE(1284)] = 46592, + [SMALL_STATE(1285)] = 46601, + [SMALL_STATE(1286)] = 46610, + [SMALL_STATE(1287)] = 46623, + [SMALL_STATE(1288)] = 46636, + [SMALL_STATE(1289)] = 46645, + [SMALL_STATE(1290)] = 46656, + [SMALL_STATE(1291)] = 46669, + [SMALL_STATE(1292)] = 46678, + [SMALL_STATE(1293)] = 46691, + [SMALL_STATE(1294)] = 46700, + [SMALL_STATE(1295)] = 46709, + [SMALL_STATE(1296)] = 46722, + [SMALL_STATE(1297)] = 46731, + [SMALL_STATE(1298)] = 46744, + [SMALL_STATE(1299)] = 46755, + [SMALL_STATE(1300)] = 46768, + [SMALL_STATE(1301)] = 46779, + [SMALL_STATE(1302)] = 46792, + [SMALL_STATE(1303)] = 46801, + [SMALL_STATE(1304)] = 46810, + [SMALL_STATE(1305)] = 46823, + [SMALL_STATE(1306)] = 46836, + [SMALL_STATE(1307)] = 46849, + [SMALL_STATE(1308)] = 46862, + [SMALL_STATE(1309)] = 46875, + [SMALL_STATE(1310)] = 46884, + [SMALL_STATE(1311)] = 46897, + [SMALL_STATE(1312)] = 46908, + [SMALL_STATE(1313)] = 46921, + [SMALL_STATE(1314)] = 46934, + [SMALL_STATE(1315)] = 46943, + [SMALL_STATE(1316)] = 46956, + [SMALL_STATE(1317)] = 46965, + [SMALL_STATE(1318)] = 46978, + [SMALL_STATE(1319)] = 46991, + [SMALL_STATE(1320)] = 47004, + [SMALL_STATE(1321)] = 47017, + [SMALL_STATE(1322)] = 47030, + [SMALL_STATE(1323)] = 47043, + [SMALL_STATE(1324)] = 47056, + [SMALL_STATE(1325)] = 47065, + [SMALL_STATE(1326)] = 47074, + [SMALL_STATE(1327)] = 47083, + [SMALL_STATE(1328)] = 47096, + [SMALL_STATE(1329)] = 47105, + [SMALL_STATE(1330)] = 47114, + [SMALL_STATE(1331)] = 47127, + [SMALL_STATE(1332)] = 47140, + [SMALL_STATE(1333)] = 47149, + [SMALL_STATE(1334)] = 47162, + [SMALL_STATE(1335)] = 47175, + [SMALL_STATE(1336)] = 47184, + [SMALL_STATE(1337)] = 47193, + [SMALL_STATE(1338)] = 47206, + [SMALL_STATE(1339)] = 47219, + [SMALL_STATE(1340)] = 47232, + [SMALL_STATE(1341)] = 47245, + [SMALL_STATE(1342)] = 47254, + [SMALL_STATE(1343)] = 47267, + [SMALL_STATE(1344)] = 47280, + [SMALL_STATE(1345)] = 47293, + [SMALL_STATE(1346)] = 47306, + [SMALL_STATE(1347)] = 47319, + [SMALL_STATE(1348)] = 47328, + [SMALL_STATE(1349)] = 47337, + [SMALL_STATE(1350)] = 47347, + [SMALL_STATE(1351)] = 47355, + [SMALL_STATE(1352)] = 47363, + [SMALL_STATE(1353)] = 47371, + [SMALL_STATE(1354)] = 47379, + [SMALL_STATE(1355)] = 47387, + [SMALL_STATE(1356)] = 47397, + [SMALL_STATE(1357)] = 47407, + [SMALL_STATE(1358)] = 47417, + [SMALL_STATE(1359)] = 47427, + [SMALL_STATE(1360)] = 47435, + [SMALL_STATE(1361)] = 47445, + [SMALL_STATE(1362)] = 47453, + [SMALL_STATE(1363)] = 47463, + [SMALL_STATE(1364)] = 47473, + [SMALL_STATE(1365)] = 47483, + [SMALL_STATE(1366)] = 47491, + [SMALL_STATE(1367)] = 47499, + [SMALL_STATE(1368)] = 47509, + [SMALL_STATE(1369)] = 47517, + [SMALL_STATE(1370)] = 47527, + [SMALL_STATE(1371)] = 47535, + [SMALL_STATE(1372)] = 47543, + [SMALL_STATE(1373)] = 47553, + [SMALL_STATE(1374)] = 47563, + [SMALL_STATE(1375)] = 47571, + [SMALL_STATE(1376)] = 47579, + [SMALL_STATE(1377)] = 47587, + [SMALL_STATE(1378)] = 47595, + [SMALL_STATE(1379)] = 47605, + [SMALL_STATE(1380)] = 47613, + [SMALL_STATE(1381)] = 47621, + [SMALL_STATE(1382)] = 47631, + [SMALL_STATE(1383)] = 47639, + [SMALL_STATE(1384)] = 47649, + [SMALL_STATE(1385)] = 47659, + [SMALL_STATE(1386)] = 47667, + [SMALL_STATE(1387)] = 47677, + [SMALL_STATE(1388)] = 47687, + [SMALL_STATE(1389)] = 47697, + [SMALL_STATE(1390)] = 47705, + [SMALL_STATE(1391)] = 47715, + [SMALL_STATE(1392)] = 47723, + [SMALL_STATE(1393)] = 47731, + [SMALL_STATE(1394)] = 47741, + [SMALL_STATE(1395)] = 47749, + [SMALL_STATE(1396)] = 47759, + [SMALL_STATE(1397)] = 47769, + [SMALL_STATE(1398)] = 47777, + [SMALL_STATE(1399)] = 47787, + [SMALL_STATE(1400)] = 47795, + [SMALL_STATE(1401)] = 47805, + [SMALL_STATE(1402)] = 47813, + [SMALL_STATE(1403)] = 47821, + [SMALL_STATE(1404)] = 47829, + [SMALL_STATE(1405)] = 47837, + [SMALL_STATE(1406)] = 47845, + [SMALL_STATE(1407)] = 47853, + [SMALL_STATE(1408)] = 47863, + [SMALL_STATE(1409)] = 47871, + [SMALL_STATE(1410)] = 47879, + [SMALL_STATE(1411)] = 47887, + [SMALL_STATE(1412)] = 47895, + [SMALL_STATE(1413)] = 47905, + [SMALL_STATE(1414)] = 47915, + [SMALL_STATE(1415)] = 47923, + [SMALL_STATE(1416)] = 47931, + [SMALL_STATE(1417)] = 47939, + [SMALL_STATE(1418)] = 47949, + [SMALL_STATE(1419)] = 47959, + [SMALL_STATE(1420)] = 47969, + [SMALL_STATE(1421)] = 47979, + [SMALL_STATE(1422)] = 47989, + [SMALL_STATE(1423)] = 47997, + [SMALL_STATE(1424)] = 48007, + [SMALL_STATE(1425)] = 48015, + [SMALL_STATE(1426)] = 48025, + [SMALL_STATE(1427)] = 48033, + [SMALL_STATE(1428)] = 48043, + [SMALL_STATE(1429)] = 48051, + [SMALL_STATE(1430)] = 48059, + [SMALL_STATE(1431)] = 48067, + [SMALL_STATE(1432)] = 48077, + [SMALL_STATE(1433)] = 48087, + [SMALL_STATE(1434)] = 48097, + [SMALL_STATE(1435)] = 48105, + [SMALL_STATE(1436)] = 48115, + [SMALL_STATE(1437)] = 48125, + [SMALL_STATE(1438)] = 48133, + [SMALL_STATE(1439)] = 48143, + [SMALL_STATE(1440)] = 48153, + [SMALL_STATE(1441)] = 48163, + [SMALL_STATE(1442)] = 48171, + [SMALL_STATE(1443)] = 48179, + [SMALL_STATE(1444)] = 48189, + [SMALL_STATE(1445)] = 48197, + [SMALL_STATE(1446)] = 48207, + [SMALL_STATE(1447)] = 48215, + [SMALL_STATE(1448)] = 48223, + [SMALL_STATE(1449)] = 48231, + [SMALL_STATE(1450)] = 48241, + [SMALL_STATE(1451)] = 48251, + [SMALL_STATE(1452)] = 48261, + [SMALL_STATE(1453)] = 48269, + [SMALL_STATE(1454)] = 48277, + [SMALL_STATE(1455)] = 48285, + [SMALL_STATE(1456)] = 48293, + [SMALL_STATE(1457)] = 48303, + [SMALL_STATE(1458)] = 48311, + [SMALL_STATE(1459)] = 48321, + [SMALL_STATE(1460)] = 48331, + [SMALL_STATE(1461)] = 48341, + [SMALL_STATE(1462)] = 48349, + [SMALL_STATE(1463)] = 48357, + [SMALL_STATE(1464)] = 48367, + [SMALL_STATE(1465)] = 48375, + [SMALL_STATE(1466)] = 48383, + [SMALL_STATE(1467)] = 48391, + [SMALL_STATE(1468)] = 48401, + [SMALL_STATE(1469)] = 48411, + [SMALL_STATE(1470)] = 48419, + [SMALL_STATE(1471)] = 48427, + [SMALL_STATE(1472)] = 48435, + [SMALL_STATE(1473)] = 48445, + [SMALL_STATE(1474)] = 48453, + [SMALL_STATE(1475)] = 48463, + [SMALL_STATE(1476)] = 48471, + [SMALL_STATE(1477)] = 48481, + [SMALL_STATE(1478)] = 48491, + [SMALL_STATE(1479)] = 48499, + [SMALL_STATE(1480)] = 48509, + [SMALL_STATE(1481)] = 48517, + [SMALL_STATE(1482)] = 48527, + [SMALL_STATE(1483)] = 48535, + [SMALL_STATE(1484)] = 48545, + [SMALL_STATE(1485)] = 48553, + [SMALL_STATE(1486)] = 48561, + [SMALL_STATE(1487)] = 48569, + [SMALL_STATE(1488)] = 48579, + [SMALL_STATE(1489)] = 48587, + [SMALL_STATE(1490)] = 48595, + [SMALL_STATE(1491)] = 48605, + [SMALL_STATE(1492)] = 48615, + [SMALL_STATE(1493)] = 48623, + [SMALL_STATE(1494)] = 48633, + [SMALL_STATE(1495)] = 48643, + [SMALL_STATE(1496)] = 48653, + [SMALL_STATE(1497)] = 48663, + [SMALL_STATE(1498)] = 48673, + [SMALL_STATE(1499)] = 48681, + [SMALL_STATE(1500)] = 48691, + [SMALL_STATE(1501)] = 48701, + [SMALL_STATE(1502)] = 48711, + [SMALL_STATE(1503)] = 48721, + [SMALL_STATE(1504)] = 48731, + [SMALL_STATE(1505)] = 48739, + [SMALL_STATE(1506)] = 48747, + [SMALL_STATE(1507)] = 48754, + [SMALL_STATE(1508)] = 48761, + [SMALL_STATE(1509)] = 48768, + [SMALL_STATE(1510)] = 48775, + [SMALL_STATE(1511)] = 48782, + [SMALL_STATE(1512)] = 48789, + [SMALL_STATE(1513)] = 48796, + [SMALL_STATE(1514)] = 48803, + [SMALL_STATE(1515)] = 48810, + [SMALL_STATE(1516)] = 48817, + [SMALL_STATE(1517)] = 48824, + [SMALL_STATE(1518)] = 48831, + [SMALL_STATE(1519)] = 48838, + [SMALL_STATE(1520)] = 48845, + [SMALL_STATE(1521)] = 48852, + [SMALL_STATE(1522)] = 48859, + [SMALL_STATE(1523)] = 48866, + [SMALL_STATE(1524)] = 48873, + [SMALL_STATE(1525)] = 48880, + [SMALL_STATE(1526)] = 48887, + [SMALL_STATE(1527)] = 48894, + [SMALL_STATE(1528)] = 48901, + [SMALL_STATE(1529)] = 48908, + [SMALL_STATE(1530)] = 48915, + [SMALL_STATE(1531)] = 48922, + [SMALL_STATE(1532)] = 48929, + [SMALL_STATE(1533)] = 48936, + [SMALL_STATE(1534)] = 48943, + [SMALL_STATE(1535)] = 48950, + [SMALL_STATE(1536)] = 48957, + [SMALL_STATE(1537)] = 48964, + [SMALL_STATE(1538)] = 48971, + [SMALL_STATE(1539)] = 48978, + [SMALL_STATE(1540)] = 48985, + [SMALL_STATE(1541)] = 48992, + [SMALL_STATE(1542)] = 48999, + [SMALL_STATE(1543)] = 49006, + [SMALL_STATE(1544)] = 49013, + [SMALL_STATE(1545)] = 49020, + [SMALL_STATE(1546)] = 49027, + [SMALL_STATE(1547)] = 49034, + [SMALL_STATE(1548)] = 49041, + [SMALL_STATE(1549)] = 49048, + [SMALL_STATE(1550)] = 49055, + [SMALL_STATE(1551)] = 49062, + [SMALL_STATE(1552)] = 49069, + [SMALL_STATE(1553)] = 49076, + [SMALL_STATE(1554)] = 49083, + [SMALL_STATE(1555)] = 49090, + [SMALL_STATE(1556)] = 49097, + [SMALL_STATE(1557)] = 49104, + [SMALL_STATE(1558)] = 49111, + [SMALL_STATE(1559)] = 49118, + [SMALL_STATE(1560)] = 49125, + [SMALL_STATE(1561)] = 49132, + [SMALL_STATE(1562)] = 49139, + [SMALL_STATE(1563)] = 49146, + [SMALL_STATE(1564)] = 49153, + [SMALL_STATE(1565)] = 49160, + [SMALL_STATE(1566)] = 49167, + [SMALL_STATE(1567)] = 49174, + [SMALL_STATE(1568)] = 49181, + [SMALL_STATE(1569)] = 49188, + [SMALL_STATE(1570)] = 49195, + [SMALL_STATE(1571)] = 49202, + [SMALL_STATE(1572)] = 49209, + [SMALL_STATE(1573)] = 49216, + [SMALL_STATE(1574)] = 49223, + [SMALL_STATE(1575)] = 49230, + [SMALL_STATE(1576)] = 49237, + [SMALL_STATE(1577)] = 49244, + [SMALL_STATE(1578)] = 49251, + [SMALL_STATE(1579)] = 49258, + [SMALL_STATE(1580)] = 49265, + [SMALL_STATE(1581)] = 49272, + [SMALL_STATE(1582)] = 49279, + [SMALL_STATE(1583)] = 49286, + [SMALL_STATE(1584)] = 49293, + [SMALL_STATE(1585)] = 49300, + [SMALL_STATE(1586)] = 49307, + [SMALL_STATE(1587)] = 49314, + [SMALL_STATE(1588)] = 49321, + [SMALL_STATE(1589)] = 49328, + [SMALL_STATE(1590)] = 49335, + [SMALL_STATE(1591)] = 49342, + [SMALL_STATE(1592)] = 49349, + [SMALL_STATE(1593)] = 49356, + [SMALL_STATE(1594)] = 49363, + [SMALL_STATE(1595)] = 49370, + [SMALL_STATE(1596)] = 49377, + [SMALL_STATE(1597)] = 49384, + [SMALL_STATE(1598)] = 49391, + [SMALL_STATE(1599)] = 49398, + [SMALL_STATE(1600)] = 49405, + [SMALL_STATE(1601)] = 49412, + [SMALL_STATE(1602)] = 49419, + [SMALL_STATE(1603)] = 49426, + [SMALL_STATE(1604)] = 49433, + [SMALL_STATE(1605)] = 49440, + [SMALL_STATE(1606)] = 49447, + [SMALL_STATE(1607)] = 49454, + [SMALL_STATE(1608)] = 49461, + [SMALL_STATE(1609)] = 49468, + [SMALL_STATE(1610)] = 49475, + [SMALL_STATE(1611)] = 49482, + [SMALL_STATE(1612)] = 49489, + [SMALL_STATE(1613)] = 49496, + [SMALL_STATE(1614)] = 49503, + [SMALL_STATE(1615)] = 49510, + [SMALL_STATE(1616)] = 49517, + [SMALL_STATE(1617)] = 49524, + [SMALL_STATE(1618)] = 49531, + [SMALL_STATE(1619)] = 49538, + [SMALL_STATE(1620)] = 49545, + [SMALL_STATE(1621)] = 49552, + [SMALL_STATE(1622)] = 49559, + [SMALL_STATE(1623)] = 49566, + [SMALL_STATE(1624)] = 49573, + [SMALL_STATE(1625)] = 49580, + [SMALL_STATE(1626)] = 49587, + [SMALL_STATE(1627)] = 49594, + [SMALL_STATE(1628)] = 49601, + [SMALL_STATE(1629)] = 49608, + [SMALL_STATE(1630)] = 49615, + [SMALL_STATE(1631)] = 49622, + [SMALL_STATE(1632)] = 49629, + [SMALL_STATE(1633)] = 49636, + [SMALL_STATE(1634)] = 49643, + [SMALL_STATE(1635)] = 49650, + [SMALL_STATE(1636)] = 49657, + [SMALL_STATE(1637)] = 49664, + [SMALL_STATE(1638)] = 49671, + [SMALL_STATE(1639)] = 49678, + [SMALL_STATE(1640)] = 49685, + [SMALL_STATE(1641)] = 49692, + [SMALL_STATE(1642)] = 49699, + [SMALL_STATE(1643)] = 49706, + [SMALL_STATE(1644)] = 49713, + [SMALL_STATE(1645)] = 49720, + [SMALL_STATE(1646)] = 49727, + [SMALL_STATE(1647)] = 49734, + [SMALL_STATE(1648)] = 49741, + [SMALL_STATE(1649)] = 49748, + [SMALL_STATE(1650)] = 49755, + [SMALL_STATE(1651)] = 49762, + [SMALL_STATE(1652)] = 49769, + [SMALL_STATE(1653)] = 49776, + [SMALL_STATE(1654)] = 49783, + [SMALL_STATE(1655)] = 49790, + [SMALL_STATE(1656)] = 49797, + [SMALL_STATE(1657)] = 49804, + [SMALL_STATE(1658)] = 49811, + [SMALL_STATE(1659)] = 49818, + [SMALL_STATE(1660)] = 49825, + [SMALL_STATE(1661)] = 49832, + [SMALL_STATE(1662)] = 49839, + [SMALL_STATE(1663)] = 49846, + [SMALL_STATE(1664)] = 49853, + [SMALL_STATE(1665)] = 49860, + [SMALL_STATE(1666)] = 49867, + [SMALL_STATE(1667)] = 49874, + [SMALL_STATE(1668)] = 49881, + [SMALL_STATE(1669)] = 49888, + [SMALL_STATE(1670)] = 49895, + [SMALL_STATE(1671)] = 49902, + [SMALL_STATE(1672)] = 49909, + [SMALL_STATE(1673)] = 49916, + [SMALL_STATE(1674)] = 49923, + [SMALL_STATE(1675)] = 49930, + [SMALL_STATE(1676)] = 49937, + [SMALL_STATE(1677)] = 49944, + [SMALL_STATE(1678)] = 49951, + [SMALL_STATE(1679)] = 49958, + [SMALL_STATE(1680)] = 49965, + [SMALL_STATE(1681)] = 49972, + [SMALL_STATE(1682)] = 49979, + [SMALL_STATE(1683)] = 49986, + [SMALL_STATE(1684)] = 49993, + [SMALL_STATE(1685)] = 50000, + [SMALL_STATE(1686)] = 50007, + [SMALL_STATE(1687)] = 50014, + [SMALL_STATE(1688)] = 50021, + [SMALL_STATE(1689)] = 50028, + [SMALL_STATE(1690)] = 50035, + [SMALL_STATE(1691)] = 50042, + [SMALL_STATE(1692)] = 50049, + [SMALL_STATE(1693)] = 50056, + [SMALL_STATE(1694)] = 50063, + [SMALL_STATE(1695)] = 50070, + [SMALL_STATE(1696)] = 50077, + [SMALL_STATE(1697)] = 50084, + [SMALL_STATE(1698)] = 50091, + [SMALL_STATE(1699)] = 50098, + [SMALL_STATE(1700)] = 50105, + [SMALL_STATE(1701)] = 50112, + [SMALL_STATE(1702)] = 50119, + [SMALL_STATE(1703)] = 50126, + [SMALL_STATE(1704)] = 50133, + [SMALL_STATE(1705)] = 50140, + [SMALL_STATE(1706)] = 50147, + [SMALL_STATE(1707)] = 50154, + [SMALL_STATE(1708)] = 50161, + [SMALL_STATE(1709)] = 50168, + [SMALL_STATE(1710)] = 50175, + [SMALL_STATE(1711)] = 50182, + [SMALL_STATE(1712)] = 50189, + [SMALL_STATE(1713)] = 50196, + [SMALL_STATE(1714)] = 50203, + [SMALL_STATE(1715)] = 50210, + [SMALL_STATE(1716)] = 50217, + [SMALL_STATE(1717)] = 50224, + [SMALL_STATE(1718)] = 50231, + [SMALL_STATE(1719)] = 50238, + [SMALL_STATE(1720)] = 50245, + [SMALL_STATE(1721)] = 50252, + [SMALL_STATE(1722)] = 50259, + [SMALL_STATE(1723)] = 50266, + [SMALL_STATE(1724)] = 50273, + [SMALL_STATE(1725)] = 50280, + [SMALL_STATE(1726)] = 50287, + [SMALL_STATE(1727)] = 50294, + [SMALL_STATE(1728)] = 50301, + [SMALL_STATE(1729)] = 50308, + [SMALL_STATE(1730)] = 50315, + [SMALL_STATE(1731)] = 50322, + [SMALL_STATE(1732)] = 50329, + [SMALL_STATE(1733)] = 50336, + [SMALL_STATE(1734)] = 50343, + [SMALL_STATE(1735)] = 50350, + [SMALL_STATE(1736)] = 50357, + [SMALL_STATE(1737)] = 50364, + [SMALL_STATE(1738)] = 50371, + [SMALL_STATE(1739)] = 50378, + [SMALL_STATE(1740)] = 50385, + [SMALL_STATE(1741)] = 50392, + [SMALL_STATE(1742)] = 50399, + [SMALL_STATE(1743)] = 50406, + [SMALL_STATE(1744)] = 50413, + [SMALL_STATE(1745)] = 50420, + [SMALL_STATE(1746)] = 50427, + [SMALL_STATE(1747)] = 50434, + [SMALL_STATE(1748)] = 50441, + [SMALL_STATE(1749)] = 50448, + [SMALL_STATE(1750)] = 50455, + [SMALL_STATE(1751)] = 50462, + [SMALL_STATE(1752)] = 50469, + [SMALL_STATE(1753)] = 50476, + [SMALL_STATE(1754)] = 50483, + [SMALL_STATE(1755)] = 50490, + [SMALL_STATE(1756)] = 50497, + [SMALL_STATE(1757)] = 50504, + [SMALL_STATE(1758)] = 50511, + [SMALL_STATE(1759)] = 50518, + [SMALL_STATE(1760)] = 50525, + [SMALL_STATE(1761)] = 50532, + [SMALL_STATE(1762)] = 50539, + [SMALL_STATE(1763)] = 50546, + [SMALL_STATE(1764)] = 50553, + [SMALL_STATE(1765)] = 50560, + [SMALL_STATE(1766)] = 50567, + [SMALL_STATE(1767)] = 50574, + [SMALL_STATE(1768)] = 50581, + [SMALL_STATE(1769)] = 50588, + [SMALL_STATE(1770)] = 50595, + [SMALL_STATE(1771)] = 50602, + [SMALL_STATE(1772)] = 50609, + [SMALL_STATE(1773)] = 50616, + [SMALL_STATE(1774)] = 50623, + [SMALL_STATE(1775)] = 50630, + [SMALL_STATE(1776)] = 50637, + [SMALL_STATE(1777)] = 50644, + [SMALL_STATE(1778)] = 50651, + [SMALL_STATE(1779)] = 50658, + [SMALL_STATE(1780)] = 50665, + [SMALL_STATE(1781)] = 50672, + [SMALL_STATE(1782)] = 50679, + [SMALL_STATE(1783)] = 50686, + [SMALL_STATE(1784)] = 50693, + [SMALL_STATE(1785)] = 50700, + [SMALL_STATE(1786)] = 50707, + [SMALL_STATE(1787)] = 50714, + [SMALL_STATE(1788)] = 50721, + [SMALL_STATE(1789)] = 50728, + [SMALL_STATE(1790)] = 50735, + [SMALL_STATE(1791)] = 50742, + [SMALL_STATE(1792)] = 50749, + [SMALL_STATE(1793)] = 50756, + [SMALL_STATE(1794)] = 50763, + [SMALL_STATE(1795)] = 50770, + [SMALL_STATE(1796)] = 50777, + [SMALL_STATE(1797)] = 50784, + [SMALL_STATE(1798)] = 50791, + [SMALL_STATE(1799)] = 50798, + [SMALL_STATE(1800)] = 50805, + [SMALL_STATE(1801)] = 50812, + [SMALL_STATE(1802)] = 50819, + [SMALL_STATE(1803)] = 50826, + [SMALL_STATE(1804)] = 50833, + [SMALL_STATE(1805)] = 50840, + [SMALL_STATE(1806)] = 50847, + [SMALL_STATE(1807)] = 50854, + [SMALL_STATE(1808)] = 50861, + [SMALL_STATE(1809)] = 50868, + [SMALL_STATE(1810)] = 50875, + [SMALL_STATE(1811)] = 50882, + [SMALL_STATE(1812)] = 50889, + [SMALL_STATE(1813)] = 50896, + [SMALL_STATE(1814)] = 50903, + [SMALL_STATE(1815)] = 50910, + [SMALL_STATE(1816)] = 50917, + [SMALL_STATE(1817)] = 50924, + [SMALL_STATE(1818)] = 50931, + [SMALL_STATE(1819)] = 50938, + [SMALL_STATE(1820)] = 50945, + [SMALL_STATE(1821)] = 50952, + [SMALL_STATE(1822)] = 50959, + [SMALL_STATE(1823)] = 50966, + [SMALL_STATE(1824)] = 50973, + [SMALL_STATE(1825)] = 50980, + [SMALL_STATE(1826)] = 50987, + [SMALL_STATE(1827)] = 50994, + [SMALL_STATE(1828)] = 51001, + [SMALL_STATE(1829)] = 51008, + [SMALL_STATE(1830)] = 51015, + [SMALL_STATE(1831)] = 51022, + [SMALL_STATE(1832)] = 51029, + [SMALL_STATE(1833)] = 51036, + [SMALL_STATE(1834)] = 51043, + [SMALL_STATE(1835)] = 51050, + [SMALL_STATE(1836)] = 51057, + [SMALL_STATE(1837)] = 51064, + [SMALL_STATE(1838)] = 51071, + [SMALL_STATE(1839)] = 51078, + [SMALL_STATE(1840)] = 51085, + [SMALL_STATE(1841)] = 51092, + [SMALL_STATE(1842)] = 51099, + [SMALL_STATE(1843)] = 51106, + [SMALL_STATE(1844)] = 51113, + [SMALL_STATE(1845)] = 51120, + [SMALL_STATE(1846)] = 51127, + [SMALL_STATE(1847)] = 51134, + [SMALL_STATE(1848)] = 51141, + [SMALL_STATE(1849)] = 51148, + [SMALL_STATE(1850)] = 51155, + [SMALL_STATE(1851)] = 51162, + [SMALL_STATE(1852)] = 51169, + [SMALL_STATE(1853)] = 51176, + [SMALL_STATE(1854)] = 51183, + [SMALL_STATE(1855)] = 51190, + [SMALL_STATE(1856)] = 51197, + [SMALL_STATE(1857)] = 51204, + [SMALL_STATE(1858)] = 51211, + [SMALL_STATE(1859)] = 51218, + [SMALL_STATE(1860)] = 51225, + [SMALL_STATE(1861)] = 51232, + [SMALL_STATE(1862)] = 51239, + [SMALL_STATE(1863)] = 51246, + [SMALL_STATE(1864)] = 51253, + [SMALL_STATE(1865)] = 51260, + [SMALL_STATE(1866)] = 51267, + [SMALL_STATE(1867)] = 51274, + [SMALL_STATE(1868)] = 51281, + [SMALL_STATE(1869)] = 51288, + [SMALL_STATE(1870)] = 51295, + [SMALL_STATE(1871)] = 51302, + [SMALL_STATE(1872)] = 51309, + [SMALL_STATE(1873)] = 51316, + [SMALL_STATE(1874)] = 51323, + [SMALL_STATE(1875)] = 51330, + [SMALL_STATE(1876)] = 51337, + [SMALL_STATE(1877)] = 51344, + [SMALL_STATE(1878)] = 51351, + [SMALL_STATE(1879)] = 51358, + [SMALL_STATE(1880)] = 51365, + [SMALL_STATE(1881)] = 51372, + [SMALL_STATE(1882)] = 51379, + [SMALL_STATE(1883)] = 51386, + [SMALL_STATE(1884)] = 51393, + [SMALL_STATE(1885)] = 51400, + [SMALL_STATE(1886)] = 51407, + [SMALL_STATE(1887)] = 51414, + [SMALL_STATE(1888)] = 51421, + [SMALL_STATE(1889)] = 51428, + [SMALL_STATE(1890)] = 51435, + [SMALL_STATE(1891)] = 51442, + [SMALL_STATE(1892)] = 51449, + [SMALL_STATE(1893)] = 51456, + [SMALL_STATE(1894)] = 51463, + [SMALL_STATE(1895)] = 51470, + [SMALL_STATE(1896)] = 51477, + [SMALL_STATE(1897)] = 51484, + [SMALL_STATE(1898)] = 51491, + [SMALL_STATE(1899)] = 51498, + [SMALL_STATE(1900)] = 51505, + [SMALL_STATE(1901)] = 51512, + [SMALL_STATE(1902)] = 51519, + [SMALL_STATE(1903)] = 51526, + [SMALL_STATE(1904)] = 51533, + [SMALL_STATE(1905)] = 51540, + [SMALL_STATE(1906)] = 51547, + [SMALL_STATE(1907)] = 51554, + [SMALL_STATE(1908)] = 51561, + [SMALL_STATE(1909)] = 51568, + [SMALL_STATE(1910)] = 51575, + [SMALL_STATE(1911)] = 51582, + [SMALL_STATE(1912)] = 51589, + [SMALL_STATE(1913)] = 51596, + [SMALL_STATE(1914)] = 51603, + [SMALL_STATE(1915)] = 51610, + [SMALL_STATE(1916)] = 51617, + [SMALL_STATE(1917)] = 51624, + [SMALL_STATE(1918)] = 51631, + [SMALL_STATE(1919)] = 51638, + [SMALL_STATE(1920)] = 51645, + [SMALL_STATE(1921)] = 51652, + [SMALL_STATE(1922)] = 51659, + [SMALL_STATE(1923)] = 51666, + [SMALL_STATE(1924)] = 51673, + [SMALL_STATE(1925)] = 51680, + [SMALL_STATE(1926)] = 51687, + [SMALL_STATE(1927)] = 51694, + [SMALL_STATE(1928)] = 51701, + [SMALL_STATE(1929)] = 51708, + [SMALL_STATE(1930)] = 51715, + [SMALL_STATE(1931)] = 51722, + [SMALL_STATE(1932)] = 51729, + [SMALL_STATE(1933)] = 51736, + [SMALL_STATE(1934)] = 51743, + [SMALL_STATE(1935)] = 51750, + [SMALL_STATE(1936)] = 51757, + [SMALL_STATE(1937)] = 51764, + [SMALL_STATE(1938)] = 51771, + [SMALL_STATE(1939)] = 51778, + [SMALL_STATE(1940)] = 51785, + [SMALL_STATE(1941)] = 51792, + [SMALL_STATE(1942)] = 51799, + [SMALL_STATE(1943)] = 51806, + [SMALL_STATE(1944)] = 51813, + [SMALL_STATE(1945)] = 51820, + [SMALL_STATE(1946)] = 51827, + [SMALL_STATE(1947)] = 51834, + [SMALL_STATE(1948)] = 51841, + [SMALL_STATE(1949)] = 51848, + [SMALL_STATE(1950)] = 51855, + [SMALL_STATE(1951)] = 51862, + [SMALL_STATE(1952)] = 51869, + [SMALL_STATE(1953)] = 51876, + [SMALL_STATE(1954)] = 51883, + [SMALL_STATE(1955)] = 51890, + [SMALL_STATE(1956)] = 51897, + [SMALL_STATE(1957)] = 51904, + [SMALL_STATE(1958)] = 51911, + [SMALL_STATE(1959)] = 51918, + [SMALL_STATE(1960)] = 51925, + [SMALL_STATE(1961)] = 51932, + [SMALL_STATE(1962)] = 51939, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -58991,133 +59003,133 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), [83] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(838), + [85] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(847), [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1054), [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1153), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(663), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(642), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(657), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(646), [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(32), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(691), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(692), [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1499), - [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(702), + [109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(704), [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1960), [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1959), [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(47), [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1958), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(715), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(676), [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1956), [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1175), [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(778), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(750), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(800), [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(17), [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(218), [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1182), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1952), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(583), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(575), [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1207), [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1948), [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1945), [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(224), [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(113), [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(530), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(782), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(754), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(779), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(751), [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1942), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(653), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(803), + [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(658), + [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(753), [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(169), [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(63), [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(197), [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1941), [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1136), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(805), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(642), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(691), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(809), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(646), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(692), [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1960), [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1958), [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1175), [298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(778), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(750), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(800), [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1182), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(583), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(575), [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1207), [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1945), [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1941), @@ -59136,7 +59148,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1161), [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(47), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(715), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(676), [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1956), [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(17), [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(218), @@ -59145,11 +59157,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(224), [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(113), [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(530), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(782), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(754), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(779), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(751), [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1942), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(653), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(803), + [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(658), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(753), [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(169), [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(63), [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(197), @@ -59158,66 +59170,66 @@ static const TSParseActionEntry ts_parse_actions[] = { [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 1), [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 1), [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 1), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1136), - [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(805), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(642), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(809), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(646), [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(757), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(758), [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1960), [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1958), [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1483), [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(778), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(750), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(800), [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1479), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(583), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(575), [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1207), [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1945), [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_specification_repeat1, 2), SHIFT_REPEAT(1941), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_entry_call, 7), [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_entry_call, 7), [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_until_statement, 4), @@ -59365,7 +59377,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), @@ -59412,12 +59424,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), @@ -59437,7 +59449,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 90), [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 8, .production_id = 37), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_representation_clause, 7, .production_id = 37), [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_representation_clause, 5, .production_id = 37), @@ -59458,14 +59470,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 5), [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 6, .production_id = 54), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body_stub, 6), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body_stub, 6), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9), [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 68), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 8), @@ -59474,46 +59486,46 @@ static const TSParseActionEntry ts_parse_actions[] = { [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 6), [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 6), [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 6), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 36), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 6), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 6), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 104), [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 8), [1077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 8), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 6), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 6), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 64), [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_declaration, 4), [1085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_declaration, 4), - [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), - [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), - [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 6), + [1089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 6), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_renaming_declaration, 7, .production_id = 55), [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 56), [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), [1101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 57), [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 7, .production_id = 73), - [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), - [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 3), [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 3), - [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 9, .production_id = 102), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 102), [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 8), [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 8), - [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 31), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 31), [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 6), [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 6), [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), [1135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 8, .production_id = 68), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, .production_id = 2), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, .production_id = 2), [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 99), [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 111), @@ -59522,30 +59534,30 @@ static const TSParseActionEntry ts_parse_actions[] = { [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 91), [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 8, .production_id = 60), [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 8, .production_id = 60), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 9), + [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 9), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 4), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 4), [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 5, .production_id = 38), [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 5, .production_id = 38), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 111), [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 8), [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 8), [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 27), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 65), [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 4), [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 4), [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 14, .production_id = 117), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), + [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 6, .production_id = 66), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 9), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 9), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 9), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 9), [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 8), [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 8), [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 8, .production_id = 73), @@ -59554,10 +59566,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 104), [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 7, .production_id = 88), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 9), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 9), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 9), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 9), [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 1), [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 1), [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 7), @@ -59566,14 +59578,14 @@ static const TSParseActionEntry ts_parse_actions[] = { [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 68), [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 87), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body_stub, 7), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body_stub, 7), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 75), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 117), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 7, .production_id = 60), [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 7, .production_id = 60), [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 8), @@ -59584,76 +59596,76 @@ static const TSParseActionEntry ts_parse_actions[] = { [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 51), [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 71), [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 71), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 6), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 6), [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 8, .production_id = 100), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 5, .production_id = 40), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 8), [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 8), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 10), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 10), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 12, .production_id = 104), [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 80), [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 10, .production_id = 115), [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 11, .production_id = 116), [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 11, .production_id = 116), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 6), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 6), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_protected_declaration, 9), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_protected_declaration, 9), [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 9, .production_id = 68), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 7), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 7), [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 7, .production_id = 2), [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 7, .production_id = 2), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4), [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 10), [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 10), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 6), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 6), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_procedure_declaration, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_procedure_declaration, 4), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body_stub, 4), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body_stub, 4), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 10), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_type_declaration, 10), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 52), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 6, .production_id = 36), [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 10), [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 10), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_type_declaration, 6), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_type_declaration, 6), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 51), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 99), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 13, .production_id = 117), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 10, .production_id = 68), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subtype_declaration, 5, .production_id = 36), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 10, .production_id = 60), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 51), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, .production_id = 2), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, .production_id = 2), [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 4, .production_id = 32), [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_package_declaration, 3), [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_package_declaration, 3), [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_subprogram_declaration, 3), [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_subprogram_declaration, 3), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 2), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 2), [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_declaration, 5), [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_declaration, 5), [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 104), @@ -59672,8 +59684,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_declaration, 2), [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_function_declaration, 5), [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_function_declaration, 5), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 4), [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 4), [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 111), @@ -59710,10 +59722,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 56), [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 6, .production_id = 57), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_renaming_declaration, 4, .production_id = 33), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 27), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 64), [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 4, .production_id = 19), @@ -59730,36 +59742,36 @@ static const TSParseActionEntry ts_parse_actions[] = { [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_body, 9, .production_id = 60), [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 3), [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 3), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 71), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 71), [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 7), [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 7), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 7), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 7), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_incomplete_type_declaration, 5), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_incomplete_type_declaration, 5), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 7), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 7), [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_extension_declaration, 11, .production_id = 117), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 4), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 4), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_task_declaration, 4), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_task_declaration, 4), [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 71), [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 71), [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 8, .production_id = 2), [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 8, .production_id = 2), [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 4, .production_id = 23), [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 4, .production_id = 23), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body_stub, 6), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body_stub, 6), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, .production_id = 31), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_body, 11), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_body, 11), [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_clause, 3), [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_clause, 3), [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_type_declaration, 11), @@ -59772,107 +59784,107 @@ static const TSParseActionEntry ts_parse_actions[] = { [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 6, .production_id = 62), [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_renaming_declaration, 6, .production_id = 40), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 9), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 9), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_declaration, 2), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__package_declaration, 2), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_renaming_declaration, 5, .production_id = 19), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_body, 6), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protected_body, 6), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 8, .production_id = 87), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 5), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 5), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subprogram_body, 9, .production_id = 108), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_type_declaration, 11), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_task_type_declaration, 11), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_type_declaration, 6), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_type_declaration, 6), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instantiation, 7, .production_id = 62), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 25), [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 25), [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, .production_id = 41), [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 5, .production_id = 41), [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subunit, 5, .production_id = 43), [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 43), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 2), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compilation_unit, 1), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 3), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_clause, 4, .production_id = 24), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), - [1747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), - [1751] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1391), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 10), SHIFT_REPEAT(821), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 10), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 10), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 78), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_null, 1), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_null, 1), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 3), + [1755] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), REDUCE(sym_component_choice_list, 1), + [1759] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 6), SHIFT(1391), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__factor, 1, .production_id = 4), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__factor, 1, .production_id = 4), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 3), [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 3), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_allocator, 2), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_allocator, 2), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 3, .production_id = 42), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 3, .production_id = 42), [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_not, 2, .production_id = 8), [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_not, 2, .production_id = 8), [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_abs, 2, .production_id = 8), [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_abs, 2, .production_id = 8), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 8), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_factor_power, 3, .production_id = 26), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(824), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(824), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(820), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(820), [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), @@ -59890,21 +59902,21 @@ static const TSParseActionEntry ts_parse_actions[] = { [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat2, 2), SHIFT_REPEAT(1948), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 3, .production_id = 11), [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 3, .production_id = 11), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1919), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_exclusion, 2), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_exclusion, 2), + [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1919), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 1), [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), @@ -59912,1578 +59924,1579 @@ static const TSParseActionEntry ts_parse_actions[] = { [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1281), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(805), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1958), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(771), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(774), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1952), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1207), - [1978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1945), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1281), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(809), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), + [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1958), + [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(769), + [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(773), + [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1952), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1207), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat2, 2), SHIFT_REPEAT(1945), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1752), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(279), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1752), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 1), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 1), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(279), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 2, .production_id = 9), [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2, .production_id = 1), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(805), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1958), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(771), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(774), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1881), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1207), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(805), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1958), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(771), - [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(774), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1952), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1207), - [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1945), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(269), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(809), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1958), + [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(769), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(773), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1952), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1207), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1945), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3, .production_id = 45), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(809), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1958), + [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(769), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(773), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1881), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_body_repeat1, 2), SHIFT_REPEAT(1207), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_attribute_designator, 4), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_g, 3), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(768), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(775), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(792), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1281), - [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(642), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(646), [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(941), [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1845), [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1945), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(764), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(766), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_generic_formal_part, 1), SHIFT(785), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 2), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_formal_part, 2), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_membership_choice_list_repeat1, 2), SHIFT_REPEAT(269), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__membership_choice, 1), [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_expression, 4, .production_id = 9), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 4), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relation_membership, 3), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relation, 3), [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(194), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), - [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(242), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat3, 2), SHIFT_REPEAT(242), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 2), [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2), SHIFT_REPEAT(193), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1153), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(805), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1958), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1952), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1207), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1281), - [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(805), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1091), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1591), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1599), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(559), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1720), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1734), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), - [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1716), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1824), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1538), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1749), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1214), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(623), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1945), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(217), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1507), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(762), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(227), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(219), - [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(808), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1208), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1115), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(102), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(632), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(97), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(799), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1782), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(236), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1143), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1208), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(796), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(616), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(751), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1078), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1208), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(99), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1553), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(110), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(240), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(149), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(105), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1919), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(933), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(668), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1152), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1391), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(104), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1259), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1481), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1167), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(245), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(726), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(112), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(976), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1750), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(510), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(243), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(187), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5159] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 3), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 35), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 3), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 21), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 2), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1019), + [2326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), SHIFT_REPEAT(1153), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_representation_clause_repeat1, 2), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1281), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(809), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1945), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 4), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 18), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 3), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(809), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), + [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1958), + [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1952), + [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(1207), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 3), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_digits_constraint, 3), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 6), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_constraint, 2), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 3), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 3, .production_id = 34), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2, .production_id = 18), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4, .production_id = 58), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 3), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 4, .production_id = 3), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 3), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 34), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2, .production_id = 18), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 3), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1091), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1591), + [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1599), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 58), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 93), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 105), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 34), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 59), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1720), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 74), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(559), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1734), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 112), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 34), SHIFT(1716), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 82), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 81), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 67), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 67), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 106), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 48), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 67), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 112), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 82), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 58), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 82), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 96), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 95), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 106), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 58), SHIFT(1824), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 95), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 106), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 48), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 18), SHIFT(1538), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 48), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 34), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1749), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 7), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 46), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1214), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 47), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 119), + [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(630), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exception_handler_list, 2), SHIFT_REPEAT(1945), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 44), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 8, .production_id = 92), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(202), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(217), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1507), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 7, .production_id = 76), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 36), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 9, .production_id = 103), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 5, .production_id = 39), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_specification, 6, .production_id = 61), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(762), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 22), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(227), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(219), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(808), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 34), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1208), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1115), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 7), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 105), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(102), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(635), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(97), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(757), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1782), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 68), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(236), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 93), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 42), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 22), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1143), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 36), SHIFT(1208), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(795), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 58), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 36), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 22), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(622), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(755), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 22), SHIFT(1078), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 42), SHIFT(1208), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(99), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1553), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 58), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(110), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 22), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), SHIFT_REPEAT(240), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 70), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(149), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(105), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(1919), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(933), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 7), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 21), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(670), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1152), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 22), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_association_repeat1, 2), SHIFT_REPEAT(1391), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(104), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 83), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 7), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 18), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 58), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 42), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1259), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1481), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1167), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 35), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 36), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 59), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 34), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), SHIFT_REPEAT(245), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 70), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(735), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(112), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 18), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 34), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(976), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 70), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 74), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 58), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 42), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 36), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 58), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 36), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 42), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 6), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 68), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 105), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 34), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 7), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 22), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 22), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1750), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 89), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 34), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 93), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(510), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 52), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 7), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 77), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(243), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 42), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 22), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 36), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 7), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 42), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 79), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 20), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 20), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 94), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 63), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 22), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 36), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(187), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5162] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), }; #ifdef __cplusplus diff --git a/test/corpus/pragmas.txt b/test/corpus/pragmas.txt new file mode 100644 index 0000000..a9cb7c3 --- /dev/null +++ b/test/corpus/pragmas.txt @@ -0,0 +1,62 @@ +================================================================================ +pragma on record field +================================================================================ + +package P is + type R is record + Started : Boolean := False; + pragma Atomic (Started); + end record; + pragma Foo; +end; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (package_specification + (identifier) + (full_type_declaration + (identifier) + (record_type_definition + (record_definition + (component_list + (component_declaration + (identifier) + (component_definition + (identifier)) + (expression + (term + (identifier)))) + (pragma_g + (identifier) + (pragma_argument_association + (expression + (term + (identifier))))))))) + (pragma_g + (identifier))))) + +================================================================================ +pragma in statement +================================================================================ + +procedure P is +begin + null; + pragma Foo; + null; +end; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (subprogram_body + (procedure_specification + (identifier)) + (handled_sequence_of_statements + (null_statement) + (pragma_g + (identifier)) + (null_statement)))))