From a1e54e4e0347db6a37099822181e5cdf0d180198 Mon Sep 17 00:00:00 2001 From: Piotr Trojanek Date: Wed, 3 Jan 2024 14:22:55 +0100 Subject: [PATCH] Accept pragmas within declare expressions (_declare_item): accept pragmas Assert pragmas (and other "executable" pragmas) are specifically allowed in declare expressions, thanks to a recent AI22-0045. They are accepted by the latest GNAT compilers. Regenerate grammar using tree-sitter-linux-x64-0.20.7; add test. --- grammar.js | 1 + src/grammar.json | 4 + src/node-types.json | 4 + src/parser.c | 14856 +++++++++++++++++++------------------- test/corpus/pragmas.txt | 41 + 5 files changed, 7483 insertions(+), 7423 deletions(-) diff --git a/grammar.js b/grammar.js index 0946771..e72ee10 100644 --- a/grammar.js +++ b/grammar.js @@ -685,6 +685,7 @@ module.exports = grammar({ _declare_item: $ => choice( $.object_declaration, $.object_renaming_declaration, + $.pragma_g, ), quantifier: $ => choice( reservedWord('all'), diff --git a/src/grammar.json b/src/grammar.json index 98872b2..4fd890a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3456,6 +3456,10 @@ { "type": "SYMBOL", "name": "object_renaming_declaration" + }, + { + "type": "SYMBOL", + "name": "pragma_g" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 81326fd..cd607f3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2095,6 +2095,10 @@ { "type": "object_renaming_declaration", "named": true + }, + { + "type": "pragma_g", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 70a9582..4da371e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -8362,9 +8362,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [490] = {.lex_state = 48}, [491] = {.lex_state = 48}, [492] = {.lex_state = 48}, - [493] = {.lex_state = 10}, + [493] = {.lex_state = 48}, [494] = {.lex_state = 10}, - [495] = {.lex_state = 48}, + [495] = {.lex_state = 10}, [496] = {.lex_state = 48}, [497] = {.lex_state = 48}, [498] = {.lex_state = 48}, @@ -8722,13 +8722,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 48}, [851] = {.lex_state = 48}, [852] = {.lex_state = 48}, - [853] = {.lex_state = 10}, - [854] = {.lex_state = 48}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 48}, + [853] = {.lex_state = 48}, + [854] = {.lex_state = 10}, + [855] = {.lex_state = 48}, + [856] = {.lex_state = 48}, + [857] = {.lex_state = 0}, [858] = {.lex_state = 48}, - [859] = {.lex_state = 48}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 48}, [861] = {.lex_state = 48}, [862] = {.lex_state = 48}, @@ -8744,12 +8744,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [872] = {.lex_state = 48}, [873] = {.lex_state = 48}, [874] = {.lex_state = 48}, - [875] = {.lex_state = 48}, - [876] = {.lex_state = 11}, - [877] = {.lex_state = 11}, - [878] = {.lex_state = 48}, - [879] = {.lex_state = 48}, - [880] = {.lex_state = 11}, + [875] = {.lex_state = 11}, + [876] = {.lex_state = 48}, + [877] = {.lex_state = 48}, + [878] = {.lex_state = 11}, + [879] = {.lex_state = 11}, + [880] = {.lex_state = 48}, [881] = {.lex_state = 11}, [882] = {.lex_state = 48}, [883] = {.lex_state = 48}, @@ -8857,7 +8857,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [985] = {.lex_state = 48}, [986] = {.lex_state = 11}, [987] = {.lex_state = 11}, - [988] = {.lex_state = 0}, + [988] = {.lex_state = 48}, [989] = {.lex_state = 48}, [990] = {.lex_state = 48}, [991] = {.lex_state = 48}, @@ -8867,9 +8867,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [995] = {.lex_state = 11}, [996] = {.lex_state = 48}, [997] = {.lex_state = 48}, - [998] = {.lex_state = 48}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 48}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 48}, + [1000] = {.lex_state = 0}, [1001] = {.lex_state = 48}, [1002] = {.lex_state = 48}, [1003] = {.lex_state = 48}, @@ -10111,7 +10111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_package_declaration] = STATE(510), [sym_generic_instantiation] = STATE(510), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_procedure_declaration] = STATE(510), [sym_null_statement] = STATE(510), [sym_number_declaration] = STATE(510), @@ -10161,7 +10161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subprogram_specification] = STATE(1062), [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(2), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), @@ -10255,7 +10255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_package_declaration] = STATE(510), [sym_generic_instantiation] = STATE(510), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_procedure_declaration] = STATE(510), [sym_null_statement] = STATE(510), [sym_number_declaration] = STATE(510), @@ -10305,7 +10305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subprogram_specification] = STATE(1062), [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(85), [sym_identifier] = ACTIONS(7), [sym_gnatprep_identifier] = ACTIONS(9), @@ -10399,7 +10399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generic_package_declaration] = STATE(510), [sym_generic_instantiation] = STATE(510), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_procedure_declaration] = STATE(510), [sym_null_statement] = STATE(510), [sym_number_declaration] = STATE(510), @@ -10449,7 +10449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__subprogram_specification] = STATE(1062), [sym_subtype_declaration] = STATE(510), [aux_sym_compilation_repeat1] = STATE(3), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [ts_builtin_sym_end] = ACTIONS(87), [sym_identifier] = ACTIONS(89), [sym_gnatprep_identifier] = ACTIONS(92), @@ -10504,7 +10504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -10536,7 +10536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(206), [sym_gnatprep_identifier] = ACTIONS(209), [sym_comment] = ACTIONS(3), @@ -11061,7 +11061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(474), [sym__subtype_indication] = STATE(1483), [sym_range_g] = STATE(1481), - [sym_expression] = STATE(997), + [sym_expression] = STATE(985), [sym__relation] = STATE(605), [sym_relation_membership] = STATE(605), [sym_raise_expression] = STATE(605), @@ -11099,7 +11099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_discrete_choice] = STATE(1312), [sym_global_aspect_element] = STATE(1395), [sym_global_mode] = STATE(739), - [sym_non_empty_mode] = STATE(873), + [sym_non_empty_mode] = STATE(874), [sym_if_expression] = STATE(1897), [sym_function_call] = STATE(522), [sym_identifier] = ACTIONS(352), @@ -13136,7 +13136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1157), @@ -13169,7 +13169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13286,7 +13286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1336), @@ -13319,7 +13319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13360,7 +13360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1337), @@ -13393,7 +13393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13434,7 +13434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1295), @@ -13467,7 +13467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13508,7 +13508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(44), [sym_pragma_g] = STATE(44), [sym__simple_statement] = STATE(44), @@ -13540,7 +13540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(44), [aux_sym__sequence_of_statements_repeat1] = STATE(44), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [aux_sym_gnatprep_if_statement_repeat1] = STATE(1105), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), @@ -13582,7 +13582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -13614,7 +13614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [aux_sym_gnatprep_if_statement_repeat1] = STATE(1179), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), @@ -13656,7 +13656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -13688,7 +13688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13729,7 +13729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(45), [sym_pragma_g] = STATE(45), [sym__simple_statement] = STATE(45), @@ -13761,7 +13761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(45), [aux_sym__sequence_of_statements_repeat1] = STATE(45), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13803,7 +13803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1973), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -13836,7 +13836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -13877,7 +13877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(474), [sym__subtype_indication] = STATE(1483), [sym_range_g] = STATE(1481), - [sym_expression] = STATE(997), + [sym_expression] = STATE(985), [sym__relation] = STATE(605), [sym_relation_membership] = STATE(605), [sym_raise_expression] = STATE(605), @@ -13947,7 +13947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1720), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -13980,7 +13980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14019,7 +14019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(2053), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14052,7 +14052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14091,7 +14091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1653), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14124,7 +14124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14163,7 +14163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(2005), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14196,7 +14196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14235,7 +14235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1962), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14268,7 +14268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14307,7 +14307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(2019), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14340,7 +14340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14379,7 +14379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1925), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14412,7 +14412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14451,7 +14451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1674), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14484,7 +14484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14523,7 +14523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1909), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14556,7 +14556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14595,7 +14595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1682), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14628,7 +14628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14667,7 +14667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1587), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14700,7 +14700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14739,7 +14739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1792), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14772,7 +14772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14811,7 +14811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(2012), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14844,7 +14844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14883,7 +14883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1638), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14916,7 +14916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -14955,7 +14955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1689), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -14988,7 +14988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15027,7 +15027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1606), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15060,7 +15060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15099,7 +15099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1853), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15132,7 +15132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15171,7 +15171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1701), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15204,7 +15204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15243,7 +15243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1822), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15276,7 +15276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15315,7 +15315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1728), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15348,7 +15348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15387,7 +15387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(1910), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15420,7 +15420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15459,7 +15459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_qualified_expression] = STATE(1015), [sym_handled_sequence_of_statements] = STATE(2041), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1528), @@ -15492,7 +15492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15530,7 +15530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -15562,7 +15562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15601,39 +15601,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(93), - [sym_pragma_g] = STATE(93), - [sym__simple_statement] = STATE(93), - [sym__statement] = STATE(93), - [sym__compound_statement] = STATE(93), - [sym__select_statement] = STATE(93), - [sym_asynchronous_select] = STATE(93), - [sym_conditional_entry_call] = STATE(93), - [sym_timed_entry_call] = STATE(93), - [sym_selective_accept] = STATE(93), - [sym_abort_statement] = STATE(93), - [sym_requeue_statement] = STATE(93), - [sym_accept_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_block_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_gnatprep_if_statement] = STATE(93), - [sym_exit_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym__delay_statement] = STATE(93), - [sym_delay_until_statement] = STATE(93), - [sym_delay_relative_statement] = STATE(93), - [sym_simple_return_statement] = STATE(93), - [sym_extended_return_statement] = STATE(93), - [sym_procedure_call_statement] = STATE(93), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(20), + [sym_pragma_g] = STATE(20), + [sym__sequence_of_statements] = STATE(1668), + [sym__simple_statement] = STATE(20), + [sym__statement] = STATE(20), + [sym__compound_statement] = STATE(20), + [sym__select_statement] = STATE(20), + [sym_asynchronous_select] = STATE(20), + [sym_conditional_entry_call] = STATE(20), + [sym_timed_entry_call] = STATE(20), + [sym_selective_accept] = STATE(20), + [sym_abort_statement] = STATE(20), + [sym_requeue_statement] = STATE(20), + [sym_accept_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_block_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_gnatprep_if_statement] = STATE(20), + [sym_exit_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__delay_statement] = STATE(20), + [sym_delay_until_statement] = STATE(20), + [sym_delay_relative_statement] = STATE(20), + [sym_simple_return_statement] = STATE(20), + [sym_extended_return_statement] = STATE(20), + [sym_procedure_call_statement] = STATE(20), [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(93), - [sym_loop_statement] = STATE(93), + [sym_raise_statement] = STATE(20), + [sym_loop_statement] = STATE(20), [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(93), - [aux_sym__sequence_of_statements_repeat1] = STATE(93), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [sym_assignment_statement] = STATE(20), + [aux_sym__sequence_of_statements_repeat1] = STATE(20), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15656,7 +15657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(470), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -15672,7 +15672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1659), @@ -15705,7 +15705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15743,7 +15743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1563), @@ -15776,7 +15776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15814,7 +15814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -15846,7 +15846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15885,7 +15885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1824), @@ -15918,7 +15918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -15956,7 +15956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(75), [sym_pragma_g] = STATE(75), [sym__simple_statement] = STATE(75), @@ -15988,7 +15988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(75), [aux_sym__sequence_of_statements_repeat1] = STATE(75), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16027,7 +16027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1624), @@ -16060,7 +16060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16098,181 +16098,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(20), - [sym_pragma_g] = STATE(20), - [sym__sequence_of_statements] = STATE(1043), - [sym__simple_statement] = STATE(20), - [sym__statement] = STATE(20), - [sym__compound_statement] = STATE(20), - [sym__select_statement] = STATE(20), - [sym_asynchronous_select] = STATE(20), - [sym_conditional_entry_call] = STATE(20), - [sym_timed_entry_call] = STATE(20), - [sym_selective_accept] = STATE(20), - [sym_abort_statement] = STATE(20), - [sym_requeue_statement] = STATE(20), - [sym_accept_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_block_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_gnatprep_if_statement] = STATE(20), - [sym_exit_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__delay_statement] = STATE(20), - [sym_delay_until_statement] = STATE(20), - [sym_delay_relative_statement] = STATE(20), - [sym_simple_return_statement] = STATE(20), - [sym_extended_return_statement] = STATE(20), - [sym_procedure_call_statement] = STATE(20), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(71), + [sym_pragma_g] = STATE(71), + [sym__simple_statement] = STATE(71), + [sym__statement] = STATE(71), + [sym__compound_statement] = STATE(71), + [sym__select_statement] = STATE(71), + [sym_asynchronous_select] = STATE(71), + [sym_conditional_entry_call] = STATE(71), + [sym_timed_entry_call] = STATE(71), + [sym_selective_accept] = STATE(71), + [sym_abort_statement] = STATE(71), + [sym_requeue_statement] = STATE(71), + [sym_accept_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_block_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_gnatprep_if_statement] = STATE(71), + [sym_exit_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__delay_statement] = STATE(71), + [sym_delay_until_statement] = STATE(71), + [sym_delay_relative_statement] = STATE(71), + [sym_simple_return_statement] = STATE(71), + [sym_extended_return_statement] = STATE(71), + [sym_procedure_call_statement] = STATE(71), [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(20), - [sym_loop_statement] = STATE(20), + [sym_raise_statement] = STATE(71), + [sym_loop_statement] = STATE(71), [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(20), - [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), - [sym_identifier] = ACTIONS(412), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(414), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [80] = { - [sym__name] = STATE(992), - [sym_selected_component] = STATE(1015), - [sym_slice] = STATE(1015), - [sym__attribute_reference] = STATE(1015), - [sym__reduction_attribute_reference] = STATE(1015), - [sym_value_sequence] = STATE(2038), - [sym_qualified_expression] = STATE(1015), - [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(20), - [sym_pragma_g] = STATE(20), - [sym__sequence_of_statements] = STATE(1965), - [sym__simple_statement] = STATE(20), - [sym__statement] = STATE(20), - [sym__compound_statement] = STATE(20), - [sym__select_statement] = STATE(20), - [sym_asynchronous_select] = STATE(20), - [sym_conditional_entry_call] = STATE(20), - [sym_timed_entry_call] = STATE(20), - [sym_selective_accept] = STATE(20), - [sym_abort_statement] = STATE(20), - [sym_requeue_statement] = STATE(20), - [sym_accept_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_block_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_gnatprep_if_statement] = STATE(20), - [sym_exit_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__delay_statement] = STATE(20), - [sym_delay_until_statement] = STATE(20), - [sym_delay_relative_statement] = STATE(20), - [sym_simple_return_statement] = STATE(20), - [sym_extended_return_statement] = STATE(20), - [sym_procedure_call_statement] = STATE(20), - [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(20), - [sym_loop_statement] = STATE(20), - [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(20), - [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), - [sym_identifier] = ACTIONS(412), - [sym_gnatprep_identifier] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(9), - [sym_character_literal] = ACTIONS(9), - [sym_target_name] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [aux_sym_iterated_element_association_token1] = ACTIONS(414), - [aux_sym_subprogram_body_token1] = ACTIONS(29), - [aux_sym_raise_expression_token1] = ACTIONS(33), - [aux_sym_primary_null_token1] = ACTIONS(35), - [aux_sym_declare_expression_token1] = ACTIONS(43), - [aux_sym_case_expression_token1] = ACTIONS(45), - [anon_sym_LT_LT] = ACTIONS(55), - [aux_sym_pragma_g_token1] = ACTIONS(57), - [aux_sym_if_expression_token1] = ACTIONS(59), - [aux_sym_result_profile_token1] = ACTIONS(61), - [aux_sym_asynchronous_select_token1] = ACTIONS(63), - [aux_sym_asynchronous_select_token2] = ACTIONS(65), - [aux_sym_requeue_statement_token1] = ACTIONS(67), - [aux_sym_accept_statement_token1] = ACTIONS(69), - [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_goto_statement_token1] = ACTIONS(75), - [aux_sym_delay_until_statement_token1] = ACTIONS(77), - [aux_sym_loop_statement_token1] = ACTIONS(79), - [aux_sym_iteration_scheme_token1] = ACTIONS(81), - }, - [81] = { - [sym__name] = STATE(992), - [sym_selected_component] = STATE(1015), - [sym_slice] = STATE(1015), - [sym__attribute_reference] = STATE(1015), - [sym__reduction_attribute_reference] = STATE(1015), - [sym_value_sequence] = STATE(2038), - [sym_qualified_expression] = STATE(1015), - [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(86), - [sym_pragma_g] = STATE(86), - [sym__simple_statement] = STATE(86), - [sym__statement] = STATE(86), - [sym__compound_statement] = STATE(86), - [sym__select_statement] = STATE(86), - [sym_asynchronous_select] = STATE(86), - [sym_conditional_entry_call] = STATE(86), - [sym_timed_entry_call] = STATE(86), - [sym_selective_accept] = STATE(86), - [sym_abort_statement] = STATE(86), - [sym_requeue_statement] = STATE(86), - [sym_accept_statement] = STATE(86), - [sym_case_statement] = STATE(86), - [sym_block_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_gnatprep_if_statement] = STATE(86), - [sym_exit_statement] = STATE(86), - [sym_goto_statement] = STATE(86), - [sym__delay_statement] = STATE(86), - [sym_delay_until_statement] = STATE(86), - [sym_delay_relative_statement] = STATE(86), - [sym_simple_return_statement] = STATE(86), - [sym_extended_return_statement] = STATE(86), - [sym_procedure_call_statement] = STATE(86), - [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(86), - [sym_loop_statement] = STATE(86), - [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(86), - [aux_sym__sequence_of_statements_repeat1] = STATE(86), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [sym_assignment_statement] = STATE(71), + [aux_sym__sequence_of_statements_repeat1] = STATE(71), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16302,6 +16160,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, + [80] = { + [sym__name] = STATE(992), + [sym_selected_component] = STATE(1015), + [sym_slice] = STATE(1015), + [sym__attribute_reference] = STATE(1015), + [sym__reduction_attribute_reference] = STATE(1015), + [sym_value_sequence] = STATE(2038), + [sym_qualified_expression] = STATE(1015), + [sym_loop_label] = STATE(994), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(93), + [sym_pragma_g] = STATE(93), + [sym__simple_statement] = STATE(93), + [sym__statement] = STATE(93), + [sym__compound_statement] = STATE(93), + [sym__select_statement] = STATE(93), + [sym_asynchronous_select] = STATE(93), + [sym_conditional_entry_call] = STATE(93), + [sym_timed_entry_call] = STATE(93), + [sym_selective_accept] = STATE(93), + [sym_abort_statement] = STATE(93), + [sym_requeue_statement] = STATE(93), + [sym_accept_statement] = STATE(93), + [sym_case_statement] = STATE(93), + [sym_block_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_gnatprep_if_statement] = STATE(93), + [sym_exit_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__delay_statement] = STATE(93), + [sym_delay_until_statement] = STATE(93), + [sym_delay_relative_statement] = STATE(93), + [sym_simple_return_statement] = STATE(93), + [sym_extended_return_statement] = STATE(93), + [sym_procedure_call_statement] = STATE(93), + [sym_function_call] = STATE(992), + [sym_raise_statement] = STATE(93), + [sym_loop_statement] = STATE(93), + [sym_iteration_scheme] = STATE(2035), + [sym_assignment_statement] = STATE(93), + [aux_sym__sequence_of_statements_repeat1] = STATE(93), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(412), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(414), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(470), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, + [81] = { + [sym__name] = STATE(992), + [sym_selected_component] = STATE(1015), + [sym_slice] = STATE(1015), + [sym__attribute_reference] = STATE(1015), + [sym__reduction_attribute_reference] = STATE(1015), + [sym_value_sequence] = STATE(2038), + [sym_qualified_expression] = STATE(1015), + [sym_loop_label] = STATE(994), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(92), + [sym_pragma_g] = STATE(92), + [sym__simple_statement] = STATE(92), + [sym__statement] = STATE(92), + [sym__compound_statement] = STATE(92), + [sym__select_statement] = STATE(92), + [sym_asynchronous_select] = STATE(92), + [sym_conditional_entry_call] = STATE(92), + [sym_timed_entry_call] = STATE(92), + [sym_selective_accept] = STATE(92), + [sym_abort_statement] = STATE(92), + [sym_requeue_statement] = STATE(92), + [sym_accept_statement] = STATE(92), + [sym_case_statement] = STATE(92), + [sym_block_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_gnatprep_if_statement] = STATE(92), + [sym_exit_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__delay_statement] = STATE(92), + [sym_delay_until_statement] = STATE(92), + [sym_delay_relative_statement] = STATE(92), + [sym_simple_return_statement] = STATE(92), + [sym_extended_return_statement] = STATE(92), + [sym_procedure_call_statement] = STATE(92), + [sym_function_call] = STATE(992), + [sym_raise_statement] = STATE(92), + [sym_loop_statement] = STATE(92), + [sym_iteration_scheme] = STATE(2035), + [sym_assignment_statement] = STATE(92), + [aux_sym__sequence_of_statements_repeat1] = STATE(92), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), + [sym_identifier] = ACTIONS(412), + [sym_gnatprep_identifier] = ACTIONS(9), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(9), + [sym_character_literal] = ACTIONS(9), + [sym_target_name] = ACTIONS(9), + [anon_sym_LBRACK] = ACTIONS(11), + [aux_sym_iterated_element_association_token1] = ACTIONS(414), + [aux_sym_subprogram_body_token1] = ACTIONS(29), + [aux_sym_raise_expression_token1] = ACTIONS(33), + [aux_sym_primary_null_token1] = ACTIONS(35), + [aux_sym_declare_expression_token1] = ACTIONS(43), + [aux_sym_case_expression_token1] = ACTIONS(45), + [anon_sym_LT_LT] = ACTIONS(55), + [aux_sym_pragma_g_token1] = ACTIONS(57), + [aux_sym_if_expression_token1] = ACTIONS(59), + [aux_sym_result_profile_token1] = ACTIONS(61), + [aux_sym_asynchronous_select_token1] = ACTIONS(63), + [aux_sym_asynchronous_select_token2] = ACTIONS(65), + [aux_sym_requeue_statement_token1] = ACTIONS(67), + [aux_sym_accept_statement_token1] = ACTIONS(69), + [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), + [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(474), + [aux_sym_exit_statement_token1] = ACTIONS(73), + [aux_sym_goto_statement_token1] = ACTIONS(75), + [aux_sym_delay_until_statement_token1] = ACTIONS(77), + [aux_sym_loop_statement_token1] = ACTIONS(79), + [aux_sym_iteration_scheme_token1] = ACTIONS(81), + }, [82] = { [sym__name] = STATE(992), [sym_selected_component] = STATE(1015), @@ -16311,7 +16311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1821), @@ -16344,7 +16344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16382,7 +16382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1629), @@ -16415,7 +16415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16453,10 +16453,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), - [sym__sequence_of_statements] = STATE(1668), + [sym__sequence_of_statements] = STATE(1802), [sym__simple_statement] = STATE(20), [sym__statement] = STATE(20), [sym__compound_statement] = STATE(20), @@ -16486,7 +16486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16524,7 +16524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1501), @@ -16557,7 +16557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16595,39 +16595,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(4), - [sym_pragma_g] = STATE(4), - [sym__simple_statement] = STATE(4), - [sym__statement] = STATE(4), - [sym__compound_statement] = STATE(4), - [sym__select_statement] = STATE(4), - [sym_asynchronous_select] = STATE(4), - [sym_conditional_entry_call] = STATE(4), - [sym_timed_entry_call] = STATE(4), - [sym_selective_accept] = STATE(4), - [sym_abort_statement] = STATE(4), - [sym_requeue_statement] = STATE(4), - [sym_accept_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_block_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_gnatprep_if_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym__delay_statement] = STATE(4), - [sym_delay_until_statement] = STATE(4), - [sym_delay_relative_statement] = STATE(4), - [sym_simple_return_statement] = STATE(4), - [sym_extended_return_statement] = STATE(4), - [sym_procedure_call_statement] = STATE(4), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(20), + [sym_pragma_g] = STATE(20), + [sym__sequence_of_statements] = STATE(1043), + [sym__simple_statement] = STATE(20), + [sym__statement] = STATE(20), + [sym__compound_statement] = STATE(20), + [sym__select_statement] = STATE(20), + [sym_asynchronous_select] = STATE(20), + [sym_conditional_entry_call] = STATE(20), + [sym_timed_entry_call] = STATE(20), + [sym_selective_accept] = STATE(20), + [sym_abort_statement] = STATE(20), + [sym_requeue_statement] = STATE(20), + [sym_accept_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_block_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_gnatprep_if_statement] = STATE(20), + [sym_exit_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__delay_statement] = STATE(20), + [sym_delay_until_statement] = STATE(20), + [sym_delay_relative_statement] = STATE(20), + [sym_simple_return_statement] = STATE(20), + [sym_extended_return_statement] = STATE(20), + [sym_procedure_call_statement] = STATE(20), [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(4), - [sym_loop_statement] = STATE(4), + [sym_raise_statement] = STATE(20), + [sym_loop_statement] = STATE(20), [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(4), - [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [sym_assignment_statement] = STATE(20), + [aux_sym__sequence_of_statements_repeat1] = STATE(20), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16650,7 +16651,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_requeue_statement_token1] = ACTIONS(67), [aux_sym_accept_statement_token1] = ACTIONS(69), [aux_sym_gnatprep_declarative_if_statement_token1] = ACTIONS(71), - [aux_sym_gnatprep_declarative_if_statement_token4] = ACTIONS(474), [aux_sym_exit_statement_token1] = ACTIONS(73), [aux_sym_goto_statement_token1] = ACTIONS(75), [aux_sym_delay_until_statement_token1] = ACTIONS(77), @@ -16666,7 +16666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1845), @@ -16699,7 +16699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16737,7 +16737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1476), @@ -16770,7 +16770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16808,7 +16808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1361), @@ -16841,7 +16841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16879,10 +16879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), - [sym__sequence_of_statements] = STATE(1802), + [sym__sequence_of_statements] = STATE(1965), [sym__simple_statement] = STATE(20), [sym__statement] = STATE(20), [sym__compound_statement] = STATE(20), @@ -16912,7 +16912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -16950,7 +16950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(20), [sym_pragma_g] = STATE(20), [sym__sequence_of_statements] = STATE(1837), @@ -16983,7 +16983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(20), [aux_sym__sequence_of_statements_repeat1] = STATE(20), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -17021,39 +17021,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), - [sym_null_statement] = STATE(71), - [sym_pragma_g] = STATE(71), - [sym__simple_statement] = STATE(71), - [sym__statement] = STATE(71), - [sym__compound_statement] = STATE(71), - [sym__select_statement] = STATE(71), - [sym_asynchronous_select] = STATE(71), - [sym_conditional_entry_call] = STATE(71), - [sym_timed_entry_call] = STATE(71), - [sym_selective_accept] = STATE(71), - [sym_abort_statement] = STATE(71), - [sym_requeue_statement] = STATE(71), - [sym_accept_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_block_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_gnatprep_if_statement] = STATE(71), - [sym_exit_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__delay_statement] = STATE(71), - [sym_delay_until_statement] = STATE(71), - [sym_delay_relative_statement] = STATE(71), - [sym_simple_return_statement] = STATE(71), - [sym_extended_return_statement] = STATE(71), - [sym_procedure_call_statement] = STATE(71), + [sym_label] = STATE(95), + [sym_null_statement] = STATE(4), + [sym_pragma_g] = STATE(4), + [sym__simple_statement] = STATE(4), + [sym__statement] = STATE(4), + [sym__compound_statement] = STATE(4), + [sym__select_statement] = STATE(4), + [sym_asynchronous_select] = STATE(4), + [sym_conditional_entry_call] = STATE(4), + [sym_timed_entry_call] = STATE(4), + [sym_selective_accept] = STATE(4), + [sym_abort_statement] = STATE(4), + [sym_requeue_statement] = STATE(4), + [sym_accept_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_block_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_gnatprep_if_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym__delay_statement] = STATE(4), + [sym_delay_until_statement] = STATE(4), + [sym_delay_relative_statement] = STATE(4), + [sym_simple_return_statement] = STATE(4), + [sym_extended_return_statement] = STATE(4), + [sym_procedure_call_statement] = STATE(4), [sym_function_call] = STATE(992), - [sym_raise_statement] = STATE(71), - [sym_loop_statement] = STATE(71), + [sym_raise_statement] = STATE(4), + [sym_loop_statement] = STATE(4), [sym_iteration_scheme] = STATE(2035), - [sym_assignment_statement] = STATE(71), - [aux_sym__sequence_of_statements_repeat1] = STATE(71), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [sym_assignment_statement] = STATE(4), + [aux_sym__sequence_of_statements_repeat1] = STATE(4), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -17092,7 +17092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_value_sequence] = STATE(2038), [sym_qualified_expression] = STATE(1015), [sym_loop_label] = STATE(994), - [sym_label] = STATE(97), + [sym_label] = STATE(95), [sym_null_statement] = STATE(4), [sym_pragma_g] = STATE(4), [sym__simple_statement] = STATE(4), @@ -17124,7 +17124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_iteration_scheme] = STATE(2035), [sym_assignment_statement] = STATE(4), [aux_sym__sequence_of_statements_repeat1] = STATE(4), - [aux_sym__sequence_of_statements_repeat2] = STATE(97), + [aux_sym__sequence_of_statements_repeat2] = STATE(95), [sym_identifier] = ACTIONS(412), [sym_gnatprep_identifier] = ACTIONS(9), [sym_comment] = ACTIONS(3), @@ -17225,142 +17225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_subtype_declaration_token1] = ACTIONS(83), }, [95] = { - [sym_unary_adding_operator] = STATE(529), - [sym__name] = STATE(522), - [sym_selected_component] = STATE(522), - [sym__defining_identifier_list] = STATE(1737), - [sym_slice] = STATE(522), - [sym__attribute_reference] = STATE(522), - [sym__reduction_attribute_reference] = STATE(522), - [sym_value_sequence] = STATE(2038), - [sym_qualified_expression] = STATE(522), - [sym_range_g] = STATE(1838), - [sym_expression] = STATE(1448), - [sym__relation] = STATE(605), - [sym_relation_membership] = STATE(605), - [sym_raise_expression] = STATE(605), - [sym__simple_expression] = STATE(656), - [sym_term] = STATE(549), - [sym__factor] = STATE(524), - [sym_factor_power] = STATE(524), - [sym_factor_abs] = STATE(524), - [sym_factor_not] = STATE(524), - [sym__parenthesized_expression] = STATE(538), - [sym__primary] = STATE(538), - [sym_primary_null] = STATE(538), - [sym_allocator] = STATE(538), - [sym_parameter_association] = STATE(1351), - [sym__conditional_expression] = STATE(1836), - [sym_quantified_expression] = STATE(1836), - [sym_declare_expression] = STATE(1836), - [sym_case_expression] = STATE(1836), - [sym_component_choice_list] = STATE(1835), - [sym__aggregate] = STATE(538), - [sym__delta_aggregate] = STATE(538), - [sym_extension_aggregate] = STATE(538), - [sym_record_delta_aggregate] = STATE(538), - [sym_array_delta_aggregate] = STATE(538), - [sym_record_aggregate] = STATE(538), - [sym__array_aggregate] = STATE(538), - [sym_positional_array_aggregate] = STATE(538), - [sym_null_array_aggregate] = STATE(538), - [sym_named_array_aggregate] = STATE(538), - [sym_parameter_specification] = STATE(1399), - [sym__parameter_specification_list] = STATE(1735), - [sym_if_expression] = STATE(1836), - [sym_function_call] = STATE(522), - [sym_identifier] = ACTIONS(482), - [sym_gnatprep_identifier] = ACTIONS(484), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(486), - [sym_character_literal] = ACTIONS(484), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(484), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_iterated_element_association_token1] = ACTIONS(488), - [aux_sym_relation_membership_token1] = ACTIONS(490), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(492), - [aux_sym_allocator_token1] = ACTIONS(380), - [anon_sym_LT_GT] = ACTIONS(494), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(496), - [aux_sym_if_expression_token1] = ACTIONS(392), - }, - [96] = { - [sym_unary_adding_operator] = STATE(529), - [sym__name] = STATE(522), - [sym_selected_component] = STATE(547), - [sym_slice] = STATE(547), - [sym__attribute_reference] = STATE(547), - [sym__reduction_attribute_reference] = STATE(547), - [sym_value_sequence] = STATE(2038), - [sym_qualified_expression] = STATE(547), - [sym__subtype_indication] = STATE(1467), - [sym_range_g] = STATE(1430), - [sym_expression] = STATE(1448), - [sym__relation] = STATE(605), - [sym_relation_membership] = STATE(605), - [sym_raise_expression] = STATE(605), - [sym__simple_expression] = STATE(656), - [sym_term] = STATE(549), - [sym__factor] = STATE(524), - [sym_factor_power] = STATE(524), - [sym_factor_abs] = STATE(524), - [sym_factor_not] = STATE(524), - [sym__parenthesized_expression] = STATE(538), - [sym__primary] = STATE(538), - [sym_primary_null] = STATE(538), - [sym_allocator] = STATE(538), - [sym_parameter_association] = STATE(1351), - [sym__conditional_expression] = STATE(1836), - [sym_quantified_expression] = STATE(1836), - [sym_declare_expression] = STATE(1836), - [sym_case_expression] = STATE(1836), - [sym_component_choice_list] = STATE(1835), - [sym__aggregate] = STATE(538), - [sym__delta_aggregate] = STATE(538), - [sym_extension_aggregate] = STATE(538), - [sym_record_delta_aggregate] = STATE(538), - [sym_array_delta_aggregate] = STATE(538), - [sym_record_aggregate] = STATE(538), - [sym_null_exclusion] = STATE(816), - [sym__discrete_range] = STATE(1328), - [sym__array_aggregate] = STATE(538), - [sym_positional_array_aggregate] = STATE(538), - [sym_null_array_aggregate] = STATE(538), - [sym_named_array_aggregate] = STATE(538), - [sym_if_expression] = STATE(1836), - [sym_function_call] = STATE(522), - [sym_identifier] = ACTIONS(498), - [sym_gnatprep_identifier] = ACTIONS(500), - [sym_comment] = ACTIONS(3), - [sym_string_literal] = ACTIONS(502), - [sym_character_literal] = ACTIONS(500), - [sym_numeric_literal] = ACTIONS(358), - [anon_sym_PLUS] = ACTIONS(360), - [anon_sym_DASH] = ACTIONS(362), - [sym_target_name] = ACTIONS(500), - [anon_sym_LPAREN] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(366), - [aux_sym_iterated_element_association_token1] = ACTIONS(488), - [aux_sym_relation_membership_token1] = ACTIONS(372), - [aux_sym_raise_expression_token1] = ACTIONS(374), - [aux_sym_factor_abs_token1] = ACTIONS(376), - [aux_sym_primary_null_token1] = ACTIONS(492), - [aux_sym_allocator_token1] = ACTIONS(380), - [anon_sym_LT_GT] = ACTIONS(494), - [aux_sym_declare_expression_token1] = ACTIONS(382), - [aux_sym_case_expression_token1] = ACTIONS(384), - [aux_sym_component_choice_list_token1] = ACTIONS(496), - [aux_sym_if_expression_token1] = ACTIONS(392), - }, - [97] = { [sym__name] = STATE(992), [sym_selected_component] = STATE(1015), [sym_slice] = STATE(1015), @@ -17428,204 +17292,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_loop_statement_token1] = ACTIONS(79), [aux_sym_iteration_scheme_token1] = ACTIONS(81), }, + [96] = { + [sym_unary_adding_operator] = STATE(529), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(522), + [sym__defining_identifier_list] = STATE(1737), + [sym_slice] = STATE(522), + [sym__attribute_reference] = STATE(522), + [sym__reduction_attribute_reference] = STATE(522), + [sym_value_sequence] = STATE(2038), + [sym_qualified_expression] = STATE(522), + [sym_range_g] = STATE(1838), + [sym_expression] = STATE(1448), + [sym__relation] = STATE(605), + [sym_relation_membership] = STATE(605), + [sym_raise_expression] = STATE(605), + [sym__simple_expression] = STATE(656), + [sym_term] = STATE(549), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(538), + [sym__primary] = STATE(538), + [sym_primary_null] = STATE(538), + [sym_allocator] = STATE(538), + [sym_parameter_association] = STATE(1351), + [sym__conditional_expression] = STATE(1836), + [sym_quantified_expression] = STATE(1836), + [sym_declare_expression] = STATE(1836), + [sym_case_expression] = STATE(1836), + [sym_component_choice_list] = STATE(1835), + [sym__aggregate] = STATE(538), + [sym__delta_aggregate] = STATE(538), + [sym_extension_aggregate] = STATE(538), + [sym_record_delta_aggregate] = STATE(538), + [sym_array_delta_aggregate] = STATE(538), + [sym_record_aggregate] = STATE(538), + [sym__array_aggregate] = STATE(538), + [sym_positional_array_aggregate] = STATE(538), + [sym_null_array_aggregate] = STATE(538), + [sym_named_array_aggregate] = STATE(538), + [sym_parameter_specification] = STATE(1399), + [sym__parameter_specification_list] = STATE(1735), + [sym_if_expression] = STATE(1836), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(482), + [sym_gnatprep_identifier] = ACTIONS(484), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(486), + [sym_character_literal] = ACTIONS(484), + [sym_numeric_literal] = ACTIONS(358), + [anon_sym_PLUS] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(362), + [sym_target_name] = ACTIONS(484), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(366), + [aux_sym_iterated_element_association_token1] = ACTIONS(488), + [aux_sym_relation_membership_token1] = ACTIONS(490), + [aux_sym_raise_expression_token1] = ACTIONS(374), + [aux_sym_factor_abs_token1] = ACTIONS(376), + [aux_sym_primary_null_token1] = ACTIONS(492), + [aux_sym_allocator_token1] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(494), + [aux_sym_declare_expression_token1] = ACTIONS(382), + [aux_sym_case_expression_token1] = ACTIONS(384), + [aux_sym_component_choice_list_token1] = ACTIONS(496), + [aux_sym_if_expression_token1] = ACTIONS(392), + }, + [97] = { + [sym_unary_adding_operator] = STATE(529), + [sym__name] = STATE(522), + [sym_selected_component] = STATE(547), + [sym_slice] = STATE(547), + [sym__attribute_reference] = STATE(547), + [sym__reduction_attribute_reference] = STATE(547), + [sym_value_sequence] = STATE(2038), + [sym_qualified_expression] = STATE(547), + [sym__subtype_indication] = STATE(1467), + [sym_range_g] = STATE(1430), + [sym_expression] = STATE(1448), + [sym__relation] = STATE(605), + [sym_relation_membership] = STATE(605), + [sym_raise_expression] = STATE(605), + [sym__simple_expression] = STATE(656), + [sym_term] = STATE(549), + [sym__factor] = STATE(524), + [sym_factor_power] = STATE(524), + [sym_factor_abs] = STATE(524), + [sym_factor_not] = STATE(524), + [sym__parenthesized_expression] = STATE(538), + [sym__primary] = STATE(538), + [sym_primary_null] = STATE(538), + [sym_allocator] = STATE(538), + [sym_parameter_association] = STATE(1351), + [sym__conditional_expression] = STATE(1836), + [sym_quantified_expression] = STATE(1836), + [sym_declare_expression] = STATE(1836), + [sym_case_expression] = STATE(1836), + [sym_component_choice_list] = STATE(1835), + [sym__aggregate] = STATE(538), + [sym__delta_aggregate] = STATE(538), + [sym_extension_aggregate] = STATE(538), + [sym_record_delta_aggregate] = STATE(538), + [sym_array_delta_aggregate] = STATE(538), + [sym_record_aggregate] = STATE(538), + [sym_null_exclusion] = STATE(816), + [sym__discrete_range] = STATE(1328), + [sym__array_aggregate] = STATE(538), + [sym_positional_array_aggregate] = STATE(538), + [sym_null_array_aggregate] = STATE(538), + [sym_named_array_aggregate] = STATE(538), + [sym_if_expression] = STATE(1836), + [sym_function_call] = STATE(522), + [sym_identifier] = ACTIONS(498), + [sym_gnatprep_identifier] = ACTIONS(500), + [sym_comment] = ACTIONS(3), + [sym_string_literal] = ACTIONS(502), + [sym_character_literal] = ACTIONS(500), + [sym_numeric_literal] = ACTIONS(358), + [anon_sym_PLUS] = ACTIONS(360), + [anon_sym_DASH] = ACTIONS(362), + [sym_target_name] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(364), + [anon_sym_LBRACK] = ACTIONS(366), + [aux_sym_iterated_element_association_token1] = ACTIONS(488), + [aux_sym_relation_membership_token1] = ACTIONS(372), + [aux_sym_raise_expression_token1] = ACTIONS(374), + [aux_sym_factor_abs_token1] = ACTIONS(376), + [aux_sym_primary_null_token1] = ACTIONS(492), + [aux_sym_allocator_token1] = ACTIONS(380), + [anon_sym_LT_GT] = ACTIONS(494), + [aux_sym_declare_expression_token1] = ACTIONS(382), + [aux_sym_case_expression_token1] = ACTIONS(384), + [aux_sym_component_choice_list_token1] = ACTIONS(496), + [aux_sym_if_expression_token1] = ACTIONS(392), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(382), 1, - aux_sym_declare_expression_token1, - ACTIONS(384), 1, - aux_sym_case_expression_token1, - ACTIONS(392), 1, - aux_sym_if_expression_token1, - ACTIONS(488), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(492), 1, - aux_sym_primary_null_token1, - ACTIONS(504), 1, - sym_identifier, - ACTIONS(506), 1, - sym_string_literal, - STATE(529), 1, - sym_unary_adding_operator, - STATE(549), 1, - sym_term, - STATE(656), 1, - sym__simple_expression, - STATE(816), 1, - sym_null_exclusion, - STATE(1322), 1, - sym_discriminant_association, - STATE(1461), 1, - sym_expression, - STATE(1467), 1, - sym__subtype_indication, - STATE(2038), 1, - sym_value_sequence, - STATE(522), 2, - sym__name, - sym_function_call, - STATE(1328), 2, - sym_range_g, - sym__discrete_range, - ACTIONS(500), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(605), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(524), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(547), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(1897), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(538), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [130] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(382), 1, - aux_sym_declare_expression_token1, - ACTIONS(384), 1, - aux_sym_case_expression_token1, - ACTIONS(392), 1, - aux_sym_if_expression_token1, - ACTIONS(486), 1, - sym_string_literal, - ACTIONS(488), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(490), 1, - aux_sym_relation_membership_token1, - ACTIONS(492), 1, - aux_sym_primary_null_token1, - ACTIONS(494), 1, - anon_sym_LT_GT, - ACTIONS(496), 1, - aux_sym_component_choice_list_token1, - ACTIONS(508), 1, - sym_identifier, - STATE(529), 1, - sym_unary_adding_operator, - STATE(549), 1, - sym_term, - STATE(656), 1, - sym__simple_expression, - STATE(1351), 1, - sym_parameter_association, - STATE(1448), 1, - sym_expression, - STATE(1835), 1, - sym_component_choice_list, - STATE(1838), 1, - sym_range_g, - STATE(2038), 1, - sym_value_sequence, - ACTIONS(484), 3, - sym_gnatprep_identifier, - sym_character_literal, - sym_target_name, - STATE(605), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - STATE(524), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(1836), 5, - sym__conditional_expression, - sym_quantified_expression, - sym_declare_expression, - sym_case_expression, - sym_if_expression, - STATE(522), 7, - sym__name, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - sym_function_call, - STATE(538), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, - [260] = 28, + [0] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -17650,17 +17456,17 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(510), 1, + ACTIONS(504), 1, aux_sym_compilation_unit_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(514), 1, + ACTIONS(508), 1, aux_sym__package_specification_token3, - ACTIONS(516), 1, + ACTIONS(510), 1, aux_sym_allocator_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, STATE(931), 1, sym_generic_formal_part, @@ -17717,7 +17523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [380] = 37, + [120] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(352), 1, @@ -17746,7 +17552,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(386), 1, aux_sym_component_choice_list_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, STATE(529), 1, sym_unary_adding_operator, @@ -17818,220 +17624,323 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [518] = 27, + [258] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, + ACTIONS(358), 1, + sym_numeric_literal, + ACTIONS(360), 1, + anon_sym_PLUS, + ACTIONS(362), 1, + anon_sym_DASH, + ACTIONS(364), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, + anon_sym_LBRACK, + ACTIONS(372), 1, aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, + ACTIONS(374), 1, + aux_sym_raise_expression_token1, + ACTIONS(376), 1, + aux_sym_factor_abs_token1, + ACTIONS(380), 1, + aux_sym_allocator_token1, + ACTIONS(382), 1, + aux_sym_declare_expression_token1, + ACTIONS(384), 1, + aux_sym_case_expression_token1, + ACTIONS(392), 1, + aux_sym_if_expression_token1, + ACTIONS(488), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, - aux_sym__package_specification_token1, + ACTIONS(492), 1, + aux_sym_primary_null_token1, ACTIONS(518), 1, - aux_sym_access_to_subprogram_definition_token1, + sym_identifier, ACTIONS(520), 1, - aux_sym_interface_type_definition_token1, + sym_string_literal, + STATE(529), 1, + sym_unary_adding_operator, + STATE(549), 1, + sym_term, + STATE(656), 1, + sym__simple_expression, + STATE(816), 1, + sym_null_exclusion, + STATE(1322), 1, + sym_discriminant_association, + STATE(1461), 1, + sym_expression, + STATE(1467), 1, + sym__subtype_indication, + STATE(2038), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(1328), 2, + sym_range_g, + sym__discrete_range, + ACTIONS(500), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(605), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(547), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(1897), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(538), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [388] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(358), 1, + sym_numeric_literal, + ACTIONS(360), 1, + anon_sym_PLUS, + ACTIONS(362), 1, + anon_sym_DASH, + ACTIONS(364), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, + anon_sym_LBRACK, + ACTIONS(374), 1, + aux_sym_raise_expression_token1, + ACTIONS(376), 1, + aux_sym_factor_abs_token1, + ACTIONS(380), 1, + aux_sym_allocator_token1, + ACTIONS(382), 1, + aux_sym_declare_expression_token1, + ACTIONS(384), 1, + aux_sym_case_expression_token1, + ACTIONS(392), 1, + aux_sym_if_expression_token1, + ACTIONS(486), 1, + sym_string_literal, + ACTIONS(488), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(490), 1, + aux_sym_relation_membership_token1, + ACTIONS(492), 1, + aux_sym_primary_null_token1, + ACTIONS(494), 1, + anon_sym_LT_GT, + ACTIONS(496), 1, + aux_sym_component_choice_list_token1, + ACTIONS(522), 1, + sym_identifier, + STATE(529), 1, + sym_unary_adding_operator, + STATE(549), 1, + sym_term, + STATE(656), 1, + sym__simple_expression, + STATE(1351), 1, + sym_parameter_association, + STATE(1448), 1, + sym_expression, + STATE(1835), 1, + sym_component_choice_list, + STATE(1838), 1, + sym_range_g, + STATE(2038), 1, + sym_value_sequence, + ACTIONS(484), 3, + sym_gnatprep_identifier, + sym_character_literal, + sym_target_name, + STATE(605), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(1836), 5, + sym__conditional_expression, + sym_quantified_expression, + sym_declare_expression, + sym_case_expression, + sym_if_expression, + STATE(522), 7, + sym__name, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + sym_function_call, + STATE(538), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [518] = 26, + ACTIONS(3), 1, + sym_comment, ACTIONS(524), 1, - aux_sym_compilation_unit_token1, - ACTIONS(526), 1, - aux_sym__package_specification_token3, - STATE(931), 1, - sym_generic_formal_part, - STATE(1014), 1, - sym_overriding_indicator, - STATE(1094), 1, - sym__subprogram_specification, - STATE(1145), 1, - sym_procedure_specification, - STATE(1153), 1, - sym_function_specification, - STATE(2037), 1, - sym__package_specification, - STATE(2043), 1, - sym__defining_identifier_list, - STATE(335), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(106), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, - [635] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, sym_identifier, - ACTIONS(326), 1, + ACTIONS(527), 1, aux_sym_iterated_element_association_token1, - ACTIONS(510), 1, - aux_sym_compilation_unit_token1, - ACTIONS(512), 1, - aux_sym__package_specification_token1, - ACTIONS(514), 1, - aux_sym__package_specification_token3, - ACTIONS(518), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, - aux_sym_interface_type_definition_token1, - STATE(931), 1, - sym_generic_formal_part, - STATE(1014), 1, - sym_overriding_indicator, - STATE(1094), 1, - sym__subprogram_specification, - STATE(1145), 1, - sym_procedure_specification, - STATE(1153), 1, - sym_function_specification, - STATE(2037), 1, - sym__package_specification, - STATE(2043), 1, - sym__defining_identifier_list, - STATE(335), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(105), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, - [752] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, - aux_sym__package_specification_token1, - ACTIONS(518), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(528), 1, - aux_sym_compilation_unit_token1, ACTIONS(530), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(535), 1, + aux_sym__package_specification_token1, + ACTIONS(538), 1, + aux_sym_use_clause_token2, + ACTIONS(541), 1, + aux_sym_relation_membership_token1, + ACTIONS(544), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(547), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(550), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(553), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(556), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(559), 1, + aux_sym_global_mode_token1, + ACTIONS(562), 1, + aux_sym_pragma_g_token1, + ACTIONS(565), 1, + aux_sym_subtype_declaration_token1, + STATE(931), 1, + sym_generic_formal_part, + STATE(1014), 1, + sym_overriding_indicator, + STATE(1094), 1, + sym__subprogram_specification, + STATE(1145), 1, + sym_procedure_specification, + STATE(1153), 1, + sym_function_specification, + STATE(2037), 1, + sym__package_specification, + STATE(2043), 1, + sym__defining_identifier_list, + ACTIONS(533), 2, + aux_sym_compilation_unit_token1, + aux_sym__package_specification_token3, + STATE(335), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(102), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, + [633] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(506), 1, + aux_sym__package_specification_token1, + ACTIONS(512), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(514), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(568), 1, + aux_sym_compilation_unit_token1, + ACTIONS(570), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18088,7 +17997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [869] = 27, + [750] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(15), 1, @@ -18113,16 +18022,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, - aux_sym__package_specification_token1, - ACTIONS(518), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(528), 1, + ACTIONS(504), 1, aux_sym_compilation_unit_token1, - ACTIONS(530), 1, + ACTIONS(506), 1, + aux_sym__package_specification_token1, + ACTIONS(508), 1, aux_sym__package_specification_token3, + ACTIONS(512), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(514), 1, + aux_sym_interface_type_definition_token1, STATE(931), 1, sym_generic_formal_part, STATE(1014), 1, @@ -18143,7 +18052,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(106), 34, + STATE(105), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18178,37 +18087,41 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [986] = 26, + [867] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(532), 1, - sym_identifier, - ACTIONS(535), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(538), 1, + ACTIONS(15), 1, aux_sym_iterated_element_association_token2, - ACTIONS(543), 1, - aux_sym__package_specification_token1, - ACTIONS(546), 1, + ACTIONS(25), 1, aux_sym_use_clause_token2, - ACTIONS(549), 1, + ACTIONS(31), 1, aux_sym_relation_membership_token1, - ACTIONS(552), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(555), 1, + ACTIONS(39), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(558), 1, + ACTIONS(41), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(561), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(564), 1, + ACTIONS(51), 1, aux_sym_generic_formal_part_token1, - ACTIONS(567), 1, + ACTIONS(53), 1, aux_sym_global_mode_token1, - ACTIONS(570), 1, + ACTIONS(57), 1, aux_sym_pragma_g_token1, - ACTIONS(573), 1, + ACTIONS(83), 1, aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(506), 1, + aux_sym__package_specification_token1, + ACTIONS(512), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(514), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(572), 1, + aux_sym_compilation_unit_token1, + ACTIONS(574), 1, + aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, STATE(1014), 1, @@ -18223,16 +18136,103 @@ static const uint16_t ts_small_parse_table[] = { sym__package_specification, STATE(2043), 1, sym__defining_identifier_list, - ACTIONS(541), 2, - aux_sym_compilation_unit_token1, - aux_sym__package_specification_token3, STATE(335), 2, sym_protected_type_declaration, sym_task_type_declaration, STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(106), 34, + STATE(102), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, + [984] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(506), 1, + aux_sym__package_specification_token1, + ACTIONS(512), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(514), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(572), 1, + aux_sym_compilation_unit_token1, + ACTIONS(574), 1, + aux_sym__package_specification_token3, + STATE(931), 1, + sym_generic_formal_part, + STATE(1014), 1, + sym_overriding_indicator, + STATE(1094), 1, + sym__subprogram_specification, + STATE(1145), 1, + sym_procedure_specification, + STATE(1153), 1, + sym_function_specification, + STATE(2037), 1, + sym__package_specification, + STATE(2043), 1, + sym__defining_identifier_list, + STATE(335), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(103), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18292,13 +18292,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, - ACTIONS(576), 1, + ACTIONS(574), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18320,7 +18320,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(111), 34, + STATE(110), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18355,7 +18355,95 @@ static const uint16_t ts_small_parse_table[] = { sym_expression_function_declaration, sym_subtype_declaration, aux_sym__package_specification_repeat1, - [1215] = 35, + [1215] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(25), 1, + aux_sym_use_clause_token2, + ACTIONS(31), 1, + aux_sym_relation_membership_token1, + ACTIONS(39), 1, + aux_sym_access_to_subprogram_definition_token2, + ACTIONS(41), 1, + aux_sym_access_to_subprogram_definition_token3, + ACTIONS(51), 1, + aux_sym_generic_formal_part_token1, + ACTIONS(53), 1, + aux_sym_global_mode_token1, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(83), 1, + aux_sym_subtype_declaration_token1, + ACTIONS(324), 1, + sym_identifier, + ACTIONS(326), 1, + aux_sym_iterated_element_association_token1, + ACTIONS(506), 1, + aux_sym__package_specification_token1, + ACTIONS(512), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(514), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(570), 1, + aux_sym__package_specification_token3, + STATE(931), 1, + sym_generic_formal_part, + STATE(1014), 1, + sym_overriding_indicator, + STATE(1094), 1, + sym__subprogram_specification, + STATE(1145), 1, + sym_procedure_specification, + STATE(1153), 1, + sym_function_specification, + STATE(2037), 1, + sym__package_specification, + STATE(2043), 1, + sym__defining_identifier_list, + STATE(335), 2, + sym_protected_type_declaration, + sym_task_type_declaration, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(113), 34, + sym__basic_declarative_item, + sym__basic_declaration, + sym_package_declaration, + sym_use_clause, + sym__basic_declarative_item_pragma, + sym__type_declaration, + sym_full_type_declaration, + sym_private_type_declaration, + sym_private_extension_declaration, + sym_incomplete_type_declaration, + sym__aspect_clause, + sym_at_clause, + sym_attribute_definition_clause, + sym_enumeration_representation_clause, + sym_exception_declaration, + sym__generic_declaration, + sym_generic_subprogram_declaration, + sym_generic_package_declaration, + sym_generic_instantiation, + sym_null_procedure_declaration, + sym_number_declaration, + sym_object_declaration, + sym_pragma_g, + sym_record_representation_clause, + sym__renaming_declaration, + sym_object_renaming_declaration, + sym_exception_renaming_declaration, + sym_package_renaming_declaration, + sym_subprogram_renaming_declaration, + sym_generic_renaming_declaration, + sym_subprogram_declaration, + sym_expression_function_declaration, + sym_subtype_declaration, + aux_sym__package_specification_repeat1, + [1329] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(358), 1, @@ -18378,15 +18466,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(580), 1, + ACTIONS(578), 1, aux_sym_value_sequence_token1, - ACTIONS(582), 1, + ACTIONS(580), 1, anon_sym_RBRACK, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -18452,94 +18540,6 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [1347] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15), 1, - aux_sym_iterated_element_association_token2, - ACTIONS(25), 1, - aux_sym_use_clause_token2, - ACTIONS(31), 1, - aux_sym_relation_membership_token1, - ACTIONS(39), 1, - aux_sym_access_to_subprogram_definition_token2, - ACTIONS(41), 1, - aux_sym_access_to_subprogram_definition_token3, - ACTIONS(51), 1, - aux_sym_generic_formal_part_token1, - ACTIONS(53), 1, - aux_sym_global_mode_token1, - ACTIONS(57), 1, - aux_sym_pragma_g_token1, - ACTIONS(83), 1, - aux_sym_subtype_declaration_token1, - ACTIONS(324), 1, - sym_identifier, - ACTIONS(326), 1, - aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, - aux_sym__package_specification_token1, - ACTIONS(518), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(576), 1, - aux_sym__package_specification_token3, - STATE(931), 1, - sym_generic_formal_part, - STATE(1014), 1, - sym_overriding_indicator, - STATE(1094), 1, - sym__subprogram_specification, - STATE(1145), 1, - sym_procedure_specification, - STATE(1153), 1, - sym_function_specification, - STATE(2037), 1, - sym__package_specification, - STATE(2043), 1, - sym__defining_identifier_list, - STATE(335), 2, - sym_protected_type_declaration, - sym_task_type_declaration, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(106), 34, - sym__basic_declarative_item, - sym__basic_declaration, - sym_package_declaration, - sym_use_clause, - sym__basic_declarative_item_pragma, - sym__type_declaration, - sym_full_type_declaration, - sym_private_type_declaration, - sym_private_extension_declaration, - sym_incomplete_type_declaration, - sym__aspect_clause, - sym_at_clause, - sym_attribute_definition_clause, - sym_enumeration_representation_clause, - sym_exception_declaration, - sym__generic_declaration, - sym_generic_subprogram_declaration, - sym_generic_package_declaration, - sym_generic_instantiation, - sym_null_procedure_declaration, - sym_number_declaration, - sym_object_declaration, - sym_pragma_g, - sym_record_representation_clause, - sym__renaming_declaration, - sym_object_renaming_declaration, - sym_exception_renaming_declaration, - sym_package_renaming_declaration, - sym_subprogram_renaming_declaration, - sym_generic_renaming_declaration, - sym_subprogram_declaration, - sym_expression_function_declaration, - sym_subtype_declaration, - aux_sym__package_specification_repeat1, [1461] = 26, ACTIONS(3), 1, sym_comment, @@ -18565,13 +18565,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, - ACTIONS(526), 1, + ACTIONS(570), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18593,7 +18593,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(109), 34, + STATE(102), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18653,13 +18653,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, - ACTIONS(586), 1, + ACTIONS(584), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18681,7 +18681,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(106), 34, + STATE(112), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18741,13 +18741,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, - ACTIONS(526), 1, + ACTIONS(586), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18769,7 +18769,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(106), 34, + STATE(102), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18829,13 +18829,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(326), 1, aux_sym_iterated_element_association_token1, - ACTIONS(512), 1, + ACTIONS(506), 1, aux_sym__package_specification_token1, - ACTIONS(518), 1, + ACTIONS(512), 1, aux_sym_access_to_subprogram_definition_token1, - ACTIONS(520), 1, + ACTIONS(514), 1, aux_sym_interface_type_definition_token1, - ACTIONS(530), 1, + ACTIONS(584), 1, aux_sym__package_specification_token3, STATE(931), 1, sym_generic_formal_part, @@ -18857,7 +18857,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(337), 2, sym_single_protected_declaration, sym_single_task_declaration, - STATE(112), 34, + STATE(102), 34, sym__basic_declarative_item, sym__basic_declaration, sym_package_declaration, @@ -18915,13 +18915,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(580), 1, anon_sym_RBRACK, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19010,13 +19010,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(582), 1, + ACTIONS(580), 1, anon_sym_RBRACK, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19105,11 +19105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19198,11 +19198,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19291,11 +19291,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19483,7 +19483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_term, STATE(565), 1, sym__simple_expression, - STATE(873), 1, + STATE(874), 1, sym_non_empty_mode, STATE(1100), 1, sym_global_mode, @@ -19553,9 +19553,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19573,7 +19573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_range_g, STATE(1483), 1, sym__subtype_indication, - STATE(1573), 1, + STATE(1864), 1, sym_discrete_choice_list, STATE(2038), 1, sym_value_sequence, @@ -19638,9 +19638,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -19700,7 +19700,92 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3004] = 28, + [3004] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(358), 1, + sym_numeric_literal, + ACTIONS(360), 1, + anon_sym_PLUS, + ACTIONS(362), 1, + anon_sym_DASH, + ACTIONS(364), 1, + anon_sym_LPAREN, + ACTIONS(366), 1, + anon_sym_LBRACK, + ACTIONS(372), 1, + aux_sym_relation_membership_token1, + ACTIONS(374), 1, + aux_sym_raise_expression_token1, + ACTIONS(376), 1, + aux_sym_factor_abs_token1, + ACTIONS(380), 1, + aux_sym_allocator_token1, + ACTIONS(492), 1, + aux_sym_primary_null_token1, + ACTIONS(576), 1, + sym_identifier, + ACTIONS(582), 1, + aux_sym_component_choice_list_token1, + STATE(529), 1, + sym_unary_adding_operator, + STATE(549), 1, + sym_term, + STATE(656), 1, + sym__simple_expression, + STATE(816), 1, + sym_null_exclusion, + STATE(1312), 1, + sym_discrete_choice, + STATE(1437), 1, + sym_expression, + STATE(1481), 1, + sym_range_g, + STATE(1483), 1, + sym__subtype_indication, + STATE(1573), 1, + sym_discrete_choice_list, + STATE(2038), 1, + sym_value_sequence, + STATE(522), 2, + sym__name, + sym_function_call, + STATE(605), 3, + sym__relation, + sym_relation_membership, + sym_raise_expression, + ACTIONS(354), 4, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + STATE(524), 4, + sym__factor, + sym_factor_power, + sym_factor_abs, + sym_factor_not, + STATE(474), 5, + sym_selected_component, + sym_slice, + sym__attribute_reference, + sym__reduction_attribute_reference, + sym_qualified_expression, + STATE(538), 14, + sym__parenthesized_expression, + sym__primary, + sym_primary_null, + sym_allocator, + sym__aggregate, + sym__delta_aggregate, + sym_extension_aggregate, + sym_record_delta_aggregate, + sym_array_delta_aggregate, + sym_record_aggregate, + sym__array_aggregate, + sym_positional_array_aggregate, + sym_null_array_aggregate, + sym_named_array_aggregate, + [3118] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(358), 1, @@ -19727,7 +19812,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, ACTIONS(596), 1, aux_sym_attribute_designator_token2, @@ -19784,91 +19869,6 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [3116] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(358), 1, - sym_numeric_literal, - ACTIONS(360), 1, - anon_sym_PLUS, - ACTIONS(362), 1, - anon_sym_DASH, - ACTIONS(364), 1, - anon_sym_LPAREN, - ACTIONS(366), 1, - anon_sym_LBRACK, - ACTIONS(372), 1, - aux_sym_relation_membership_token1, - ACTIONS(374), 1, - aux_sym_raise_expression_token1, - ACTIONS(376), 1, - aux_sym_factor_abs_token1, - ACTIONS(380), 1, - aux_sym_allocator_token1, - ACTIONS(492), 1, - aux_sym_primary_null_token1, - ACTIONS(578), 1, - sym_identifier, - ACTIONS(584), 1, - aux_sym_component_choice_list_token1, - STATE(529), 1, - sym_unary_adding_operator, - STATE(549), 1, - sym_term, - STATE(656), 1, - sym__simple_expression, - STATE(816), 1, - sym_null_exclusion, - STATE(1312), 1, - sym_discrete_choice, - STATE(1437), 1, - sym_expression, - STATE(1481), 1, - sym_range_g, - STATE(1483), 1, - sym__subtype_indication, - STATE(1864), 1, - sym_discrete_choice_list, - STATE(2038), 1, - sym_value_sequence, - STATE(522), 2, - sym__name, - sym_function_call, - STATE(605), 3, - sym__relation, - sym_relation_membership, - sym_raise_expression, - ACTIONS(354), 4, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - STATE(524), 4, - sym__factor, - sym_factor_power, - sym_factor_abs, - sym_factor_not, - STATE(474), 5, - sym_selected_component, - sym_slice, - sym__attribute_reference, - sym__reduction_attribute_reference, - sym_qualified_expression, - STATE(538), 14, - sym__parenthesized_expression, - sym__primary, - sym_primary_null, - sym_allocator, - sym__aggregate, - sym__delta_aggregate, - sym_extension_aggregate, - sym_record_delta_aggregate, - sym_array_delta_aggregate, - sym_record_aggregate, - sym__array_aggregate, - sym_positional_array_aggregate, - sym_null_array_aggregate, - sym_named_array_aggregate, [3230] = 3, ACTIONS(3), 1, sym_comment, @@ -20066,9 +20066,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, - ACTIONS(584), 1, + ACTIONS(582), 1, aux_sym_component_choice_list_token1, STATE(529), 1, sym_unary_adding_operator, @@ -24157,7 +24157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, STATE(529), 1, sym_unary_adding_operator, @@ -24234,7 +24234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, ACTIONS(886), 1, aux_sym_component_choice_list_token1, @@ -24315,7 +24315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, STATE(529), 1, sym_unary_adding_operator, @@ -24393,7 +24393,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, STATE(529), 1, sym_unary_adding_operator, @@ -24549,7 +24549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primary_null_token1, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(508), 1, + ACTIONS(522), 1, sym_identifier, STATE(529), 1, sym_unary_adding_operator, @@ -28396,7 +28396,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, ACTIONS(950), 1, aux_sym_loop_parameter_specification_token1, @@ -29886,7 +29886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_allocator_token1, ACTIONS(492), 1, aux_sym_primary_null_token1, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, STATE(529), 1, sym_unary_adding_operator, @@ -41167,120 +41167,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, - [27292] = 8, + [27292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1748), 1, - anon_sym_DOT, - ACTIONS(1750), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_actual_parameter_part, - STATE(531), 1, - sym_index_constraint, - ACTIONS(1742), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1744), 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, - [27354] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1748), 1, - anon_sym_DOT, - ACTIONS(1750), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_actual_parameter_part, - STATE(532), 1, - sym_index_constraint, - ACTIONS(1752), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1754), 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, - [27416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1758), 1, + ACTIONS(1744), 1, sym_identifier, - ACTIONS(1756), 43, + ACTIONS(1742), 43, ts_builtin_sym_end, sym_gnatprep_identifier, sym_string_literal, @@ -41324,6 +41216,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, aux_sym_subtype_declaration_token1, + [27344] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1752), 1, + anon_sym_DOT, + ACTIONS(1754), 1, + anon_sym_LPAREN, + STATE(481), 1, + sym_actual_parameter_part, + STATE(531), 1, + sym_index_constraint, + ACTIONS(1746), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1748), 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, + [27406] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1752), 1, + anon_sym_DOT, + ACTIONS(1754), 1, + anon_sym_LPAREN, + STATE(481), 1, + sym_actual_parameter_part, + STATE(532), 1, + sym_index_constraint, + ACTIONS(1756), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1758), 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, [27468] = 3, ACTIONS(3), 1, sym_comment, @@ -42727,9 +42727,9 @@ static const uint16_t ts_small_parse_table[] = { [29136] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, - ACTIONS(1748), 1, + ACTIONS(1752), 1, anon_sym_DOT, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -42779,7 +42779,7 @@ static const uint16_t ts_small_parse_table[] = { [29195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1752), 1, anon_sym_DOT, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -43284,14 +43284,14 @@ static const uint16_t ts_small_parse_table[] = { [29789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 6, + ACTIONS(1746), 6, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1744), 33, + ACTIONS(1748), 33, anon_sym_SLASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, @@ -44738,7 +44738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_accept_statement, STATE(41), 1, sym_procedure_call_statement, - STATE(870), 1, + STATE(872), 1, sym_guard, STATE(1141), 1, sym_select_alternative, @@ -45023,7 +45023,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, ACTIONS(2054), 1, aux_sym_access_to_subprogram_definition_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1592), 1, sym__defining_identifier_list, @@ -45065,7 +45065,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, ACTIONS(2056), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1592), 1, sym__defining_identifier_list, @@ -45107,7 +45107,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(2081), 1, aux_sym_pragma_g_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1592), 1, sym__defining_identifier_list, @@ -45149,7 +45149,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, ACTIONS(2056), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1592), 1, sym__defining_identifier_list, @@ -45191,7 +45191,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, ACTIONS(2084), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1592), 1, sym__defining_identifier_list, @@ -45301,7 +45301,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__package_specification_token3, ACTIONS(2092), 1, aux_sym_allocator_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(2052), 1, sym_protected_definition, @@ -45343,7 +45343,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__package_specification_token3, ACTIONS(2094), 1, aux_sym_allocator_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1623), 1, sym_protected_definition, @@ -45422,7 +45422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__package_specification_token3, ACTIONS(2099), 1, aux_sym_allocator_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1745), 1, sym_protected_definition, @@ -45464,7 +45464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__package_specification_token3, ACTIONS(2101), 1, aux_sym_allocator_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1662), 1, sym_protected_definition, @@ -45506,7 +45506,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__package_specification_token3, ACTIONS(2103), 1, aux_sym_allocator_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1664), 1, sym_protected_definition, @@ -45578,7 +45578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(2090), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1885), 1, sym_protected_definition, @@ -45618,7 +45618,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(2090), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1968), 1, sym_protected_definition, @@ -45730,7 +45730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(2090), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1641), 1, sym_protected_definition, @@ -45799,7 +45799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(2090), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1742), 1, sym_protected_definition, @@ -45839,7 +45839,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_compilation_unit_token1, ACTIONS(2090), 1, aux_sym__package_specification_token3, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1741), 1, sym_protected_definition, @@ -45861,7 +45861,7 @@ static const uint16_t ts_small_parse_table[] = { [32957] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -46374,7 +46374,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, ACTIONS(2192), 1, aux_sym_compilation_unit_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, STATE(1133), 3, sym_function_specification, @@ -46408,7 +46408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_global_mode_token1, ACTIONS(2214), 1, aux_sym_pragma_g_token1, - STATE(998), 1, + STATE(999), 1, sym_overriding_indicator, ACTIONS(2197), 2, aux_sym_compilation_unit_token1, @@ -46498,7 +46498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(881), 7, + STATE(879), 7, sym__name, sym_selected_component, sym_slice, @@ -46549,7 +46549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, ACTIONS(1918), 1, aux_sym_relation_membership_token1, @@ -46565,12 +46565,12 @@ static const uint16_t ts_small_parse_table[] = { sym__subtype_indication, STATE(2038), 1, sym_value_sequence, + STATE(1102), 2, + sym_access_definition, + sym__return_subtype_indication, STATE(1140), 2, sym__name, sym_function_call, - STATE(1162), 2, - sym_access_definition, - sym__return_subtype_indication, ACTIONS(354), 4, sym_gnatprep_identifier, sym_string_literal, @@ -47046,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, ACTIONS(1918), 1, aux_sym_relation_membership_token1, @@ -47232,7 +47232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, ACTIONS(1918), 1, aux_sym_relation_membership_token1, @@ -47431,7 +47431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(11), 1, anon_sym_LBRACK, - ACTIONS(578), 1, + ACTIONS(576), 1, sym_identifier, ACTIONS(1918), 1, aux_sym_relation_membership_token1, @@ -48069,7 +48069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(494), 7, + STATE(495), 7, sym__name, sym_selected_component, sym_slice, @@ -48134,7 +48134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(876), 7, + STATE(881), 7, sym__name, sym_selected_component, sym_slice, @@ -48145,7 +48145,7 @@ static const uint16_t ts_small_parse_table[] = { [35863] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1752), 1, anon_sym_DOT, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -48175,7 +48175,7 @@ static const uint16_t ts_small_parse_table[] = { [35903] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1752), 1, anon_sym_DOT, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -48224,7 +48224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(898), 7, + STATE(886), 7, sym__name, sym_selected_component, sym_slice, @@ -48298,7 +48298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(786), 1, sym_null_exclusion, - STATE(1120), 1, + STATE(1162), 1, sym_access_definition, STATE(2038), 1, sym_value_sequence, @@ -48328,7 +48328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(754), 1, sym_null_exclusion, - STATE(879), 1, + STATE(877), 1, sym_access_definition, STATE(2038), 1, sym_value_sequence, @@ -48532,7 +48532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(999), 7, + STATE(1000), 7, sym__name, sym_selected_component, sym_slice, @@ -48890,7 +48890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(999), 7, + STATE(1000), 7, sym__name, sym_selected_component, sym_slice, @@ -49274,7 +49274,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_relation_membership_token1, STATE(816), 1, sym_null_exclusion, - STATE(1148), 1, + STATE(1151), 1, sym__subtype_indication, STATE(2038), 1, sym_value_sequence, @@ -49369,7 +49369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(494), 7, + STATE(495), 7, sym__name, sym_selected_component, sym_slice, @@ -49451,7 +49451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(880), 7, + STATE(875), 7, sym__name, sym_selected_component, sym_slice, @@ -49558,7 +49558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(876), 7, + STATE(881), 7, sym__name, sym_selected_component, sym_slice, @@ -49584,7 +49584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(999), 7, + STATE(1000), 7, sym__name, sym_selected_component, sym_slice, @@ -49712,7 +49712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49735,7 +49735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49781,7 +49781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49828,7 +49828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49920,7 +49920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49966,7 +49966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -49990,7 +49990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(898), 7, + STATE(886), 7, sym__name, sym_selected_component, sym_slice, @@ -50059,7 +50059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50082,7 +50082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50105,7 +50105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50175,7 +50175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(884), 7, + STATE(891), 7, sym__name, sym_selected_component, sym_slice, @@ -50395,7 +50395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50418,7 +50418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50488,7 +50488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50511,7 +50511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50534,7 +50534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50580,7 +50580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50604,7 +50604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(888), 7, + STATE(896), 7, sym__name, sym_selected_component, sym_slice, @@ -50628,7 +50628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(895), 7, + STATE(884), 7, sym__name, sym_selected_component, sym_slice, @@ -50670,7 +50670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50693,7 +50693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50735,7 +50735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50758,7 +50758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -50869,7 +50869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -51051,7 +51051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -51093,7 +51093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -51233,7 +51233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(876), 7, + STATE(881), 7, sym__name, sym_selected_component, sym_slice, @@ -51256,7 +51256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -51279,7 +51279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(893), 7, + STATE(895), 7, sym__name, sym_selected_component, sym_slice, @@ -51353,7 +51353,7 @@ static const uint16_t ts_small_parse_table[] = { [39968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -51490,7 +51490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(886), 7, + STATE(888), 7, sym__name, sym_selected_component, sym_slice, @@ -51645,7 +51645,7 @@ static const uint16_t ts_small_parse_table[] = { [40328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -51719,7 +51719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(493), 7, + STATE(494), 7, sym__name, sym_selected_component, sym_slice, @@ -51794,7 +51794,7 @@ static const uint16_t ts_small_parse_table[] = { [40514] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -51996,7 +51996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(880), 7, + STATE(875), 7, sym__name, sym_selected_component, sym_slice, @@ -52028,7 +52028,7 @@ static const uint16_t ts_small_parse_table[] = { [40806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -52228,7 +52228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(877), 7, + STATE(878), 7, sym__name, sym_selected_component, sym_slice, @@ -52386,7 +52386,7 @@ static const uint16_t ts_small_parse_table[] = { [41250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -52450,7 +52450,7 @@ static const uint16_t ts_small_parse_table[] = { [41330] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1748), 1, + ACTIONS(1752), 1, anon_sym_DOT, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -52526,7 +52526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string_literal, sym_character_literal, sym_target_name, - STATE(896), 7, + STATE(898), 7, sym__name, sym_selected_component, sym_slice, @@ -52597,10 +52597,34 @@ static const uint16_t ts_small_parse_table[] = { sym__reduction_attribute_reference, sym_qualified_expression, sym_function_call, - [41518] = 4, + [41518] = 9, ACTIONS(3), 1, sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, ACTIONS(2812), 1, + sym_identifier, + ACTIONS(2814), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2816), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2818), 1, + aux_sym_interface_type_definition_token1, + STATE(1713), 1, + sym__defining_identifier_list, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(858), 5, + sym__declare_item, + sym_object_declaration, + sym_pragma_g, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 1, aux_sym_chunk_specification_token1, ACTIONS(1664), 2, anon_sym_DASH, @@ -52616,7 +52640,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR_STAR, - [41541] = 3, + [41574] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2822), 1, + sym_identifier, + ACTIONS(2825), 1, + aux_sym_subprogram_body_token1, + ACTIONS(2827), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2830), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2833), 1, + aux_sym_pragma_g_token1, + STATE(1713), 1, + sym__defining_identifier_list, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(855), 5, + sym__declare_item, + sym_object_declaration, + sym_pragma_g, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2712), 1, @@ -52634,7 +52682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_relation_membership_token1, - [41562] = 4, + [41628] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(364), 1, @@ -52653,7 +52701,31 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [41585] = 4, + [41651] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + aux_sym_pragma_g_token1, + ACTIONS(2812), 1, + sym_identifier, + ACTIONS(2816), 1, + aux_sym_access_to_subprogram_definition_token1, + ACTIONS(2818), 1, + aux_sym_interface_type_definition_token1, + ACTIONS(2836), 1, + aux_sym_subprogram_body_token1, + STATE(1713), 1, + sym__defining_identifier_list, + STATE(337), 2, + sym_single_protected_declaration, + sym_single_task_declaration, + STATE(855), 5, + sym__declare_item, + sym_object_declaration, + sym_pragma_g, + sym_object_renaming_declaration, + aux_sym_declare_expression_repeat1, + [41684] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(364), 1, @@ -52672,7 +52744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [41608] = 10, + [41707] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -52685,7 +52757,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_terminate_alternative_token1, STATE(40), 1, sym_accept_statement, - STATE(866), 1, + STATE(869), 1, sym_guard, STATE(1291), 1, sym_select_alternative, @@ -52697,12 +52769,12 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [41643] = 3, + [41742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(2838), 1, sym_identifier, - ACTIONS(2816), 12, + ACTIONS(2840), 12, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -52715,30 +52787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_relation_membership_token1, - [41664] = 4, + [41763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_formal_part, - ACTIONS(2820), 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, - [41686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, + ACTIONS(2842), 1, sym_identifier, - ACTIONS(2824), 11, + ACTIONS(2844), 11, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -52750,14 +52804,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [41706] = 4, + [41783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(882), 1, sym_formal_part, - ACTIONS(2826), 10, + ACTIONS(2848), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -52768,12 +52822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [41728] = 3, + [41805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(2850), 1, sym_identifier, - ACTIONS(2830), 11, + ACTIONS(2852), 11, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, @@ -52785,14 +52839,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_factor_abs_token1, aux_sym_primary_null_token1, aux_sym_allocator_token1, - [41748] = 4, + [41825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - STATE(878), 1, + STATE(876), 1, sym_formal_part, - ACTIONS(2832), 10, + ACTIONS(2854), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -52803,10 +52857,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [41770] = 2, + [41847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 12, + ACTIONS(2856), 1, + sym_identifier, + ACTIONS(2858), 11, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_numeric_literal, + sym_target_name, + anon_sym_LPAREN, + anon_sym_LBRACK, + aux_sym_relation_membership_token1, + aux_sym_factor_abs_token1, + aux_sym_primary_null_token1, + aux_sym_allocator_token1, + [41867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 12, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_filter_token1, @@ -52819,24 +52890,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_object_renaming_declaration_token1, aux_sym_result_profile_token1, aux_sym_accept_statement_token2, - [41788] = 3, + [41885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, - sym_identifier, - ACTIONS(2838), 11, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_numeric_literal, - sym_target_name, + ACTIONS(2846), 1, 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, - [41808] = 8, + STATE(880), 1, + sym_formal_part, + ACTIONS(2862), 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, + [41907] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -52857,12 +52929,12 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [41837] = 3, + [41936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, + ACTIONS(2864), 1, sym_identifier, - ACTIONS(2842), 10, + ACTIONS(2866), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, @@ -52873,12 +52945,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [41856] = 3, + [41955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(2868), 1, sym_identifier, - ACTIONS(2846), 10, + ACTIONS(2870), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, @@ -52889,28 +52961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [41875] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 1, - sym_identifier, - ACTIONS(2851), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2853), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2856), 1, - aux_sym_interface_type_definition_token1, - STATE(1713), 1, - sym__defining_identifier_list, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(869), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41904] = 8, + [41974] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(69), 1, @@ -52931,70 +52982,12 @@ static const uint16_t ts_small_parse_table[] = { sym_delay_alternative, sym_accept_alternative, sym_terminate_alternative, - [41933] = 8, + [42003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2861), 1, - aux_sym_subprogram_body_token1, - ACTIONS(2863), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2865), 1, - aux_sym_interface_type_definition_token1, - STATE(1713), 1, - sym__defining_identifier_list, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(869), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41962] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 1, - sym_identifier, - ACTIONS(2863), 1, - aux_sym_access_to_subprogram_definition_token1, - ACTIONS(2865), 1, - aux_sym_interface_type_definition_token1, - ACTIONS(2867), 1, - aux_sym_subprogram_body_token1, - STATE(1713), 1, - sym__defining_identifier_list, - STATE(337), 2, - sym_single_protected_declaration, - sym_single_task_declaration, - STATE(871), 4, - sym__declare_item, - sym_object_declaration, - sym_object_renaming_declaration, - aux_sym_declare_expression_repeat1, - [41991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2869), 1, - sym_identifier, - ACTIONS(2871), 10, - sym_gnatprep_identifier, - sym_string_literal, - sym_character_literal, - sym_target_name, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - [42010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2873), 1, - sym_identifier, - ACTIONS(2875), 10, + ACTIONS(2874), 10, aux_sym_iterated_element_association_token1, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, @@ -53005,96 +52998,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, aux_sym_pragma_g_token1, - [42029] = 2, + [42022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 10, + ACTIONS(2876), 1, + sym_identifier, + ACTIONS(2878), 10, + sym_gnatprep_identifier, + sym_string_literal, + sym_character_literal, + sym_target_name, + anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_chunk_specification_token1, - aux_sym_iterator_specification_token1, + anon_sym_LBRACK, + aux_sym_iterator_filter_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, - [42045] = 10, + [42041] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_COLON_EQ, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1194), 1, - sym__assign_value, - STATE(1415), 1, - sym_aspect_specification, - ACTIONS(2879), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [42077] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_COLON_EQ, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1136), 1, - sym__assign_value, - STATE(1514), 1, - sym_aspect_specification, - ACTIONS(2881), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [42109] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 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, - [42125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 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, - [42141] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53110,13 +53033,41 @@ static const uint16_t ts_small_parse_table[] = { sym__assign_value, STATE(1480), 1, sym_aspect_specification, - ACTIONS(2885), 2, + ACTIONS(2880), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42173] = 10, + [42073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(2862), 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, + [42089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 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, + [42105] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53128,17 +53079,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_with_clause_token2, STATE(481), 1, sym_actual_parameter_part, - STATE(1102), 1, + STATE(1136), 1, + sym__assign_value, + STATE(1514), 1, + sym_aspect_specification, + ACTIONS(2884), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42137] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_COLON_EQ, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1120), 1, sym__assign_value, STATE(1529), 1, sym_aspect_specification, - ACTIONS(2887), 2, + ACTIONS(2886), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42205] = 2, + [42169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 10, + ACTIONS(2888), 10, anon_sym_RPAREN, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, @@ -53149,24 +53122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, aux_sym_object_renaming_declaration_token1, aux_sym_accept_statement_token2, - [42221] = 2, + [42185] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 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, - [42237] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53176,18 +53135,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(2891), 1, - anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - STATE(1267), 1, + STATE(1194), 1, sym__assign_value, - STATE(1622), 1, + STATE(1415), 1, sym_aspect_specification, - [42268] = 8, + ACTIONS(2890), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [42217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(2854), 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, + [42233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 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, + [42249] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2403), 1, + aux_sym_iterator_filter_token1, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1359), 1, + sym_iterator_filter, + ACTIONS(2894), 3, + aux_sym_iterated_element_association_token2, + anon_sym_EQ_GT, + aux_sym_loop_statement_token1, + [42276] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53203,69 +53210,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42295] = 9, + [42303] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2893), 1, - anon_sym_LPAREN, - ACTIONS(2895), 1, - aux_sym__package_specification_token2, - ACTIONS(2897), 1, - aux_sym_result_profile_token1, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1488), 1, - sym_formal_part, - STATE(1104), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42324] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2893), 1, - anon_sym_LPAREN, - ACTIONS(2897), 1, - aux_sym_result_profile_token1, - ACTIONS(2899), 1, - aux_sym__package_specification_token2, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1488), 1, - sym_formal_part, - STATE(1104), 2, - sym__parameter_and_result_profile, - sym_result_profile, - [42353] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2403), 1, - aux_sym_iterator_filter_token1, + ACTIONS(2176), 1, + anon_sym_COLON_EQ, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + ACTIONS(2896), 1, + anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - STATE(1363), 1, - sym_iterator_filter, - ACTIONS(2901), 3, - aux_sym_iterated_element_association_token2, - anon_sym_EQ_GT, - aux_sym_loop_statement_token1, - [42380] = 8, + STATE(1343), 1, + sym__assign_value, + STATE(1849), 1, + sym_aspect_specification, + [42334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2898), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + aux_sym__package_specification_token2, + ACTIONS(2902), 1, + aux_sym_result_profile_token1, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1488), 1, + sym_formal_part, + STATE(1104), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42363] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2898), 1, + anon_sym_LPAREN, + ACTIONS(2902), 1, + aux_sym_result_profile_token1, + ACTIONS(2904), 1, + aux_sym__package_specification_token2, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1488), 1, + sym_formal_part, + STATE(1104), 2, + sym__parameter_and_result_profile, + sym_result_profile, + [42392] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53277,14 +53286,14 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1345), 1, sym_iterator_filter, - ACTIONS(2903), 3, + ACTIONS(2906), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42407] = 8, + [42419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53296,32 +53305,14 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1348), 1, sym_iterator_filter, - ACTIONS(2903), 3, + ACTIONS(2906), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42434] = 7, + [42446] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 1, - anon_sym_COMMA, - ACTIONS(2905), 1, - anon_sym_COLON, - ACTIONS(2908), 1, - anon_sym_SEMI, - ACTIONS(2910), 1, - aux_sym_object_renaming_declaration_token1, - STATE(1221), 1, - aux_sym__defining_identifier_list_repeat1, - ACTIONS(1666), 4, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - [42459] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53331,7 +53322,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(2912), 1, + ACTIONS(2908), 1, + anon_sym_SEMI, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1267), 1, + sym__assign_value, + STATE(1622), 1, + sym_aspect_specification, + [42477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2176), 1, + anon_sym_COLON_EQ, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + ACTIONS(2910), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, @@ -53339,29 +53351,28 @@ static const uint16_t ts_small_parse_table[] = { sym__assign_value, STATE(1761), 1, sym_aspect_specification, - [42490] = 8, + [42508] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2916), 1, - aux_sym_expression_token1, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1028), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2914), 3, + ACTIONS(2046), 1, + anon_sym_COMMA, + ACTIONS(2912), 1, + anon_sym_COLON, + ACTIONS(2915), 1, anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [42517] = 8, + ACTIONS(2917), 1, + aux_sym_object_renaming_declaration_token1, + STATE(1221), 1, + aux_sym__defining_identifier_list_repeat1, + ACTIONS(1666), 4, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON_EQ, + [42533] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53377,10 +53388,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42544] = 8, + [42560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, + sym_tick, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_DOT, + ACTIONS(2921), 1, + aux_sym_expression_token1, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1028), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2919), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [42587] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53390,77 +53420,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, STATE(481), 1, sym_actual_parameter_part, - STATE(1359), 1, + STATE(1363), 1, sym_iterator_filter, - ACTIONS(2901), 3, + ACTIONS(2894), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [42571] = 8, + [42614] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2898), 1, anon_sym_LPAREN, - ACTIONS(2920), 1, + ACTIONS(2925), 1, aux_sym__package_specification_token2, STATE(481), 1, sym_actual_parameter_part, - STATE(1193), 1, + STATE(1148), 1, sym_formal_part, - ACTIONS(2918), 3, + ACTIONS(2923), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [42598] = 8, + [42641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2898), 1, anon_sym_LPAREN, - ACTIONS(2923), 1, - aux_sym__package_specification_token2, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1193), 1, - sym_formal_part, - ACTIONS(2918), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [42625] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - sym_tick, - ACTIONS(1818), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2176), 1, - anon_sym_COLON_EQ, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - ACTIONS(2926), 1, - anon_sym_SEMI, - STATE(481), 1, - sym_actual_parameter_part, - STATE(1343), 1, - sym__assign_value, - STATE(1849), 1, - sym_aspect_specification, - [42656] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(2928), 1, + aux_sym__package_specification_token2, + STATE(481), 1, + sym_actual_parameter_part, + STATE(1148), 1, + sym_formal_part, + ACTIONS(2923), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [42668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2930), 7, + ACTIONS(2933), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53468,12 +53477,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42672] = 3, + [42684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 1, + ACTIONS(2935), 1, sym_identifier, - ACTIONS(2934), 7, + ACTIONS(2937), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53481,12 +53490,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42688] = 3, + [42700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2936), 1, + ACTIONS(2939), 1, sym_identifier, - ACTIONS(2938), 7, + ACTIONS(2941), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53494,12 +53503,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42704] = 3, + [42716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, + ACTIONS(2943), 1, sym_identifier, - ACTIONS(2942), 7, + ACTIONS(2945), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53507,12 +53516,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42720] = 3, + [42732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2944), 1, + ACTIONS(2947), 1, sym_identifier, - ACTIONS(2946), 7, + ACTIONS(2949), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53520,10 +53529,10 @@ 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, - [42736] = 6, + [42748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53531,17 +53540,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(2948), 4, + ACTIONS(2951), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token1, aux_sym_expression_token3, - [42758] = 3, + [42770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 1, + ACTIONS(2953), 1, sym_identifier, - ACTIONS(2952), 7, + ACTIONS(2955), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53549,12 +53558,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42774] = 3, + [42786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(2957), 1, sym_identifier, - ACTIONS(2956), 7, + ACTIONS(2959), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53562,12 +53571,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42790] = 3, + [42802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 1, + ACTIONS(2961), 1, sym_identifier, - ACTIONS(2960), 7, + ACTIONS(2963), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53575,14 +53584,14 @@ 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, - [42806] = 6, + [42818] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(2965), 1, anon_sym_LPAREN, - ACTIONS(2964), 1, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(2966), 1, + ACTIONS(2969), 1, aux_sym_record_component_association_list_token1, STATE(1796), 1, sym_enumeration_aggregate, @@ -53591,12 +53600,12 @@ static const uint16_t ts_small_parse_table[] = { sym_positional_array_aggregate, sym_null_array_aggregate, sym_named_array_aggregate, - [42828] = 3, + [42840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(2971), 1, sym_identifier, - ACTIONS(2970), 7, + ACTIONS(2973), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53604,30 +53613,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42844] = 8, + [42856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2974), 1, - aux_sym_with_clause_token2, ACTIONS(2977), 1, + aux_sym_with_clause_token2, + ACTIONS(2980), 1, aux_sym_expression_token1, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(2972), 2, + ACTIONS(2975), 2, anon_sym_SEMI, aux_sym_expression_token3, - [42870] = 3, + [42882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(2982), 1, sym_identifier, - ACTIONS(2981), 7, + ACTIONS(2984), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53635,12 +53644,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42886] = 3, + [42898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, + ACTIONS(2986), 1, sym_identifier, - ACTIONS(2985), 7, + ACTIONS(2988), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53648,12 +53657,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42902] = 3, + [42914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2990), 1, sym_identifier, - ACTIONS(2989), 7, + ACTIONS(2992), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53661,12 +53670,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42918] = 3, + [42930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(2994), 1, sym_identifier, - ACTIONS(2993), 7, + ACTIONS(2996), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53674,12 +53683,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42934] = 3, + [42946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, + ACTIONS(2998), 1, sym_identifier, - ACTIONS(2997), 7, + ACTIONS(3000), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53687,10 +53696,10 @@ 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, - [42950] = 8, + [42962] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53702,15 +53711,15 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1434), 1, sym__assign_value, - ACTIONS(2999), 2, + ACTIONS(3002), 2, anon_sym_RPAREN, anon_sym_SEMI, - [42976] = 3, + [42988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(3004), 1, sym_identifier, - ACTIONS(3003), 7, + ACTIONS(3006), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53718,12 +53727,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [42992] = 3, + [43004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(3008), 1, sym_identifier, - ACTIONS(3007), 7, + ACTIONS(3010), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53731,12 +53740,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43008] = 3, + [43020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, + ACTIONS(3012), 1, sym_identifier, - ACTIONS(3011), 7, + ACTIONS(3014), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53744,12 +53753,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43024] = 3, + [43036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 1, + ACTIONS(3016), 1, sym_identifier, - ACTIONS(3015), 7, + ACTIONS(3018), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53757,12 +53766,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43040] = 3, + [43052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, + ACTIONS(3020), 1, sym_identifier, - ACTIONS(3019), 7, + ACTIONS(3022), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53770,12 +53779,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43056] = 3, + [43068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 1, + ACTIONS(3024), 1, sym_identifier, - ACTIONS(3023), 7, + ACTIONS(3026), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53783,12 +53792,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43072] = 3, + [43084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(3028), 1, sym_identifier, - ACTIONS(3027), 7, + ACTIONS(3030), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53796,30 +53805,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43088] = 8, + [43100] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3031), 1, - aux_sym_with_clause_token2, ACTIONS(3034), 1, + aux_sym_with_clause_token2, + ACTIONS(3037), 1, aux_sym_expression_token1, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(3029), 2, + ACTIONS(3032), 2, anon_sym_SEMI, aux_sym_expression_token3, - [43114] = 3, + [43126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, + ACTIONS(3039), 1, sym_identifier, - ACTIONS(3038), 7, + ACTIONS(3041), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53827,12 +53836,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43130] = 3, + [43142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3043), 1, sym_identifier, - ACTIONS(3042), 7, + ACTIONS(3045), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53840,12 +53849,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43146] = 3, + [43158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, + ACTIONS(3047), 1, sym_identifier, - ACTIONS(3046), 7, + ACTIONS(3049), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53853,12 +53862,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43162] = 3, + [43174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(3050), 7, + ACTIONS(3053), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53866,12 +53875,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43178] = 3, + [43190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3055), 1, sym_identifier, - ACTIONS(3054), 7, + ACTIONS(3057), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53879,10 +53888,10 @@ 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, - [43194] = 8, + [43206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -53894,17 +53903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1459), 1, sym__assign_value, - ACTIONS(3056), 2, + ACTIONS(3059), 2, anon_sym_RPAREN, anon_sym_SEMI, - [43220] = 7, + [43232] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(2054), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3058), 1, + ACTIONS(3061), 1, aux_sym__package_specification_token1, STATE(408), 1, sym_package_declaration, @@ -53914,12 +53923,12 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [43244] = 3, + [43256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 1, + ACTIONS(3063), 1, sym_identifier, - ACTIONS(3062), 7, + ACTIONS(3065), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53927,12 +53936,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43260] = 3, + [43272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3067), 1, sym_identifier, - ACTIONS(3066), 7, + ACTIONS(3069), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53940,12 +53949,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43276] = 3, + [43288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3071), 1, sym_identifier, - ACTIONS(3070), 7, + ACTIONS(3073), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53953,12 +53962,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43292] = 3, + [43304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, + ACTIONS(3075), 1, sym_identifier, - ACTIONS(3074), 7, + ACTIONS(3077), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -53966,33 +53975,33 @@ 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, - [43308] = 7, + [43320] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2898), 1, anon_sym_LPAREN, STATE(481), 1, sym_actual_parameter_part, - STATE(1193), 1, + STATE(1148), 1, sym_formal_part, - ACTIONS(2918), 3, + ACTIONS(2923), 3, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_with_clause_token2, - [43332] = 8, + [43344] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2898), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(481), 1, sym_actual_parameter_part, @@ -54001,12 +54010,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(1104), 2, sym__parameter_and_result_profile, sym_result_profile, - [43358] = 3, + [43370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3079), 1, sym_identifier, - ACTIONS(3078), 7, + ACTIONS(3081), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54014,10 +54023,10 @@ 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, - [43374] = 9, + [43386] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54025,20 +54034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3080), 1, + ACTIONS(3083), 1, aux_sym__package_specification_token2, - ACTIONS(3082), 1, + ACTIONS(3085), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, STATE(1927), 1, sym_aspect_specification, - [43402] = 3, + [43414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, + ACTIONS(3087), 1, sym_identifier, - ACTIONS(3086), 7, + ACTIONS(3089), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54046,12 +54055,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43418] = 3, + [43430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, + ACTIONS(3091), 1, sym_identifier, - ACTIONS(3090), 7, + ACTIONS(3093), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54059,12 +54068,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43434] = 3, + [43446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3095), 1, sym_identifier, - ACTIONS(3094), 7, + ACTIONS(3097), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54072,12 +54081,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43450] = 3, + [43462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3099), 1, sym_identifier, - ACTIONS(3098), 7, + ACTIONS(3101), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54085,30 +54094,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43466] = 8, + [43478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3102), 1, - aux_sym_with_clause_token2, ACTIONS(3105), 1, + aux_sym_with_clause_token2, + ACTIONS(3108), 1, aux_sym_expression_token1, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(3100), 2, + ACTIONS(3103), 2, anon_sym_SEMI, aux_sym_expression_token3, - [43492] = 3, + [43504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3107), 1, + ACTIONS(3110), 1, sym_identifier, - ACTIONS(3109), 7, + ACTIONS(3112), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54116,12 +54125,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43508] = 3, + [43520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3111), 1, + ACTIONS(3114), 1, sym_identifier, - ACTIONS(3113), 7, + ACTIONS(3116), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54129,12 +54138,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_pragma_g_token1, - [43524] = 3, + [43536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 1, + ACTIONS(3118), 1, sym_identifier, - ACTIONS(3117), 7, + ACTIONS(3120), 7, aux_sym_iterated_element_association_token2, aux_sym__package_specification_token1, aux_sym_with_clause_token2, @@ -54142,24 +54151,24 @@ 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, - [43540] = 8, + [43552] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3119), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - ACTIONS(3121), 1, + ACTIONS(3124), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1338), 1, aux_sym__name_list_repeat1, - [43565] = 3, + [43577] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2019), 1, @@ -54171,39 +54180,39 @@ static const uint16_t ts_small_parse_table[] = { sym_target_name, anon_sym_LBRACK, aux_sym_attribute_designator_token1, - [43580] = 3, + [43592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3126), 1, sym_identifier, - ACTIONS(3125), 6, + ACTIONS(3128), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym__package_specification_token3, - [43595] = 8, + [43607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3119), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3130), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1288), 1, aux_sym__name_list_repeat1, - [43620] = 8, + [43632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54211,16 +54220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3129), 1, + ACTIONS(3132), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1795), 1, sym_aspect_specification, - [43645] = 8, + [43657] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54228,16 +54237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3131), 1, + ACTIONS(3134), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1924), 1, sym_aspect_specification, - [43670] = 8, + [43682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54245,16 +54254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3133), 1, + ACTIONS(3136), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1705), 1, sym_aspect_specification, - [43695] = 8, + [43707] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54262,16 +54271,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3135), 1, + ACTIONS(3138), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1809), 1, sym_aspect_specification, - [43720] = 8, + [43732] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54279,20 +54288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3137), 1, + ACTIONS(3140), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1971), 1, sym_aspect_specification, - [43745] = 8, + [43757] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3139), 1, + ACTIONS(3142), 1, anon_sym_LPAREN, - ACTIONS(3141), 1, + ACTIONS(3144), 1, aux_sym_iterator_filter_token1, STATE(1103), 1, sym_non_empty_entry_body_formal_part, @@ -54302,10 +54311,10 @@ static const uint16_t ts_small_parse_table[] = { sym_formal_part, STATE(1615), 1, sym_entry_barrier, - [43770] = 7, + [43782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54315,13 +54324,13 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1206), 1, aux_sym__name_list_repeat1, - ACTIONS(3127), 2, + ACTIONS(3130), 2, anon_sym_COMMA, anon_sym_RPAREN, - [43793] = 2, + [43805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 7, + ACTIONS(3146), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -54329,37 +54338,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [43806] = 3, + [43818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 1, + ACTIONS(3148), 1, sym_identifier, - ACTIONS(3147), 6, + ACTIONS(3150), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym__package_specification_token3, - [43821] = 6, + [43833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3152), 1, anon_sym_LPAREN, - ACTIONS(3151), 1, + ACTIONS(3154), 1, anon_sym_SEMI, - ACTIONS(3153), 1, + ACTIONS(3156), 1, aux_sym__package_specification_token2, - ACTIONS(3155), 1, + ACTIONS(3158), 1, aux_sym_expression_token3, STATE(1321), 3, sym__discriminant_part, sym_unknown_discriminant_part, sym_known_discriminant_part, - [43842] = 2, + [43854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 7, + ACTIONS(3160), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -54367,22 +54376,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [43855] = 3, + [43867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3162), 1, sym_identifier, - ACTIONS(3161), 6, + ACTIONS(3164), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [43870] = 8, + [43882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54390,16 +54399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3163), 1, + ACTIONS(3166), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1599), 1, sym_aspect_specification, - [43895] = 8, + [43907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54407,16 +54416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3165), 1, + ACTIONS(3168), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1578), 1, sym_aspect_specification, - [43920] = 8, + [43932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54424,16 +54433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3167), 1, + ACTIONS(3170), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1895), 1, sym_aspect_specification, - [43945] = 8, + [43957] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54441,16 +54450,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3169), 1, + ACTIONS(3172), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1675), 1, sym_aspect_specification, - [43970] = 8, + [43982] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54458,28 +54467,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3171), 1, + ACTIONS(3174), 1, aux_sym__package_specification_token2, STATE(481), 1, sym_actual_parameter_part, STATE(1927), 1, sym_aspect_specification, - [43995] = 3, + [44007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 1, + ACTIONS(3176), 1, sym_identifier, - ACTIONS(3175), 6, + ACTIONS(3178), 6, sym_gnatprep_identifier, sym_string_literal, sym_character_literal, sym_target_name, anon_sym_LBRACK, aux_sym_relation_membership_token1, - [44010] = 6, + [44022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54487,14 +54496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(3177), 3, + ACTIONS(3180), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [44031] = 2, + [44043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 7, + ACTIONS(3182), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -54502,10 +54511,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44044] = 8, + [44056] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54513,16 +54522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3181), 1, + ACTIONS(3184), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1856), 1, sym_aspect_specification, - [44069] = 8, + [44081] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54530,16 +54539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3183), 1, + ACTIONS(3186), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1861), 1, sym_aspect_specification, - [44094] = 2, + [44106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3185), 7, + ACTIONS(3188), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -54547,10 +54556,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44107] = 2, + [44119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 7, + ACTIONS(3190), 7, aux_sym_iterated_element_association_token1, aux_sym__package_specification_token3, aux_sym_relation_membership_token1, @@ -54558,10 +54567,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, aux_sym_global_mode_token1, - [44120] = 8, + [44132] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54569,16 +54578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3189), 1, + ACTIONS(3192), 1, aux_sym__package_specification_token2, STATE(481), 1, sym_actual_parameter_part, STATE(1790), 1, sym_aspect_specification, - [44145] = 3, + [44157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3194), 1, sym_tick, ACTIONS(2108), 6, anon_sym_COMMA, @@ -54587,10 +54596,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [44160] = 8, + [44172] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54598,16 +54607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3193), 1, + ACTIONS(3196), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(2006), 1, sym_aspect_specification, - [44185] = 8, + [44197] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54615,16 +54624,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3195), 1, + ACTIONS(3198), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1979), 1, sym_aspect_specification, - [44210] = 8, + [44222] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54632,31 +54641,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3197), 1, + ACTIONS(3200), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1976), 1, sym_aspect_specification, - [44235] = 6, + [44247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3202), 1, aux_sym_chunk_specification_token1, - ACTIONS(3201), 1, - aux_sym_iterated_element_association_token2, ACTIONS(3204), 1, + aux_sym_iterated_element_association_token2, + ACTIONS(3207), 1, anon_sym_COLON, - ACTIONS(3206), 1, + ACTIONS(3209), 1, aux_sym_iterator_specification_token1, ACTIONS(1666), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [44256] = 8, + [44268] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54664,16 +54673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3208), 1, + ACTIONS(3211), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1994), 1, sym_aspect_specification, - [44281] = 8, + [44293] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54681,91 +54690,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3210), 1, + ACTIONS(3213), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, STATE(1977), 1, sym_aspect_specification, - [44306] = 7, + [44318] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3212), 1, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3214), 1, + ACTIONS(3217), 1, anon_sym_SEMI, - ACTIONS(3216), 1, + ACTIONS(3219), 1, aux_sym__package_specification_token2, STATE(1135), 1, sym_known_discriminant_part, STATE(1447), 1, sym_aspect_specification, - [44328] = 2, + [44340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 6, + ACTIONS(3221), 1, anon_sym_COMMA, + ACTIONS(3223), 1, anon_sym_RPAREN, + ACTIONS(3227), 1, + aux_sym_with_clause_token2, + STATE(1431), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3225), 2, anon_sym_EQ_GT, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - [44340] = 7, + anon_sym_PIPE, + [44360] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3220), 1, + ACTIONS(3229), 1, anon_sym_SEMI, - ACTIONS(3222), 1, + ACTIONS(3231), 1, aux_sym_with_clause_token2, STATE(481), 1, sym_actual_parameter_part, - [44362] = 7, + [44382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3224), 1, + ACTIONS(3233), 1, aux_sym_iterator_filter_token1, - ACTIONS(3226), 1, + ACTIONS(3235), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [44384] = 3, + [44404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 1, - anon_sym_COLON, - ACTIONS(1666), 5, - sym_tick, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3239), 1, anon_sym_EQ_GT, - anon_sym_PIPE, - [44398] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3230), 1, + ACTIONS(3237), 5, anon_sym_COMMA, - STATE(1012), 1, - aux_sym_aspect_mark_list_repeat1, - ACTIONS(3232), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [44414] = 6, + [44418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3241), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_aspect_mark_list_repeat1, + ACTIONS(3243), 4, + anon_sym_RPAREN, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + [44434] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, @@ -54776,26 +54789,26 @@ static const uint16_t ts_small_parse_table[] = { sym__assign_value, STATE(1531), 1, sym_aspect_specification, - ACTIONS(3234), 2, + ACTIONS(3245), 2, anon_sym_RPAREN, anon_sym_SEMI, - [44434] = 5, + [44454] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(2054), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3236), 1, + ACTIONS(3247), 1, aux_sym__package_specification_token1, STATE(1190), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [44452] = 7, + [44472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54807,21 +54820,21 @@ static const uint16_t ts_small_parse_table[] = { sym_actual_parameter_part, STATE(1954), 1, sym__assign_value, - [44474] = 6, + [44494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 1, + ACTIONS(3249), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(3251), 1, anon_sym_RBRACK, - ACTIONS(3244), 1, + ACTIONS(3253), 1, aux_sym_with_clause_token2, STATE(1349), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3242), 2, + ACTIONS(3225), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [44494] = 7, + [44514] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -54830,16 +54843,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_iterated_element_association_token1, ACTIONS(420), 1, aux_sym_subprogram_body_token1, - ACTIONS(3246), 1, + ACTIONS(3255), 1, aux_sym_declare_expression_token1, - ACTIONS(3248), 1, + ACTIONS(3257), 1, aux_sym_loop_statement_token1, STATE(1949), 1, sym_iteration_scheme, - [44516] = 6, + [44536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54847,17 +54860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(3250), 2, + ACTIONS(3259), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [44536] = 7, + [44556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3261), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3254), 1, + ACTIONS(3263), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3256), 1, + ACTIONS(3265), 1, aux_sym_entry_declaration_token1, STATE(1026), 1, sym__subprogram_specification, @@ -54865,37 +54878,49 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1191), 1, sym_procedure_specification, - [44558] = 6, + [44578] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 1, - anon_sym_COMMA, - ACTIONS(3260), 1, - anon_sym_RPAREN, - ACTIONS(3262), 1, - aux_sym_with_clause_token2, - STATE(1431), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3242), 2, + ACTIONS(2048), 1, + sym_identifier, + ACTIONS(3267), 1, + aux_sym_iterated_element_association_token1, + STATE(1399), 1, + sym_parameter_specification, + STATE(1735), 1, + sym__parameter_specification_list, + STATE(1737), 1, + sym__defining_identifier_list, + STATE(1747), 1, + sym_entry_index_specification, + [44600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3269), 1, + anon_sym_COLON, + ACTIONS(1666), 5, + sym_tick, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, - [44578] = 5, + [44614] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(2054), 1, aux_sym_access_to_subprogram_definition_token3, - ACTIONS(3256), 1, + ACTIONS(3265), 1, aux_sym_entry_declaration_token1, - STATE(1151), 3, + STATE(1193), 3, sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [44596] = 6, + [44632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -54903,21 +54928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(481), 1, sym_actual_parameter_part, - ACTIONS(3264), 2, + ACTIONS(3271), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [44616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3268), 1, - anon_sym_EQ_GT, - ACTIONS(3266), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_iterator_filter_token1, - anon_sym_SEMI, - aux_sym__package_specification_token2, - [44630] = 7, + [44652] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(368), 1, @@ -54928,174 +54942,169 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_non_empty_mode_token1, STATE(739), 1, sym_global_mode, - STATE(873), 1, + STATE(874), 1, sym_non_empty_mode, STATE(1454), 1, sym_global_aspect_element, - [44652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3270), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3272), 1, - aux_sym_with_clause_token1, - ACTIONS(3274), 1, - aux_sym_allocator_token1, - ACTIONS(3276), 1, - aux_sym_private_type_declaration_token1, - ACTIONS(3278), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3280), 1, - aux_sym_private_extension_declaration_token1, [44674] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 1, - sym_identifier, - ACTIONS(3282), 1, - aux_sym_iterated_element_association_token1, - STATE(1399), 1, - sym_parameter_specification, - STATE(1735), 1, - sym__parameter_specification_list, - STATE(1737), 1, - sym__defining_identifier_list, - STATE(1747), 1, - sym_entry_index_specification, - [44696] = 7, + ACTIONS(3273), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3275), 1, + aux_sym_with_clause_token1, + ACTIONS(3277), 1, + aux_sym_allocator_token1, + ACTIONS(3279), 1, + aux_sym_private_type_declaration_token1, + ACTIONS(3281), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3283), 1, + aux_sym_private_extension_declaration_token1, + [44696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3285), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ_GT, + aux_sym_iterator_filter_token1, + anon_sym_SEMI, + aux_sym__package_specification_token2, + [44708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3270), 1, + ACTIONS(3273), 1, aux_sym_compilation_unit_token1, - ACTIONS(3284), 1, + ACTIONS(3287), 1, aux_sym_allocator_token1, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, STATE(1546), 1, sym_record_definition, - [44718] = 4, + [44730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3288), 1, + ACTIONS(3291), 1, anon_sym_COMMA, STATE(1005), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3291), 4, + ACTIONS(3294), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [44734] = 7, + [44746] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3293), 1, + ACTIONS(3296), 1, anon_sym_SEMI, - ACTIONS(3295), 1, + ACTIONS(3298), 1, aux_sym_with_clause_token2, STATE(481), 1, sym_actual_parameter_part, - [44756] = 7, + [44768] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3270), 1, + ACTIONS(3273), 1, aux_sym_compilation_unit_token1, - ACTIONS(3297), 1, + ACTIONS(3300), 1, anon_sym_SEMI, - ACTIONS(3299), 1, + ACTIONS(3302), 1, aux_sym_with_clause_token1, STATE(1546), 1, sym_record_definition, - [44778] = 4, + [44790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(2915), 1, anon_sym_SEMI, - ACTIONS(3301), 1, + ACTIONS(3304), 1, anon_sym_COLON, ACTIONS(1666), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [44794] = 6, + [44806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 1, + ACTIONS(3152), 1, anon_sym_LPAREN, - ACTIONS(3303), 1, + ACTIONS(3306), 1, anon_sym_SEMI, - ACTIONS(3305), 1, + ACTIONS(3308), 1, aux_sym__package_specification_token2, STATE(1400), 1, sym_known_discriminant_part, STATE(1493), 2, sym__discriminant_part, sym_unknown_discriminant_part, - [44814] = 2, + [44826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 6, + ACTIONS(3310), 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, - [44826] = 5, + [44838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3312), 1, sym_identifier, STATE(1379), 1, sym_quantifier, - ACTIONS(3311), 2, + ACTIONS(3314), 2, aux_sym_use_clause_token1, aux_sym_quantifier_token1, STATE(1503), 2, sym_loop_parameter_specification, sym_iterator_specification, - [44844] = 4, + [44856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3230), 1, + ACTIONS(3241), 1, anon_sym_COMMA, STATE(1005), 1, aux_sym_aspect_mark_list_repeat1, - ACTIONS(3313), 4, + ACTIONS(3316), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [44860] = 3, + [44872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, + ACTIONS(3318), 1, anon_sym_SEMI, ACTIONS(1704), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [44873] = 6, + [44885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3261), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3254), 1, + ACTIONS(3263), 1, aux_sym_access_to_subprogram_definition_token3, STATE(1097), 1, sym__subprogram_specification, @@ -55103,533 +55112,533 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1191), 1, sym_procedure_specification, - [44892] = 3, + [44904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(2915), 1, anon_sym_SEMI, ACTIONS(1666), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COLON_EQ, - [44905] = 6, + [44917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3317), 1, + ACTIONS(3320), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [44924] = 6, + [44936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3319), 1, + ACTIONS(3322), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [44943] = 6, + [44955] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3321), 1, + ACTIONS(3324), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, - [44962] = 6, + [44974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3323), 1, + ACTIONS(3326), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [44981] = 6, + [44993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3325), 1, + ACTIONS(3328), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, - [45000] = 4, + [45012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3332), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3327), 2, + ACTIONS(3330), 2, aux_sym__package_specification_token3, aux_sym_expression_token4, STATE(1021), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [45015] = 6, + [45027] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3332), 1, + ACTIONS(3335), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45034] = 2, + [45046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3334), 5, + ACTIONS(3337), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [45045] = 2, + [45057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3336), 5, + ACTIONS(3339), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [45056] = 6, + [45068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3338), 1, + ACTIONS(3341), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, - [45075] = 6, + [45087] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_SEMI, - ACTIONS(3342), 1, + ACTIONS(3345), 1, aux_sym__package_specification_token2, - ACTIONS(3344), 1, + ACTIONS(3347), 1, aux_sym_object_renaming_declaration_token1, STATE(1441), 1, sym_aspect_specification, - [45094] = 6, + [45106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3346), 1, + ACTIONS(3349), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45113] = 4, + [45125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 1, + ACTIONS(2921), 1, aux_sym_expression_token1, STATE(1042), 1, aux_sym__interface_list_repeat1, - ACTIONS(3348), 3, + ACTIONS(3351), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45128] = 5, + [45140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(1488), 1, sym_formal_part, STATE(882), 2, sym__parameter_and_result_profile, sym_result_profile, - [45145] = 6, + [45157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3350), 1, + ACTIONS(3353), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45164] = 6, + [45176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3352), 1, + ACTIONS(3355), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45183] = 6, + [45195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3354), 1, + ACTIONS(3357), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, - [45202] = 5, + [45214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(3359), 1, anon_sym_RPAREN, - ACTIONS(3358), 1, + ACTIONS(3361), 1, aux_sym_expression_token4, - ACTIONS(3360), 1, + ACTIONS(3363), 1, aux_sym_elsif_expression_item_token1, STATE(1084), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [45219] = 6, + [45231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3362), 1, + ACTIONS(3365), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45238] = 4, + [45250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1234), 1, sym_formal_part, - ACTIONS(3364), 3, + ACTIONS(3367), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45253] = 6, + [45265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3366), 1, + ACTIONS(3369), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45272] = 5, + [45284] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(1488), 1, sym_formal_part, STATE(1234), 2, sym__parameter_and_result_profile, sym_result_profile, - [45289] = 6, + [45301] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3368), 1, + ACTIONS(3371), 1, anon_sym_SEMI, STATE(1378), 1, sym__assign_value, STATE(1773), 1, sym_aspect_specification, - [45308] = 6, + [45320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3370), 1, + ACTIONS(3373), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45327] = 6, + [45339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3372), 1, + ACTIONS(3375), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45346] = 6, + [45358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3374), 1, + ACTIONS(3377), 1, aux_sym_at_clause_token1, STATE(481), 1, sym_actual_parameter_part, - [45365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - aux_sym_expression_token1, - STATE(1042), 1, - aux_sym__interface_list_repeat1, - ACTIONS(2948), 3, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - [45380] = 5, + [45377] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3379), 1, + aux_sym_expression_token1, + STATE(1042), 1, + aux_sym__interface_list_repeat1, + ACTIONS(2951), 3, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + [45392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3382), 1, aux_sym__package_specification_token3, - ACTIONS(3381), 1, + ACTIONS(3384), 1, aux_sym_expression_token4, - ACTIONS(3383), 1, + ACTIONS(3386), 1, aux_sym_elsif_expression_item_token1, STATE(1091), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [45397] = 6, + [45409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3385), 1, + ACTIONS(3388), 1, anon_sym_RPAREN, STATE(481), 1, sym_actual_parameter_part, - [45416] = 6, + [45428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3387), 1, + ACTIONS(3390), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45435] = 6, + [45447] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3389), 1, + ACTIONS(3392), 1, anon_sym_SEMI, STATE(1344), 1, sym__assign_value, STATE(1851), 1, sym_aspect_specification, - [45454] = 4, + [45466] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2403), 1, aux_sym_iterator_filter_token1, STATE(1228), 1, sym_iterator_filter, - ACTIONS(3391), 3, + ACTIONS(3394), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45469] = 5, + [45481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3238), 1, + ACTIONS(3249), 1, anon_sym_COMMA, - ACTIONS(3240), 1, + ACTIONS(3251), 1, anon_sym_RBRACK, STATE(1349), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3242), 2, + ACTIONS(3225), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [45486] = 6, + [45498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3393), 1, + ACTIONS(3396), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45505] = 6, + [45517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3395), 1, + ACTIONS(3398), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45524] = 5, + [45536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(1488), 1, sym_formal_part, STATE(1326), 2, sym__parameter_and_result_profile, sym_result_profile, - [45541] = 4, + [45553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1326), 1, sym_formal_part, - ACTIONS(3397), 3, + ACTIONS(3400), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [45556] = 6, + [45568] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3399), 1, + ACTIONS(3402), 1, anon_sym_SEMI, STATE(1296), 1, sym__assign_value, STATE(1915), 1, sym_aspect_specification, - [45575] = 6, + [45587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3401), 1, + ACTIONS(3404), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45594] = 3, + [45606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3406), 1, aux_sym__package_specification_token2, ACTIONS(1666), 4, sym_tick, anon_sym_DOT, anon_sym_LPAREN, aux_sym_with_clause_token2, - [45607] = 5, + [45619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(1488), 1, sym_formal_part, - STATE(878), 2, + STATE(876), 2, sym__parameter_and_result_profile, sym_result_profile, - [45624] = 6, + [45636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3406), 1, + ACTIONS(3409), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45643] = 4, + [45655] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(77), 1, @@ -55640,153 +55649,153 @@ static const uint16_t ts_small_parse_table[] = { sym__delay_statement, sym_delay_until_statement, sym_delay_relative_statement, - [45658] = 6, + [45670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3408), 1, + ACTIONS(3411), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45677] = 6, + [45689] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3410), 1, + ACTIONS(3413), 1, anon_sym_SEMI, STATE(1300), 1, sym__assign_value, STATE(1743), 1, sym_aspect_specification, - [45696] = 6, + [45708] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3412), 1, + ACTIONS(3415), 1, anon_sym_SEMI, STATE(1366), 1, sym__assign_value, STATE(1758), 1, sym_aspect_specification, - [45715] = 6, + [45727] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3414), 1, + ACTIONS(3417), 1, anon_sym_SEMI, - ACTIONS(3416), 1, + ACTIONS(3419), 1, aux_sym__package_specification_token2, - ACTIONS(3418), 1, + ACTIONS(3421), 1, aux_sym_object_renaming_declaration_token1, STATE(1505), 1, sym_aspect_specification, - [45734] = 6, + [45746] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3420), 1, + ACTIONS(3423), 1, anon_sym_SEMI, STATE(1308), 1, sym__assign_value, STATE(1890), 1, sym_aspect_specification, - [45753] = 6, + [45765] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3422), 1, + ACTIONS(3425), 1, anon_sym_SEMI, STATE(1314), 1, sym__assign_value, STATE(1883), 1, sym_aspect_specification, - [45772] = 6, + [45784] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3424), 1, + ACTIONS(3427), 1, anon_sym_SEMI, STATE(1373), 1, sym__assign_value, STATE(1719), 1, sym_aspect_specification, - [45791] = 6, + [45803] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(496), 1, aux_sym_component_choice_list_token1, - ACTIONS(3426), 1, + ACTIONS(3429), 1, sym_identifier, - ACTIONS(3428), 1, + ACTIONS(3431), 1, sym_string_literal, STATE(1442), 1, sym__named_record_component_association, STATE(1896), 1, sym_component_choice_list, - [45810] = 6, + [45822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3430), 1, + ACTIONS(3433), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45829] = 6, + [45841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3432), 1, + ACTIONS(3435), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45848] = 6, + [45860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3434), 1, + ACTIONS(3437), 1, anon_sym_COMMA, STATE(481), 1, sym_actual_parameter_part, - [45867] = 6, + [45879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -55796,75 +55805,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_range_attribute_designator_token1, STATE(481), 1, sym_actual_parameter_part, - [45886] = 6, + [45898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3436), 1, + ACTIONS(3439), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [45905] = 4, + [45917] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2403), 1, aux_sym_iterator_filter_token1, STATE(1260), 1, sym_iterator_filter, - ACTIONS(3438), 3, + ACTIONS(3441), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [45920] = 6, + [45932] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3440), 1, + ACTIONS(3443), 1, sym_tick, - ACTIONS(3442), 1, + ACTIONS(3445), 1, aux_sym_iterated_element_association_token2, STATE(481), 1, sym_actual_parameter_part, - [45939] = 6, + [45951] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3444), 1, + ACTIONS(3447), 1, anon_sym_LPAREN, - ACTIONS(3446), 1, + ACTIONS(3449), 1, anon_sym_SEMI, STATE(1266), 1, sym_formal_part, STATE(1618), 1, sym_aspect_specification, - [45958] = 6, + [45970] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3448), 1, + ACTIONS(3451), 1, anon_sym_SEMI, STATE(1273), 1, sym__assign_value, STATE(1636), 1, sym_aspect_specification, - [45977] = 6, + [45989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3252), 1, + ACTIONS(3261), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(3254), 1, + ACTIONS(3263), 1, aux_sym_access_to_subprogram_definition_token3, STATE(1026), 1, sym__subprogram_specification, @@ -55872,20 +55881,20 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, STATE(1191), 1, sym_procedure_specification, - [45996] = 6, + [46008] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3450), 1, + ACTIONS(3453), 1, aux_sym_compilation_unit_token1, - ACTIONS(3452), 1, + ACTIONS(3455), 1, aux_sym_with_clause_token1, STATE(1548), 1, sym_record_definition, - [46015] = 4, + [46027] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 1, @@ -55896,50 +55905,50 @@ static const uint16_t ts_small_parse_table[] = { sym_function_specification, sym_procedure_specification, sym__subprogram_specification, - [46030] = 6, + [46042] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3454), 1, + ACTIONS(3457), 1, anon_sym_SEMI, STATE(1272), 1, sym__assign_value, STATE(1632), 1, sym_aspect_specification, - [46049] = 5, + [46061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3363), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3456), 1, + ACTIONS(3459), 1, anon_sym_RPAREN, - ACTIONS(3458), 1, + ACTIONS(3461), 1, aux_sym_expression_token4, STATE(1033), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [46066] = 6, + [46078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3460), 1, + ACTIONS(3463), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [46085] = 6, + [46097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3464), 1, + ACTIONS(3467), 1, anon_sym_LT_GT, STATE(1376), 1, sym_discriminant_specification, @@ -55947,44 +55956,44 @@ static const uint16_t ts_small_parse_table[] = { sym_discriminant_specification_list, STATE(1778), 1, sym__defining_identifier_list, - [46104] = 6, + [46116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3466), 1, + ACTIONS(3469), 1, aux_sym_object_renaming_declaration_token1, STATE(481), 1, sym_actual_parameter_part, - [46123] = 4, + [46135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, + ACTIONS(3473), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3468), 2, + ACTIONS(3471), 2, anon_sym_RPAREN, aux_sym_expression_token4, STATE(1084), 2, sym_elsif_expression_item, aux_sym_if_expression_repeat1, - [46138] = 6, + [46150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3473), 1, + ACTIONS(3476), 1, anon_sym_RPAREN, STATE(481), 1, sym_actual_parameter_part, - [46157] = 2, + [46169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2140), 5, @@ -55993,45 +56002,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_declare_expression_token1, aux_sym_loop_statement_token1, aux_sym_iteration_scheme_token1, - [46168] = 5, + [46180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, STATE(1488), 1, sym_formal_part, - STATE(883), 2, + STATE(880), 2, sym__parameter_and_result_profile, sym_result_profile, - [46185] = 6, + [46197] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3212), 1, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3475), 1, + ACTIONS(3478), 1, aux_sym__package_specification_token2, STATE(1396), 1, sym_known_discriminant_part, STATE(1739), 1, sym_aspect_specification, - [46204] = 6, + [46216] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3477), 1, + ACTIONS(3480), 1, anon_sym_LPAREN, - ACTIONS(3479), 1, + ACTIONS(3482), 1, anon_sym_SEMI, STATE(1332), 1, sym_formal_part, STATE(1866), 1, sym_aspect_specification, - [46223] = 6, + [46235] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2052), 1, @@ -56044,438 +56053,438 @@ static const uint16_t ts_small_parse_table[] = { sym_procedure_specification, STATE(1199), 1, sym__subprogram_specification, - [46242] = 5, + [46254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 1, + ACTIONS(3386), 1, aux_sym_elsif_expression_item_token1, - ACTIONS(3481), 1, + ACTIONS(3484), 1, aux_sym__package_specification_token3, - ACTIONS(3483), 1, + ACTIONS(3486), 1, aux_sym_expression_token4, STATE(1021), 2, sym_elsif_statement_item, aux_sym_if_statement_repeat1, - [46259] = 6, + [46271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, ACTIONS(2124), 1, anon_sym_DOT, - ACTIONS(3485), 1, + ACTIONS(3488), 1, anon_sym_SEMI, STATE(481), 1, sym_actual_parameter_part, - [46278] = 6, + [46290] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(3487), 1, + ACTIONS(3490), 1, anon_sym_SEMI, STATE(1304), 1, sym_formal_part, STATE(1902), 1, sym_aspect_specification, - [46297] = 6, + [46309] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3414), 1, + ACTIONS(3417), 1, anon_sym_SEMI, - ACTIONS(3418), 1, + ACTIONS(3421), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3489), 1, + ACTIONS(3492), 1, aux_sym__package_specification_token2, STATE(1579), 1, sym_aspect_specification, - [46316] = 2, + [46328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 5, + ACTIONS(3294), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [46327] = 6, + [46339] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(3491), 1, + ACTIONS(3494), 1, anon_sym_SEMI, STATE(1305), 1, sym_formal_part, STATE(1677), 1, sym_aspect_specification, - [46346] = 6, + [46358] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_SEMI, - ACTIONS(3344), 1, + ACTIONS(3347), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3493), 1, + ACTIONS(3496), 1, aux_sym__package_specification_token2, STATE(2009), 1, sym_aspect_specification, - [46365] = 6, + [46377] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3495), 1, + ACTIONS(3498), 1, aux_sym_allocator_token1, STATE(1546), 1, sym_record_definition, - [46384] = 2, + [46396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 5, + ACTIONS(3500), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [46395] = 2, + [46407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 5, + ACTIONS(3502), 5, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [46406] = 4, + [46418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3504), 1, aux_sym_iterator_filter_token1, - ACTIONS(3503), 1, + ACTIONS(3506), 1, aux_sym__package_specification_token3, STATE(1178), 2, sym_exception_handler, aux_sym_handled_sequence_of_statements_repeat1, - [46420] = 4, + [46432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2176), 1, + anon_sym_COLON_EQ, + STATE(1402), 1, + sym__assign_value, + ACTIONS(3508), 2, + anon_sym_SEMI, + aux_sym_accept_statement_token2, + [46446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + ACTIONS(3144), 1, + aux_sym_iterator_filter_token1, + STATE(1416), 1, + sym_aspect_specification, + STATE(1749), 1, + sym_entry_barrier, + [46462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3510), 4, + anon_sym_SEMI, + aux_sym__package_specification_token2, + aux_sym_with_clause_token2, + aux_sym_object_renaming_declaration_token1, + [46472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(454), 1, + aux_sym_gnatprep_declarative_if_statement_token2, + ACTIONS(3512), 1, + aux_sym_gnatprep_declarative_if_statement_token3, + ACTIONS(3514), 1, + aux_sym_gnatprep_declarative_if_statement_token4, + STATE(1173), 1, + aux_sym_gnatprep_if_statement_repeat1, + [46488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_primary_null_token1, + ACTIONS(1926), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3516), 1, + aux_sym_with_clause_token1, + STATE(1546), 1, + sym_record_definition, + [46504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_primary_null_token1, + ACTIONS(1926), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3520), 1, + aux_sym_compilation_unit_token1, + STATE(1474), 1, + sym_record_definition, + [46530] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + ACTIONS(3522), 1, + anon_sym_SEMI, + ACTIONS(3524), 1, + aux_sym__package_specification_token2, + STATE(1464), 1, + sym_aspect_specification, + [46546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3526), 1, + anon_sym_COMMA, + ACTIONS(3528), 1, + anon_sym_RPAREN, + ACTIONS(3225), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + [46560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3530), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46570] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + aux_sym_with_clause_token2, + ACTIONS(3417), 1, + anon_sym_SEMI, + ACTIONS(3532), 1, + aux_sym__package_specification_token2, + STATE(1505), 1, + sym_aspect_specification, + [46586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3534), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46596] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3536), 1, + aux_sym__package_specification_token3, + ACTIONS(3538), 1, + aux_sym_expression_token3, + ACTIONS(3540), 1, + aux_sym_expression_token4, + STATE(1130), 1, + aux_sym_selective_accept_repeat1, + [46612] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + aux_sym_primary_null_token1, + ACTIONS(1926), 1, + aux_sym_record_component_association_list_token1, + ACTIONS(3453), 1, + aux_sym_compilation_unit_token1, + STATE(1548), 1, + sym_record_definition, + [46628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 1, + aux_sym_allocator_token1, + ACTIONS(3546), 1, + aux_sym_private_type_declaration_token2, + ACTIONS(3542), 2, + aux_sym_with_clause_token1, + aux_sym_private_extension_declaration_token1, + [46642] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_SEMI, + ACTIONS(3550), 1, + aux_sym_with_clause_token2, + ACTIONS(3553), 1, + aux_sym_expression_token1, + STATE(1424), 1, + sym_record_extension_part, + [46658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3555), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3557), 4, + anon_sym_SEMI, + aux_sym_with_clause_token2, + aux_sym_expression_token3, + anon_sym_COLON_EQ, + [46678] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, STATE(1412), 1, sym_aspect_specification, - ACTIONS(3505), 2, + ACTIONS(3559), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46434] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - ACTIONS(3141), 1, - aux_sym_iterator_filter_token1, - STATE(1416), 1, - sym_aspect_specification, - STATE(1749), 1, - sym_entry_barrier, - [46450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3507), 4, - anon_sym_SEMI, - aux_sym__package_specification_token2, - aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [46460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(454), 1, - aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3509), 1, - aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3511), 1, - aux_sym_gnatprep_declarative_if_statement_token4, - STATE(1173), 1, - aux_sym_gnatprep_if_statement_repeat1, - [46476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3513), 1, - aux_sym_with_clause_token1, - STATE(1546), 1, - sym_record_definition, - [46492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3515), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3517), 1, - aux_sym_compilation_unit_token1, - STATE(1474), 1, - sym_record_definition, - [46518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - ACTIONS(3519), 1, - anon_sym_SEMI, - ACTIONS(3521), 1, - aux_sym__package_specification_token2, - STATE(1464), 1, - sym_aspect_specification, - [46534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3523), 1, - anon_sym_COMMA, - ACTIONS(3525), 1, - anon_sym_RPAREN, - ACTIONS(3242), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - [46548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46558] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - ACTIONS(3414), 1, - anon_sym_SEMI, - ACTIONS(3529), 1, - aux_sym__package_specification_token2, - STATE(1505), 1, - sym_aspect_specification, - [46574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3531), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46584] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3533), 1, - aux_sym__package_specification_token3, - ACTIONS(3535), 1, - aux_sym_expression_token3, - ACTIONS(3537), 1, - aux_sym_expression_token4, - STATE(1130), 1, - aux_sym_selective_accept_repeat1, - [46600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3450), 1, - aux_sym_compilation_unit_token1, - STATE(1548), 1, - sym_record_definition, - [46616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 1, - aux_sym_allocator_token1, - ACTIONS(3543), 1, - aux_sym_private_type_declaration_token2, - ACTIONS(3539), 2, - aux_sym_with_clause_token1, - aux_sym_private_extension_declaration_token1, - [46630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3545), 1, - anon_sym_SEMI, - ACTIONS(3547), 1, - aux_sym_with_clause_token2, - ACTIONS(3550), 1, - aux_sym_expression_token1, - STATE(1424), 1, - sym_record_extension_part, - [46646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3554), 4, - anon_sym_SEMI, - aux_sym_with_clause_token2, - aux_sym_expression_token3, - anon_sym_COLON_EQ, - [46666] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2176), 1, - anon_sym_COLON_EQ, - STATE(1460), 1, - sym__assign_value, - ACTIONS(3556), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [46680] = 4, + [46692] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, STATE(1411), 1, sym_aspect_specification, - ACTIONS(3558), 2, + ACTIONS(3561), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46694] = 2, + [46706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 4, + ACTIONS(3563), 4, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, anon_sym_COLON_EQ, - [46704] = 5, + [46716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3536), 1, aux_sym__package_specification_token3, - ACTIONS(3535), 1, + ACTIONS(3538), 1, aux_sym_expression_token3, - ACTIONS(3537), 1, + ACTIONS(3540), 1, aux_sym_expression_token4, - STATE(1149), 1, + STATE(1137), 1, aux_sym_selective_accept_repeat1, - [46720] = 5, + [46732] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(2917), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3562), 1, + ACTIONS(3565), 1, anon_sym_COLON, STATE(1221), 1, aux_sym__defining_identifier_list_repeat1, - [46736] = 5, + [46748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3568), 1, anon_sym_SEMI, - ACTIONS(3567), 1, - aux_sym_with_clause_token2, ACTIONS(3570), 1, + aux_sym_with_clause_token2, + ACTIONS(3573), 1, aux_sym_expression_token1, STATE(1555), 1, sym_record_extension_part, - [46752] = 4, + [46764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(3575), 1, aux_sym_iterator_filter_token1, - ACTIONS(3574), 1, + ACTIONS(3577), 1, aux_sym__package_specification_token3, STATE(1184), 2, sym_variant, aux_sym_variant_list_repeat1, - [46766] = 5, + [46778] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(2917), 1, aux_sym_object_renaming_declaration_token1, - ACTIONS(3576), 1, + ACTIONS(3579), 1, anon_sym_COLON, STATE(1221), 1, aux_sym__defining_identifier_list_repeat1, - [46782] = 4, + [46794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3579), 1, + ACTIONS(3582), 1, anon_sym_COMMA, STATE(1128), 1, aux_sym__name_list_repeat1, - ACTIONS(3177), 2, + ACTIONS(3180), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46796] = 5, + [46808] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3582), 1, + ACTIONS(3585), 1, aux_sym_compilation_unit_token1, STATE(1474), 1, sym_record_definition, - [46812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3586), 1, - aux_sym_expression_token3, - STATE(1130), 1, - aux_sym_selective_accept_repeat1, - ACTIONS(3584), 2, - aux_sym__package_specification_token3, - aux_sym_expression_token4, - [46826] = 5, + [46824] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3589), 1, - aux_sym_compilation_unit_token1, - ACTIONS(3591), 1, - anon_sym_SEMI, - ACTIONS(3593), 1, - aux_sym_with_clause_token1, - ACTIONS(3595), 1, aux_sym_expression_token3, - [46842] = 5, + STATE(1130), 1, + aux_sym_selective_accept_repeat1, + ACTIONS(3587), 2, + aux_sym__package_specification_token3, + aux_sym_expression_token4, + [46838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3592), 1, + aux_sym_compilation_unit_token1, + ACTIONS(3594), 1, + anon_sym_SEMI, + ACTIONS(3596), 1, + aux_sym_with_clause_token1, + ACTIONS(3598), 1, + aux_sym_expression_token3, + [46854] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3465), 1, sym_identifier, STATE(1376), 1, sym_discriminant_specification, @@ -56483,73 +56492,73 @@ static const uint16_t ts_small_parse_table[] = { sym_discriminant_specification_list, STATE(1778), 1, sym__defining_identifier_list, - [46858] = 5, + [46870] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3414), 1, + ACTIONS(3417), 1, anon_sym_SEMI, - ACTIONS(3489), 1, + ACTIONS(3492), 1, aux_sym__package_specification_token2, STATE(1579), 1, sym_aspect_specification, - [46874] = 4, + [46886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3597), 1, - aux_sym_iterator_filter_token1, ACTIONS(3600), 1, + aux_sym_iterator_filter_token1, + ACTIONS(3603), 1, aux_sym__package_specification_token3, STATE(1134), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [46888] = 5, + [46900] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3602), 1, + ACTIONS(3605), 1, anon_sym_SEMI, - ACTIONS(3604), 1, + ACTIONS(3607), 1, aux_sym__package_specification_token2, STATE(1425), 1, sym_aspect_specification, - [46904] = 4, + [46916] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, STATE(1539), 1, sym_aspect_specification, - ACTIONS(3606), 2, + ACTIONS(3609), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46918] = 5, + [46930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - aux_sym_primary_null_token1, - ACTIONS(1926), 1, - aux_sym_record_component_association_list_token1, - ACTIONS(3608), 1, - aux_sym_compilation_unit_token1, - STATE(1474), 1, - sym_record_definition, - [46934] = 4, + ACTIONS(3538), 1, + aux_sym_expression_token3, + ACTIONS(3611), 1, + aux_sym__package_specification_token3, + ACTIONS(3613), 1, + aux_sym_expression_token4, + STATE(1130), 1, + aux_sym_selective_accept_repeat1, + [46946] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, STATE(1513), 1, sym_aspect_specification, - ACTIONS(3610), 2, + ACTIONS(3615), 2, anon_sym_RPAREN, anon_sym_SEMI, - [46948] = 5, + [46960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -56557,10 +56566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(1013), 1, sym_actual_parameter_part, - [46964] = 5, + [46976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1750), 1, sym_tick, ACTIONS(1818), 1, anon_sym_LPAREN, @@ -56568,100 +56577,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(481), 1, sym_actual_parameter_part, - [46980] = 5, + [46992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, + ACTIONS(3538), 1, aux_sym_expression_token3, - ACTIONS(3612), 1, + ACTIONS(3617), 1, aux_sym__package_specification_token3, - ACTIONS(3614), 1, + ACTIONS(3619), 1, aux_sym_expression_token4, STATE(1114), 1, aux_sym_selective_accept_repeat1, - [46996] = 3, + [47008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3623), 1, aux_sym_expression_token1, - ACTIONS(3616), 3, + ACTIONS(3621), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47008] = 5, + [47020] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3620), 1, + ACTIONS(3625), 1, anon_sym_SEMI, - ACTIONS(3622), 1, + ACTIONS(3627), 1, aux_sym_expression_token3, STATE(1871), 1, sym_aspect_specification, - [47024] = 4, + [47036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3629), 1, aux_sym_gnatprep_declarative_if_statement_token2, STATE(1144), 1, aux_sym_gnatprep_declarative_if_statement_repeat1, - ACTIONS(3627), 2, + ACTIONS(3632), 2, aux_sym_gnatprep_declarative_if_statement_token3, aux_sym_gnatprep_declarative_if_statement_token4, - [47038] = 3, + [47050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3636), 1, aux_sym__package_specification_token2, - ACTIONS(3629), 3, + ACTIONS(3634), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47050] = 4, + [47062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3639), 1, anon_sym_COMMA, STATE(1156), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3636), 2, + ACTIONS(3641), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [47064] = 5, + [47076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3643), 1, anon_sym_LPAREN, - ACTIONS(3640), 1, + ACTIONS(3645), 1, anon_sym_SEMI, - ACTIONS(3642), 1, + ACTIONS(3647), 1, aux_sym_accept_statement_token2, STATE(1455), 1, sym_formal_part, - [47080] = 5, + [47092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3545), 1, + ACTIONS(3649), 4, anon_sym_SEMI, - ACTIONS(3644), 1, + aux_sym__package_specification_token2, aux_sym_with_clause_token2, - ACTIONS(3647), 1, - aux_sym_expression_token1, - STATE(1424), 1, - sym_record_extension_part, - [47096] = 5, + aux_sym_object_renaming_declaration_token1, + [47102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 1, - aux_sym_expression_token3, - ACTIONS(3649), 1, - aux_sym__package_specification_token3, + ACTIONS(1920), 1, + aux_sym_primary_null_token1, + ACTIONS(1926), 1, + aux_sym_record_component_association_list_token1, ACTIONS(3651), 1, - aux_sym_expression_token4, - STATE(1130), 1, - aux_sym_selective_accept_repeat1, - [47112] = 4, + aux_sym_compilation_unit_token1, + STATE(1474), 1, + sym_record_definition, + [47118] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3655), 1, @@ -56671,41 +56677,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3653), 2, aux_sym_with_clause_token1, aux_sym_private_extension_declaration_token1, - [47126] = 5, + [47132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2324), 1, - aux_sym_with_clause_token2, - ACTIONS(3340), 1, + ACTIONS(3548), 1, anon_sym_SEMI, - ACTIONS(3493), 1, - aux_sym__package_specification_token2, - STATE(2009), 1, - sym_aspect_specification, - [47142] = 5, + ACTIONS(3659), 1, + aux_sym_with_clause_token2, + ACTIONS(3662), 1, + aux_sym_expression_token1, + STATE(1424), 1, + sym_record_extension_part, + [47148] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(330), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3659), 1, + ACTIONS(3664), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3661), 1, + ACTIONS(3666), 1, aux_sym_gnatprep_declarative_if_statement_token4, STATE(1144), 1, aux_sym_gnatprep_declarative_if_statement_repeat1, - [47158] = 3, + [47164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3663), 1, + ACTIONS(3668), 1, aux_sym__package_specification_token2, - ACTIONS(3629), 3, + ACTIONS(3634), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47170] = 5, + [47176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3465), 1, sym_identifier, STATE(1399), 1, sym_parameter_specification, @@ -56713,607 +56719,610 @@ static const uint16_t ts_small_parse_table[] = { sym__parameter_specification_list, STATE(1737), 1, sym__defining_identifier_list, - [47186] = 5, + [47192] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3666), 1, + ACTIONS(3671), 1, aux_sym_compilation_unit_token1, STATE(1474), 1, sym_record_definition, - [47202] = 4, + [47208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3639), 1, anon_sym_COMMA, STATE(1165), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3668), 2, + ACTIONS(3673), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [47216] = 3, + [47222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3677), 1, aux_sym_expression_token2, - ACTIONS(3670), 3, + ACTIONS(3675), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [47228] = 4, + [47234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(3679), 1, anon_sym_COMMA, STATE(1431), 1, aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3242), 2, + ACTIONS(3225), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [47242] = 3, + [47248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3204), 1, aux_sym_iterated_element_association_token2, ACTIONS(1666), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [47254] = 3, + [47260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, + ACTIONS(3681), 1, aux_sym_attribute_designator_token3, - ACTIONS(3678), 3, + ACTIONS(3683), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47266] = 5, + [47272] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(330), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3680), 1, + ACTIONS(3685), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3682), 1, + ACTIONS(3687), 1, aux_sym_gnatprep_declarative_if_statement_token4, STATE(1144), 1, aux_sym_gnatprep_declarative_if_statement_repeat1, - [47282] = 4, + [47288] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, - STATE(1402), 1, + STATE(1460), 1, sym__assign_value, - ACTIONS(3684), 2, + ACTIONS(3689), 2, + anon_sym_RPAREN, anon_sym_SEMI, - aux_sym_accept_statement_token2, - [47296] = 4, + [47302] = 4, ACTIONS(3), 1, sym_comment, STATE(1203), 1, sym__enumeration_literal_specification, STATE(1576), 1, sym__enumeration_literal_list, - ACTIONS(3686), 2, + ACTIONS(3691), 2, sym_identifier, sym_character_literal, - [47310] = 5, + [47316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3283), 1, aux_sym_private_extension_declaration_token1, - ACTIONS(3284), 1, + ACTIONS(3287), 1, aux_sym_allocator_token1, - ACTIONS(3688), 1, + ACTIONS(3693), 1, aux_sym_with_clause_token1, - ACTIONS(3690), 1, + ACTIONS(3695), 1, aux_sym_private_type_declaration_token2, - [47326] = 4, + [47332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3692), 1, + ACTIONS(3697), 1, anon_sym_COMMA, STATE(1165), 1, aux_sym__array_component_association_list_repeat1, - ACTIONS(3695), 2, + ACTIONS(3700), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [47340] = 4, + [47346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3704), 1, aux_sym_range_attribute_designator_token1, STATE(1432), 1, sym_real_range_specification, - ACTIONS(3697), 2, + ACTIONS(3702), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47354] = 5, + [47360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, - anon_sym_SEMI, - ACTIONS(3703), 1, - aux_sym_with_clause_token2, ACTIONS(3706), 1, + anon_sym_SEMI, + ACTIONS(3708), 1, + aux_sym_with_clause_token2, + ACTIONS(3711), 1, aux_sym_expression_token1, STATE(1470), 1, sym_record_extension_part, - [47370] = 3, + [47376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3710), 1, + ACTIONS(3715), 1, aux_sym_expression_token1, - ACTIONS(3708), 3, + ACTIONS(3713), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47382] = 4, + [47388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, + ACTIONS(3575), 1, aux_sym_iterator_filter_token1, STATE(1714), 1, sym_variant_list, STATE(1126), 2, sym_variant, aux_sym_variant_list_repeat1, - [47396] = 5, + [47402] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3712), 1, + ACTIONS(3717), 1, aux_sym_compilation_unit_token1, STATE(1474), 1, sym_record_definition, - [47412] = 4, + [47418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3719), 1, aux_sym_iterator_filter_token1, - ACTIONS(3716), 1, + ACTIONS(3721), 1, aux_sym__package_specification_token3, STATE(1134), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [47426] = 2, + [47432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 4, + ACTIONS(3723), 4, anon_sym_RPAREN, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_accept_statement_token2, - [47436] = 4, + [47442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3725), 1, aux_sym_gnatprep_declarative_if_statement_token2, STATE(1173), 1, aux_sym_gnatprep_if_statement_repeat1, - ACTIONS(3723), 2, + ACTIONS(3728), 2, aux_sym_gnatprep_declarative_if_statement_token3, aux_sym_gnatprep_declarative_if_statement_token4, - [47450] = 4, + [47456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3704), 1, aux_sym_range_attribute_designator_token1, STATE(1536), 1, sym_real_range_specification, - ACTIONS(3725), 2, + ACTIONS(3730), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [47464] = 5, + [47470] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3727), 1, + ACTIONS(3732), 1, aux_sym_compilation_unit_token1, STATE(1485), 1, sym_record_definition, - [47480] = 2, + [47486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 4, + ACTIONS(3734), 4, anon_sym_RPAREN, aux_sym_iterator_filter_token1, anon_sym_SEMI, aux_sym__package_specification_token2, - [47490] = 5, + [47496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3589), 1, + ACTIONS(3592), 1, aux_sym_compilation_unit_token1, - ACTIONS(3593), 1, + ACTIONS(3596), 1, aux_sym_with_clause_token1, - ACTIONS(3731), 1, + ACTIONS(3736), 1, anon_sym_SEMI, - ACTIONS(3733), 1, + ACTIONS(3738), 1, aux_sym_expression_token3, - [47506] = 4, + [47512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3740), 1, aux_sym_iterator_filter_token1, - ACTIONS(3738), 1, + ACTIONS(3743), 1, aux_sym__package_specification_token3, STATE(1178), 2, sym_exception_handler, aux_sym_handled_sequence_of_statements_repeat1, - [47520] = 5, + [47526] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(454), 1, aux_sym_gnatprep_declarative_if_statement_token2, - ACTIONS(3740), 1, + ACTIONS(3745), 1, aux_sym_gnatprep_declarative_if_statement_token3, - ACTIONS(3742), 1, + ACTIONS(3747), 1, aux_sym_gnatprep_declarative_if_statement_token4, STATE(1173), 1, aux_sym_gnatprep_if_statement_repeat1, - [47536] = 5, + [47542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, + ACTIONS(3568), 1, anon_sym_SEMI, - ACTIONS(3744), 1, + ACTIONS(3749), 1, aux_sym_with_clause_token2, - ACTIONS(3747), 1, + ACTIONS(3752), 1, aux_sym_expression_token1, STATE(1555), 1, sym_record_extension_part, - [47552] = 5, + [47558] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3749), 1, + ACTIONS(3754), 1, aux_sym_with_clause_token1, STATE(1548), 1, sym_record_definition, - [47568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3751), 1, - anon_sym_COMMA, - STATE(1182), 1, - aux_sym_positional_array_aggregate_repeat1, - ACTIONS(3754), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47582] = 5, + [47574] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3756), 1, anon_sym_COMMA, - ACTIONS(3758), 1, + STATE(1182), 1, + aux_sym_positional_array_aggregate_repeat1, + ACTIONS(3759), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47588] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3761), 1, + anon_sym_COMMA, + ACTIONS(3763), 1, anon_sym_RPAREN, STATE(1269), 1, aux_sym_record_component_association_list_repeat1, STATE(1270), 1, aux_sym_positional_array_aggregate_repeat1, - [47598] = 4, + [47604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3766), 1, aux_sym_iterator_filter_token1, - ACTIONS(3764), 1, + ACTIONS(3769), 1, aux_sym__package_specification_token3, STATE(1184), 2, sym_variant, aux_sym_variant_list_repeat1, - [47612] = 5, + [47618] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3766), 1, + ACTIONS(3771), 1, anon_sym_SEMI, - ACTIONS(3768), 1, + ACTIONS(3773), 1, aux_sym_expression_token3, STATE(1612), 1, sym_aspect_specification, - [47628] = 5, + [47634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, aux_sym_primary_null_token1, ACTIONS(1926), 1, aux_sym_record_component_association_list_token1, - ACTIONS(3770), 1, + ACTIONS(3775), 1, aux_sym_compilation_unit_token1, STATE(1474), 1, sym_record_definition, - [47644] = 5, + [47650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 1, + ACTIONS(3706), 1, anon_sym_SEMI, - ACTIONS(3772), 1, + ACTIONS(3777), 1, aux_sym_with_clause_token2, - ACTIONS(3775), 1, + ACTIONS(3780), 1, aux_sym_expression_token1, STATE(1470), 1, sym_record_extension_part, - [47660] = 3, + [47666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3777), 1, + ACTIONS(3782), 1, aux_sym__package_specification_token2, - ACTIONS(3629), 3, + ACTIONS(3634), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47672] = 5, + [47678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, - ACTIONS(3780), 1, + ACTIONS(3785), 1, anon_sym_SEMI, - ACTIONS(3782), 1, + ACTIONS(3787), 1, aux_sym_accept_statement_token2, STATE(1403), 1, sym_formal_part, - [47688] = 5, + [47694] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3784), 1, + ACTIONS(3789), 1, anon_sym_SEMI, - ACTIONS(3786), 1, + ACTIONS(3791), 1, aux_sym__package_specification_token2, STATE(1688), 1, sym_aspect_specification, - [47704] = 3, + [47710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3793), 1, aux_sym__package_specification_token2, - ACTIONS(3629), 3, + ACTIONS(3634), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_object_renaming_declaration_token1, - [47716] = 5, + [47722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(3796), 1, sym_identifier, + STATE(988), 1, + sym__aspect_mark, STATE(989), 1, sym_aspect_association, - STATE(1000), 1, - sym__aspect_mark, STATE(1176), 1, sym_aspect_mark_list, - [47732] = 2, + [47738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 4, - anon_sym_SEMI, - aux_sym__package_specification_token2, + ACTIONS(2324), 1, aux_sym_with_clause_token2, - aux_sym_object_renaming_declaration_token1, - [47742] = 4, + ACTIONS(3343), 1, + anon_sym_SEMI, + ACTIONS(3496), 1, + aux_sym__package_specification_token2, + STATE(2009), 1, + sym_aspect_specification, + [47754] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, STATE(1479), 1, sym_aspect_specification, - ACTIONS(3795), 2, + ACTIONS(3798), 2, anon_sym_RPAREN, anon_sym_SEMI, - [47756] = 2, + [47768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 4, + ACTIONS(3800), 4, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_with_clause_token2, aux_sym_expression_token3, - [47766] = 4, + [47778] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, STATE(1511), 1, sym__assign_value, - ACTIONS(3799), 2, + ACTIONS(3802), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47780] = 4, + [47792] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, STATE(1439), 1, sym__assign_value, - ACTIONS(3801), 2, + ACTIONS(3804), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47794] = 3, + [47806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 1, + ACTIONS(3806), 1, aux_sym_iterated_element_association_token2, ACTIONS(1600), 3, sym_tick, anon_sym_DOT, anon_sym_LPAREN, - [47806] = 5, + [47818] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_SEMI, - ACTIONS(3806), 1, + ACTIONS(3809), 1, aux_sym__package_specification_token2, STATE(1441), 1, sym_aspect_specification, - [47822] = 4, + [47834] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2176), 1, anon_sym_COLON_EQ, STATE(1440), 1, sym__assign_value, - ACTIONS(3801), 2, + ACTIONS(3804), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [47836] = 4, + [47848] = 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(1201), 1, aux_sym_discriminant_association_repeat1, - [47849] = 2, + [47861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3813), 3, + ACTIONS(3816), 3, anon_sym_SEMI, anon_sym_COLON_EQ, aux_sym_accept_statement_token2, - [47858] = 4, + [47870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3818), 1, anon_sym_COMMA, - ACTIONS(3817), 1, + ACTIONS(3820), 1, anon_sym_RPAREN, STATE(1229), 1, aux_sym__enumeration_literal_list_repeat1, - [47871] = 4, + [47883] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3819), 1, + ACTIONS(3822), 1, anon_sym_SEMI, STATE(1995), 1, sym_aspect_specification, - [47884] = 4, + [47896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3821), 1, + ACTIONS(3824), 1, anon_sym_EQ_GT, - ACTIONS(3823), 1, + ACTIONS(3826), 1, anon_sym_PIPE, STATE(1282), 1, aux_sym_exception_choice_list_repeat1, - [47897] = 3, + [47909] = 3, ACTIONS(3), 1, sym_comment, STATE(1128), 1, aux_sym__name_list_repeat1, - ACTIONS(3825), 2, + ACTIONS(3828), 2, anon_sym_COMMA, anon_sym_RPAREN, - [47908] = 4, + [47920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3830), 1, anon_sym_COMMA, - ACTIONS(3829), 1, + ACTIONS(3832), 1, anon_sym_RPAREN, STATE(1377), 1, aux_sym_case_expression_repeat1, - [47921] = 4, + [47933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, - anon_sym_COMMA, ACTIONS(3834), 1, + anon_sym_COMMA, + ACTIONS(3837), 1, anon_sym_RPAREN, STATE(1208), 1, aux_sym_index_constraint_repeat1, - [47934] = 4, + [47946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 1, + ACTIONS(3839), 1, sym_identifier, - ACTIONS(3838), 1, + ACTIONS(3841), 1, aux_sym_use_clause_token2, - ACTIONS(3840), 1, + ACTIONS(3843), 1, aux_sym_package_body_token1, - [47947] = 4, + [47959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3844), 1, + ACTIONS(3847), 1, aux_sym_use_clause_token2, - ACTIONS(3846), 1, + ACTIONS(3849), 1, aux_sym_package_body_token1, - [47960] = 4, + [47972] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3848), 1, + ACTIONS(3851), 1, anon_sym_SEMI, STATE(1678), 1, sym_aspect_specification, - [47973] = 4, + [47985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 1, + ACTIONS(3704), 1, aux_sym_range_attribute_designator_token1, - ACTIONS(3850), 1, + ACTIONS(3853), 1, aux_sym_attribute_designator_token3, STATE(1535), 1, sym_real_range_specification, - [47986] = 4, + [47998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_COMMA, ACTIONS(3855), 1, + anon_sym_COMMA, + ACTIONS(3858), 1, anon_sym_RPAREN, STATE(1213), 1, aux_sym_discriminant_constraint_repeat1, - [47999] = 2, + [48011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3857), 3, + ACTIONS(3860), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [48008] = 2, + [48020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 3, + ACTIONS(3862), 3, anon_sym_SEMI, aux_sym__package_specification_token2, aux_sym_expression_token3, - [48017] = 4, + [48029] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3861), 1, + ACTIONS(3864), 1, anon_sym_SEMI, STATE(2023), 1, sym_aspect_specification, - [48030] = 4, + [48042] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, @@ -57322,306 +57331,306 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_record_component_association_list_token1, STATE(1548), 1, sym_record_definition, - [48043] = 2, + [48055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 3, + ACTIONS(3866), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48052] = 4, + [48064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3465), 1, sym_identifier, STATE(1526), 1, sym_discriminant_specification, STATE(1778), 1, sym__defining_identifier_list, - [48065] = 4, + [48077] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3865), 1, + ACTIONS(3868), 1, anon_sym_SEMI, STATE(2049), 1, sym_aspect_specification, - [48078] = 4, + [48090] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2046), 1, anon_sym_COMMA, - ACTIONS(3867), 1, + ACTIONS(3870), 1, anon_sym_COLON, STATE(1283), 1, aux_sym__defining_identifier_list_repeat1, - [48091] = 4, + [48103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(3869), 1, + ACTIONS(3872), 1, anon_sym_LPAREN, STATE(1906), 1, sym_iterated_element_association, - [48104] = 3, + [48116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3874), 1, sym_identifier, STATE(1503), 2, sym_loop_parameter_specification, sym_iterator_specification, - [48115] = 2, + [48127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 3, + ACTIONS(3876), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48124] = 4, + [48136] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3875), 1, + ACTIONS(3878), 1, aux_sym__package_specification_token2, STATE(1657), 1, sym_aspect_specification, - [48137] = 4, + [48149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, + ACTIONS(3880), 1, anon_sym_RPAREN, - ACTIONS(3879), 1, + ACTIONS(3882), 1, anon_sym_SEMI, STATE(1243), 1, aux_sym_discriminant_specification_list_repeat1, - [48150] = 4, + [48162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, - anon_sym_COMMA, ACTIONS(3884), 1, + anon_sym_COMMA, + ACTIONS(3887), 1, anon_sym_RPAREN, STATE(1227), 1, aux_sym_record_component_association_list_repeat1, - [48163] = 2, + [48175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 3, + ACTIONS(3889), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48172] = 4, + [48184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3818), 1, anon_sym_COMMA, - ACTIONS(3888), 1, + ACTIONS(3891), 1, anon_sym_RPAREN, STATE(1327), 1, aux_sym__enumeration_literal_list_repeat1, - [48185] = 2, + [48197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 3, + ACTIONS(3893), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48194] = 2, + [48206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 3, + ACTIONS(3895), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [48203] = 2, + [48215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 3, + ACTIONS(3897), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48212] = 2, + [48224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 3, + ACTIONS(3899), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48221] = 2, + [48233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 3, + ACTIONS(3400), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48230] = 4, + [48242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3791), 1, + ACTIONS(3796), 1, sym_identifier, - STATE(1000), 1, + STATE(988), 1, sym__aspect_mark, STATE(1095), 1, sym_aspect_association, - [48243] = 4, + [48255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(3901), 1, anon_sym_RPAREN, - ACTIONS(3900), 1, + ACTIONS(3903), 1, anon_sym_SEMI, STATE(1236), 1, aux_sym__parameter_specification_list_repeat1, - [48256] = 4, + [48268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, + ACTIONS(3906), 1, anon_sym_COMMA, - ACTIONS(3905), 1, + ACTIONS(3908), 1, anon_sym_RPAREN, STATE(1397), 1, aux_sym__index_subtype_definition_list_repeat1, - [48269] = 3, + [48281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3874), 1, sym_identifier, STATE(2026), 2, sym_loop_parameter_specification, sym_iterator_specification, - [48280] = 4, + [48292] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3907), 1, + ACTIONS(3910), 1, anon_sym_SEMI, STATE(2036), 1, sym_aspect_specification, - [48293] = 3, + [48305] = 3, ACTIONS(3), 1, sym_comment, STATE(1462), 1, sym__enumeration_literal_specification, - ACTIONS(3909), 2, + ACTIONS(3912), 2, sym_identifier, sym_character_literal, - [48304] = 2, + [48316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3911), 3, + ACTIONS(3914), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48313] = 2, + [48325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 3, + ACTIONS(3916), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48322] = 4, + [48334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 1, + ACTIONS(3918), 1, anon_sym_RPAREN, - ACTIONS(3917), 1, + ACTIONS(3920), 1, anon_sym_SEMI, STATE(1243), 1, aux_sym_discriminant_specification_list_repeat1, - [48335] = 4, + [48347] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3920), 1, + ACTIONS(3923), 1, anon_sym_SEMI, STATE(1963), 1, sym_aspect_specification, - [48348] = 4, + [48360] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3922), 1, + ACTIONS(3925), 1, anon_sym_SEMI, STATE(2034), 1, sym_aspect_specification, - [48361] = 2, + [48373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 3, + ACTIONS(3927), 3, aux_sym_access_to_subprogram_definition_token2, aux_sym_access_to_subprogram_definition_token3, aux_sym_entry_declaration_token1, - [48370] = 4, + [48382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(3453), 1, aux_sym_compilation_unit_token1, - ACTIONS(3926), 1, + ACTIONS(3929), 1, anon_sym_SEMI, - ACTIONS(3928), 1, + ACTIONS(3931), 1, aux_sym_with_clause_token1, - [48383] = 4, + [48395] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3930), 1, + ACTIONS(3933), 1, anon_sym_SEMI, STATE(1956), 1, sym_aspect_specification, - [48396] = 4, + [48408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3498), 1, aux_sym_allocator_token1, - ACTIONS(3932), 1, + ACTIONS(3935), 1, aux_sym_with_clause_token1, - ACTIONS(3934), 1, + ACTIONS(3937), 1, aux_sym_private_type_declaration_token2, - [48409] = 4, + [48421] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1866), 1, anon_sym_PIPE, - ACTIONS(3936), 1, + ACTIONS(3939), 1, anon_sym_EQ_GT, STATE(1201), 1, aux_sym_discriminant_association_repeat1, - [48422] = 4, + [48434] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3938), 1, + ACTIONS(3941), 1, aux_sym__package_specification_token2, STATE(1916), 1, sym_aspect_specification, - [48435] = 4, + [48447] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3940), 1, + ACTIONS(3943), 1, anon_sym_SEMI, STATE(2045), 1, sym_aspect_specification, - [48448] = 4, + [48460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3945), 1, anon_sym_COMMA, - ACTIONS(3944), 1, + ACTIONS(3947), 1, anon_sym_RPAREN, STATE(1213), 1, aux_sym_discriminant_constraint_repeat1, - [48461] = 4, + [48473] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2032), 1, @@ -57630,279 +57639,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(1221), 1, aux_sym__defining_identifier_list_repeat1, - [48474] = 4, + [48486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, - ACTIONS(580), 1, + ACTIONS(578), 1, aux_sym_value_sequence_token1, STATE(2029), 1, sym_iterated_element_association, - [48487] = 4, + [48499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3949), 1, anon_sym_COMMA, - ACTIONS(3948), 1, + ACTIONS(3951), 1, anon_sym_RPAREN, STATE(1208), 1, aux_sym_index_constraint_repeat1, - [48500] = 2, + [48512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 3, + ACTIONS(3953), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48509] = 2, + [48521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 3, + ACTIONS(3955), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48518] = 2, + [48530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 3, + ACTIONS(3957), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48527] = 2, + [48539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 3, + ACTIONS(3959), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48536] = 4, + [48548] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3958), 1, + ACTIONS(3961), 1, anon_sym_SEMI, STATE(1953), 1, sym_aspect_specification, - [48549] = 2, + [48561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 3, + ACTIONS(3963), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [48558] = 4, + [48570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3830), 1, anon_sym_COMMA, - ACTIONS(3962), 1, + ACTIONS(3965), 1, anon_sym_RPAREN, STATE(1207), 1, aux_sym_case_expression_repeat1, - [48571] = 2, + [48583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 3, + ACTIONS(3967), 3, anon_sym_RPAREN, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [48580] = 4, + [48592] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3966), 1, + ACTIONS(3969), 1, anon_sym_SEMI, STATE(1945), 1, sym_aspect_specification, - [48593] = 4, + [48605] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3968), 1, + ACTIONS(3971), 1, anon_sym_SEMI, STATE(1863), 1, sym_aspect_specification, - [48606] = 4, + [48618] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3970), 1, + ACTIONS(3973), 1, anon_sym_SEMI, STATE(1813), 1, sym_aspect_specification, - [48619] = 4, + [48631] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3972), 1, + ACTIONS(3975), 1, aux_sym__package_specification_token2, STATE(2027), 1, sym_aspect_specification, - [48632] = 4, + [48644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 1, + ACTIONS(3977), 1, anon_sym_COMMA, - ACTIONS(3976), 1, + ACTIONS(3979), 1, anon_sym_RPAREN, STATE(1227), 1, aux_sym_record_component_association_list_repeat1, - [48645] = 4, + [48657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COMMA, - ACTIONS(3980), 1, + ACTIONS(3983), 1, anon_sym_RPAREN, STATE(1182), 1, aux_sym_positional_array_aggregate_repeat1, - [48658] = 2, + [48670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 3, + ACTIONS(3985), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [48667] = 4, + [48679] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3420), 1, + ACTIONS(3423), 1, anon_sym_SEMI, STATE(1890), 1, sym_aspect_specification, - [48680] = 4, + [48692] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3984), 1, + ACTIONS(3987), 1, anon_sym_SEMI, STATE(1921), 1, sym_aspect_specification, - [48693] = 4, + [48705] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3986), 1, + ACTIONS(3989), 1, anon_sym_SEMI, STATE(2015), 1, sym_aspect_specification, - [48706] = 4, + [48718] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3988), 1, + ACTIONS(3991), 1, anon_sym_SEMI, STATE(2013), 1, sym_aspect_specification, - [48719] = 4, + [48731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 1, + ACTIONS(3993), 1, anon_sym_COMMA, - ACTIONS(3992), 1, + ACTIONS(3995), 1, anon_sym_RPAREN, STATE(1323), 1, aux_sym_actual_parameter_part_repeat1, - [48732] = 2, + [48744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 3, + ACTIONS(3997), 3, sym_identifier, sym_string_literal, sym_character_literal, - [48741] = 4, + [48753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3826), 1, anon_sym_PIPE, - ACTIONS(3996), 1, + ACTIONS(3999), 1, anon_sym_EQ_GT, STATE(1205), 1, aux_sym_exception_choice_list_repeat1, - [48754] = 4, + [48766] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3998), 1, + ACTIONS(4001), 1, anon_sym_SEMI, STATE(1829), 1, sym_aspect_specification, - [48767] = 4, + [48779] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4000), 1, + ACTIONS(4003), 1, anon_sym_SEMI, STATE(2004), 1, sym_aspect_specification, - [48780] = 4, + [48792] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4002), 1, + ACTIONS(4005), 1, anon_sym_SEMI, STATE(1870), 1, sym_aspect_specification, - [48793] = 4, + [48805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4007), 1, anon_sym_EQ_GT, - ACTIONS(4006), 1, + ACTIONS(4009), 1, anon_sym_PIPE, STATE(1282), 1, aux_sym_exception_choice_list_repeat1, - [48806] = 4, + [48818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_COMMA, ACTIONS(4012), 1, + anon_sym_COMMA, + ACTIONS(4015), 1, anon_sym_COLON, STATE(1283), 1, aux_sym__defining_identifier_list_repeat1, - [48819] = 4, + [48831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 1, + ACTIONS(3202), 1, aux_sym_chunk_specification_token1, - ACTIONS(3204), 1, + ACTIONS(3207), 1, anon_sym_COLON, - ACTIONS(3206), 1, + ACTIONS(3209), 1, aux_sym_iterator_specification_token1, - [48832] = 4, + [48844] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4014), 1, + ACTIONS(4017), 1, aux_sym__package_specification_token2, STATE(1694), 1, sym_aspect_specification, - [48845] = 4, + [48857] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4016), 1, + ACTIONS(4019), 1, aux_sym__package_specification_token2, STATE(1738), 1, sym_aspect_specification, - [48858] = 4, + [48870] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, @@ -57911,25 +57920,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_record_component_association_list_token1, STATE(1485), 1, sym_record_definition, - [48871] = 4, + [48883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - ACTIONS(3825), 1, + ACTIONS(3828), 1, anon_sym_SEMI, STATE(1128), 1, aux_sym__name_list_repeat1, - [48884] = 4, + [48896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4018), 1, - anon_sym_COMMA, ACTIONS(4021), 1, + anon_sym_COMMA, + ACTIONS(4024), 1, anon_sym_RPAREN, STATE(1289), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [48897] = 4, + [48909] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1920), 1, @@ -57938,515 +57947,515 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_record_component_association_list_token1, STATE(1474), 1, sym_record_definition, - [48910] = 2, + [48922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 3, + ACTIONS(3587), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [48919] = 4, + [48931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_COMMA, ACTIONS(4026), 1, + anon_sym_COMMA, + ACTIONS(4029), 1, anon_sym_RPAREN, STATE(1292), 1, aux_sym__index_subtype_definition_list_repeat1, - [48932] = 3, + [48944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3501), 1, + ACTIONS(3504), 1, aux_sym_iterator_filter_token1, STATE(1101), 2, sym_exception_handler, aux_sym_handled_sequence_of_statements_repeat1, - [48943] = 2, + [48955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 3, + ACTIONS(4031), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [48952] = 2, + [48964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 3, + ACTIONS(3675), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [48961] = 4, + [48973] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4030), 1, + ACTIONS(4033), 1, anon_sym_SEMI, STATE(1734), 1, sym_aspect_specification, - [48974] = 4, + [48986] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4032), 1, + ACTIONS(4035), 1, aux_sym__package_specification_token2, STATE(1738), 1, sym_aspect_specification, - [48987] = 2, + [48999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 3, + ACTIONS(4037), 3, aux_sym_terminate_alternative_token1, aux_sym_accept_statement_token1, aux_sym_delay_until_statement_token1, - [48996] = 4, + [49008] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4036), 1, + ACTIONS(4039), 1, anon_sym_SEMI, STATE(1726), 1, sym_aspect_specification, - [49009] = 4, + [49021] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4038), 1, + ACTIONS(4041), 1, anon_sym_SEMI, STATE(1666), 1, sym_aspect_specification, - [49022] = 2, + [49034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 3, + ACTIONS(4043), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [49031] = 3, + [49043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, + ACTIONS(4045), 1, sym_identifier, - ACTIONS(4044), 2, + ACTIONS(4047), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [49042] = 4, + [49054] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4046), 1, + ACTIONS(4049), 1, anon_sym_SEMI, STATE(2031), 1, sym_aspect_specification, - [49055] = 4, + [49067] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4048), 1, + ACTIONS(4051), 1, anon_sym_SEMI, STATE(1591), 1, sym_aspect_specification, - [49068] = 4, + [49080] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4050), 1, + ACTIONS(4053), 1, anon_sym_SEMI, STATE(1840), 1, sym_aspect_specification, - [49081] = 4, + [49093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 1, + ACTIONS(3465), 1, sym_identifier, STATE(1530), 1, sym_parameter_specification, STATE(1737), 1, sym__defining_identifier_list, - [49094] = 4, + [49106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(4055), 1, anon_sym_COMMA, - ACTIONS(4054), 1, + ACTIONS(4057), 1, anon_sym_RPAREN, STATE(1393), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [49107] = 4, + [49119] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3412), 1, + ACTIONS(3415), 1, anon_sym_SEMI, STATE(1758), 1, sym_aspect_specification, - [49120] = 4, + [49132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 1, + ACTIONS(4059), 1, anon_sym_COMMA, - ACTIONS(4058), 1, + ACTIONS(4061), 1, anon_sym_RPAREN, STATE(1370), 1, aux_sym_record_component_association_list_repeat2, - [49133] = 4, + [49145] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4060), 1, + ACTIONS(4063), 1, anon_sym_SEMI, STATE(1595), 1, sym_aspect_specification, - [49146] = 4, + [49158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 1, + ACTIONS(4065), 1, anon_sym_RPAREN, - ACTIONS(4064), 1, + ACTIONS(4067), 1, anon_sym_SEMI, STATE(1236), 1, aux_sym__parameter_specification_list_repeat1, - [49159] = 4, + [49171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 1, + ACTIONS(4069), 1, anon_sym_EQ_GT, - ACTIONS(4068), 1, + ACTIONS(4071), 1, anon_sym_PIPE, STATE(1356), 1, aux_sym_discrete_choice_list_repeat1, - [49172] = 4, + [49184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4073), 1, anon_sym_COMMA, - ACTIONS(4072), 1, + ACTIONS(4075), 1, anon_sym_RPAREN, STATE(1374), 1, aux_sym_pragma_g_repeat1, - [49185] = 4, + [49197] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4074), 1, + ACTIONS(4077), 1, anon_sym_SEMI, STATE(1759), 1, sym_aspect_specification, - [49198] = 2, + [49210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 3, + ACTIONS(4079), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49207] = 2, + [49219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 3, + ACTIONS(4081), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49216] = 2, + [49228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 3, + ACTIONS(4083), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49225] = 4, + [49237] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4082), 1, + ACTIONS(4085), 1, anon_sym_SEMI, STATE(1710), 1, sym_aspect_specification, - [49238] = 2, + [49250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 3, + ACTIONS(4087), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49247] = 2, + [49259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4086), 3, + ACTIONS(4089), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49256] = 4, + [49268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4091), 1, anon_sym_SEMI, - ACTIONS(4090), 1, + ACTIONS(4093), 1, aux_sym__package_specification_token2, - ACTIONS(4092), 1, + ACTIONS(4095), 1, aux_sym_expression_token3, - [49269] = 4, + [49281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(3945), 1, anon_sym_COMMA, - ACTIONS(4094), 1, + ACTIONS(4097), 1, anon_sym_RPAREN, STATE(1253), 1, aux_sym_discriminant_constraint_repeat1, - [49282] = 4, + [49294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4096), 1, - anon_sym_COMMA, ACTIONS(4099), 1, + anon_sym_COMMA, + ACTIONS(4102), 1, anon_sym_RPAREN, STATE(1323), 1, aux_sym_actual_parameter_part_repeat1, - [49295] = 3, + [49307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3719), 1, aux_sym_iterator_filter_token1, STATE(1171), 2, sym_case_statement_alternative, aux_sym_case_statement_repeat1, - [49306] = 4, + [49318] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4101), 1, + ACTIONS(4104), 1, anon_sym_SEMI, STATE(1959), 1, sym_aspect_specification, - [49319] = 2, + [49331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4103), 3, + ACTIONS(4106), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49328] = 4, + [49340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, - anon_sym_COMMA, ACTIONS(4108), 1, + anon_sym_COMMA, + ACTIONS(4111), 1, anon_sym_RPAREN, STATE(1327), 1, aux_sym__enumeration_literal_list_repeat1, - [49341] = 4, + [49353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3949), 1, anon_sym_COMMA, - ACTIONS(4110), 1, + ACTIONS(4113), 1, anon_sym_RPAREN, STATE(1256), 1, aux_sym_index_constraint_repeat1, - [49354] = 4, + [49366] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4112), 1, + ACTIONS(4115), 1, anon_sym_SEMI, STATE(1955), 1, sym_aspect_specification, - [49367] = 4, + [49379] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4114), 1, + ACTIONS(4117), 1, aux_sym__package_specification_token2, STATE(1694), 1, sym_aspect_specification, - [49380] = 4, + [49392] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4116), 1, + ACTIONS(4119), 1, anon_sym_SEMI, STATE(1950), 1, sym_aspect_specification, - [49393] = 4, + [49405] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4118), 1, + ACTIONS(4121), 1, anon_sym_SEMI, STATE(1692), 1, sym_aspect_specification, - [49406] = 4, + [49418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(4123), 1, anon_sym_EQ_GT, - ACTIONS(4122), 1, + ACTIONS(4125), 1, anon_sym_PIPE, STATE(1333), 1, aux_sym_component_choice_list_repeat1, - [49419] = 4, + [49431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4128), 1, anon_sym_COMMA, - ACTIONS(4127), 1, + ACTIONS(4130), 1, anon_sym_RPAREN, STATE(1342), 1, aux_sym_global_aspect_definition_repeat1, - [49432] = 2, + [49444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 3, + ACTIONS(4132), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [49441] = 2, + [49453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 3, + ACTIONS(4134), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [49450] = 3, + [49462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3677), 1, aux_sym_expression_token2, - ACTIONS(4133), 2, + ACTIONS(4136), 2, aux_sym_expression_token3, aux_sym_expression_token4, - [49461] = 4, + [49473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - ACTIONS(4135), 1, + ACTIONS(4138), 1, anon_sym_SEMI, STATE(1128), 1, aux_sym__name_list_repeat1, - [49474] = 2, + [49486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3754), 3, + ACTIONS(3759), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [49483] = 2, + [49495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 3, + ACTIONS(4140), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49492] = 2, + [49504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 3, + ACTIONS(4142), 3, aux_sym__package_specification_token3, aux_sym_expression_token3, aux_sym_expression_token4, - [49501] = 4, + [49513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, - anon_sym_COMMA, ACTIONS(4144), 1, + anon_sym_COMMA, + ACTIONS(4147), 1, anon_sym_RPAREN, STATE(1342), 1, aux_sym_global_aspect_definition_repeat1, - [49514] = 4, + [49526] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4146), 1, + ACTIONS(4149), 1, anon_sym_SEMI, STATE(1619), 1, sym_aspect_specification, - [49527] = 4, + [49539] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4148), 1, + ACTIONS(4151), 1, anon_sym_SEMI, STATE(1620), 1, sym_aspect_specification, - [49540] = 2, + [49552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 3, + ACTIONS(4153), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [49549] = 3, + [49561] = 3, ACTIONS(3), 1, sym_comment, STATE(1379), 1, sym_quantifier, - ACTIONS(3311), 2, + ACTIONS(3314), 2, aux_sym_use_clause_token1, aux_sym_quantifier_token1, - [49560] = 4, + [49572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 1, + ACTIONS(3977), 1, anon_sym_COMMA, - ACTIONS(4152), 1, + ACTIONS(4155), 1, anon_sym_RPAREN, STATE(1269), 1, aux_sym_record_component_association_list_repeat1, - [49573] = 2, + [49585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 3, + ACTIONS(4153), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [49582] = 4, + [49594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4157), 1, anon_sym_COMMA, - ACTIONS(4156), 1, + ACTIONS(4159), 1, anon_sym_RBRACK, STATE(1182), 1, aux_sym_positional_array_aggregate_repeat1, - [49595] = 4, + [49607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COMMA, ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4164), 1, anon_sym_RPAREN, STATE(1350), 1, aux_sym_pragma_g_repeat1, - [49608] = 4, + [49620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 1, + ACTIONS(3993), 1, anon_sym_COMMA, - ACTIONS(4163), 1, + ACTIONS(4166), 1, anon_sym_RPAREN, STATE(1276), 1, aux_sym_actual_parameter_part_repeat1, - [49621] = 4, + [49633] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1856), 1, @@ -58455,265 +58464,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(1392), 1, aux_sym_component_choice_list_repeat1, - [49634] = 4, + [49646] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4165), 1, + ACTIONS(4168), 1, anon_sym_SEMI, STATE(1639), 1, sym_aspect_specification, - [49647] = 4, + [49659] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4167), 1, + ACTIONS(4170), 1, anon_sym_SEMI, STATE(1627), 1, sym_aspect_specification, - [49660] = 4, + [49672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 1, + ACTIONS(3981), 1, anon_sym_COMMA, - ACTIONS(4169), 1, + ACTIONS(4172), 1, anon_sym_RPAREN, STATE(1270), 1, aux_sym_positional_array_aggregate_repeat1, - [49673] = 4, + [49685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, + ACTIONS(4071), 1, anon_sym_PIPE, - ACTIONS(4171), 1, + ACTIONS(4174), 1, anon_sym_EQ_GT, STATE(1388), 1, aux_sym_discrete_choice_list_repeat1, - [49686] = 4, + [49698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4173), 1, - anon_sym_COMMA, ACTIONS(4176), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, anon_sym_RPAREN, STATE(1357), 1, aux_sym_record_component_association_list_repeat2, - [49699] = 4, + [49711] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4178), 1, + ACTIONS(4181), 1, anon_sym_SEMI, STATE(1608), 1, sym_aspect_specification, - [49712] = 2, + [49724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 3, + ACTIONS(4183), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [49721] = 4, + [49733] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4182), 1, + ACTIONS(4185), 1, anon_sym_SEMI, STATE(1607), 1, sym_aspect_specification, - [49734] = 2, + [49746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4184), 3, + ACTIONS(4187), 3, aux_sym__package_specification_token3, aux_sym_expression_token4, aux_sym_elsif_expression_item_token1, - [49743] = 4, + [49755] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4186), 1, + ACTIONS(4189), 1, anon_sym_SEMI, STATE(1605), 1, sym_aspect_specification, - [49756] = 2, + [49768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 3, + ACTIONS(4183), 3, aux_sym_iterated_element_association_token2, anon_sym_EQ_GT, aux_sym_loop_statement_token1, - [49765] = 2, + [49777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 3, + ACTIONS(3700), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [49774] = 2, + [49786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 3, + ACTIONS(4191), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49783] = 4, + [49795] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4190), 1, + ACTIONS(4193), 1, anon_sym_SEMI, STATE(1667), 1, sym_aspect_specification, - [49796] = 2, + [49808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 3, + ACTIONS(4195), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49805] = 2, + [49817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 3, + ACTIONS(4197), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49814] = 2, + [49826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 3, + ACTIONS(4199), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49823] = 4, + [49835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 1, + ACTIONS(4059), 1, anon_sym_COMMA, - ACTIONS(4198), 1, + ACTIONS(4201), 1, anon_sym_RPAREN, STATE(1357), 1, aux_sym_record_component_association_list_repeat2, - [49836] = 2, + [49848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 3, + ACTIONS(4203), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [49845] = 4, + [49857] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4202), 1, + ACTIONS(4205), 1, anon_sym_SEMI, STATE(1879), 1, sym_aspect_specification, - [49858] = 4, + [49870] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4204), 1, + ACTIONS(4207), 1, anon_sym_SEMI, STATE(1868), 1, sym_aspect_specification, - [49871] = 4, + [49883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4073), 1, anon_sym_COMMA, - ACTIONS(4206), 1, + ACTIONS(4209), 1, anon_sym_RPAREN, STATE(1350), 1, aux_sym_pragma_g_repeat1, - [49884] = 4, + [49896] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4208), 1, + ACTIONS(4211), 1, anon_sym_SEMI, STATE(1875), 1, sym_aspect_specification, - [49897] = 4, + [49909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3882), 1, anon_sym_SEMI, - ACTIONS(4210), 1, + ACTIONS(4213), 1, anon_sym_RPAREN, STATE(1226), 1, aux_sym_discriminant_specification_list_repeat1, - [49910] = 4, + [49922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 1, - anon_sym_COMMA, ACTIONS(4215), 1, + anon_sym_COMMA, + ACTIONS(4218), 1, anon_sym_RPAREN, STATE(1377), 1, aux_sym_case_expression_repeat1, - [49923] = 4, + [49935] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(3389), 1, + ACTIONS(3392), 1, anon_sym_SEMI, STATE(1851), 1, sym_aspect_specification, - [49936] = 3, + [49948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3874), 1, sym_identifier, STATE(1687), 2, sym_loop_parameter_specification, sym_iterator_specification, - [49947] = 4, + [49959] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4217), 1, + ACTIONS(4220), 1, anon_sym_SEMI, STATE(1571), 1, sym_aspect_specification, - [49960] = 2, + [49972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 3, + ACTIONS(4222), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [49969] = 4, + [49981] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4221), 1, + ACTIONS(4224), 1, anon_sym_SEMI, STATE(1852), 1, sym_aspect_specification, - [49982] = 4, + [49994] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4223), 1, + ACTIONS(4226), 1, anon_sym_SEMI, STATE(1888), 1, sym_aspect_specification, - [49995] = 3, + [50007] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1904), 1, @@ -58721,3728 +58730,3728 @@ static const uint16_t ts_small_parse_table[] = { STATE(1241), 2, sym_access_to_subprogram_definition, sym_access_to_object_definition, - [50006] = 2, + [50018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 3, + ACTIONS(4228), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [50015] = 2, + [50027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 3, + ACTIONS(4230), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [50024] = 2, + [50036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 3, + ACTIONS(4232), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [50033] = 4, + [50045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 1, + ACTIONS(4234), 1, anon_sym_EQ_GT, - ACTIONS(4233), 1, + ACTIONS(4236), 1, anon_sym_PIPE, STATE(1388), 1, aux_sym_discrete_choice_list_repeat1, - [50046] = 2, + [50058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 3, + ACTIONS(4239), 3, anon_sym_SEMI, aux_sym_with_clause_token2, aux_sym_expression_token3, - [50055] = 4, + [50067] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4238), 1, + ACTIONS(4241), 1, anon_sym_SEMI, STATE(1613), 1, sym_aspect_specification, - [50068] = 4, + [50080] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4240), 1, + ACTIONS(4243), 1, anon_sym_SEMI, STATE(1859), 1, sym_aspect_specification, - [50081] = 4, + [50093] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(4242), 1, + ACTIONS(4245), 1, anon_sym_EQ_GT, STATE(1333), 1, aux_sym_component_choice_list_repeat1, - [50094] = 4, + [50106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(4055), 1, anon_sym_COMMA, - ACTIONS(4244), 1, + ACTIONS(4247), 1, anon_sym_RPAREN, STATE(1289), 1, aux_sym__discrete_subtype_definition_list_repeat1, - [50107] = 4, + [50119] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4246), 1, + ACTIONS(4249), 1, anon_sym_SEMI, STATE(1913), 1, sym_aspect_specification, - [50120] = 4, + [50132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4128), 1, anon_sym_COMMA, - ACTIONS(4248), 1, + ACTIONS(4251), 1, anon_sym_RPAREN, STATE(1334), 1, aux_sym_global_aspect_definition_repeat1, - [50133] = 4, + [50145] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2324), 1, aux_sym_with_clause_token2, - ACTIONS(4250), 1, + ACTIONS(4253), 1, aux_sym__package_specification_token2, STATE(1673), 1, sym_aspect_specification, - [50146] = 4, + [50158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 1, + ACTIONS(3906), 1, anon_sym_COMMA, - ACTIONS(4252), 1, + ACTIONS(4255), 1, anon_sym_RPAREN, STATE(1292), 1, aux_sym__index_subtype_definition_list_repeat1, - [50159] = 4, + [50171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3541), 1, + ACTIONS(3544), 1, aux_sym_allocator_token1, - ACTIONS(3589), 1, + ACTIONS(3592), 1, aux_sym_compilation_unit_token1, - [50172] = 4, + [50184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4067), 1, anon_sym_SEMI, - ACTIONS(4254), 1, + ACTIONS(4257), 1, anon_sym_RPAREN, STATE(1311), 1, aux_sym__parameter_specification_list_repeat1, - [50185] = 3, + [50197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(4259), 1, anon_sym_SEMI, - ACTIONS(4258), 1, + ACTIONS(4261), 1, aux_sym__package_specification_token2, - [50195] = 2, + [50207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4264), 2, aux_sym_chunk_specification_token1, aux_sym_iterator_specification_token1, - [50203] = 2, + [50215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 2, + ACTIONS(4266), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [50211] = 3, + [50223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(4267), 1, + ACTIONS(4270), 1, aux_sym_accept_statement_token2, - [50221] = 3, + [50233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4269), 1, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(4271), 1, + ACTIONS(4274), 1, anon_sym_SEMI, - [50231] = 3, + [50243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3836), 1, + ACTIONS(3839), 1, sym_identifier, - ACTIONS(3838), 1, + ACTIONS(3841), 1, aux_sym_use_clause_token2, - [50241] = 3, + [50253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4273), 1, + ACTIONS(4276), 1, sym_identifier, - ACTIONS(4275), 1, + ACTIONS(4278), 1, anon_sym_SEMI, - [50251] = 3, + [50263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3844), 1, + ACTIONS(3847), 1, aux_sym_use_clause_token2, - [50261] = 2, + [50273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 2, + ACTIONS(4218), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50269] = 2, + [50281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 2, + ACTIONS(4280), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50277] = 3, + [50289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3274), 1, + ACTIONS(3277), 1, aux_sym_allocator_token1, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, - [50287] = 2, + [50299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4279), 2, + ACTIONS(4282), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50295] = 2, + [50307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4281), 2, + ACTIONS(4284), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50303] = 2, + [50315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 2, + ACTIONS(4286), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50311] = 3, + [50323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, - ACTIONS(3541), 1, + ACTIONS(3544), 1, aux_sym_allocator_token1, - [50321] = 2, + [50333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 2, + ACTIONS(3798), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50329] = 3, + [50341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3144), 1, aux_sym_iterator_filter_token1, STATE(1892), 1, sym_entry_barrier, - [50339] = 3, + [50351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4288), 1, aux_sym_with_clause_token2, STATE(1427), 1, sym_record_extension_part, - [50349] = 3, + [50361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 1, + ACTIONS(4290), 1, sym_identifier, - ACTIONS(4289), 1, + ACTIONS(4292), 1, anon_sym_SEMI, - [50359] = 3, + [50371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 1, + ACTIONS(4294), 1, aux_sym_with_clause_token2, - ACTIONS(4293), 1, + ACTIONS(4296), 1, aux_sym_expression_token1, - [50369] = 3, + [50381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(4298), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4300), 1, anon_sym_SEMI, - [50379] = 2, + [50391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 2, + ACTIONS(4302), 2, sym_identifier, sym_string_literal, - [50387] = 3, + [50399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 1, + ACTIONS(4304), 1, sym_identifier, - ACTIONS(4303), 1, + ACTIONS(4306), 1, anon_sym_SEMI, - [50397] = 2, + [50409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 2, + ACTIONS(4308), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50405] = 2, + [50417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 2, + ACTIONS(4310), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50413] = 3, + [50425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4312), 1, anon_sym_SEMI, - ACTIONS(4311), 1, + ACTIONS(4314), 1, aux_sym__package_specification_token2, - [50423] = 2, + [50435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4313), 2, + ACTIONS(4316), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50431] = 2, + [50443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 2, + ACTIONS(4318), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50439] = 3, + [50451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4320), 1, sym_identifier, - ACTIONS(4319), 1, + ACTIONS(4322), 1, anon_sym_SEMI, - [50449] = 3, + [50461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4324), 1, aux_sym_with_clause_token2, STATE(1435), 1, sym_record_extension_part, - [50459] = 3, + [50471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(4326), 1, anon_sym_COMMA, - ACTIONS(4325), 1, + ACTIONS(4328), 1, anon_sym_RPAREN, - [50469] = 3, + [50481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, + ACTIONS(4331), 1, anon_sym_COMMA, STATE(1182), 1, aux_sym_positional_array_aggregate_repeat1, - [50479] = 2, + [50491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 2, + ACTIONS(4333), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50487] = 2, + [50499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4231), 2, + ACTIONS(4234), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50495] = 2, + [50507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 2, + ACTIONS(4335), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50503] = 2, + [50515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 2, + ACTIONS(4337), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50511] = 3, + [50523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4339), 1, aux_sym_chunk_specification_token1, - ACTIONS(4338), 1, + ACTIONS(4341), 1, aux_sym_iterator_specification_token1, - [50521] = 2, + [50533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 2, + ACTIONS(3225), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50529] = 3, + [50541] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2429), 1, aux_sym_access_to_subprogram_definition_token2, ACTIONS(2431), 1, aux_sym_access_to_subprogram_definition_token3, - [50539] = 2, + [50551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 2, + ACTIONS(4343), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [50547] = 2, + [50559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 2, + ACTIONS(4343), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [50555] = 3, + [50567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, + ACTIONS(4345), 1, anon_sym_SEMI, - ACTIONS(4344), 1, + ACTIONS(4347), 1, aux_sym__package_specification_token2, - [50565] = 2, + [50577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 2, + ACTIONS(4179), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50573] = 3, + [50585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(4348), 1, + ACTIONS(4351), 1, anon_sym_SEMI, - [50583] = 3, + [50595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, - anon_sym_EQ_GT, ACTIONS(4353), 1, + anon_sym_EQ_GT, + ACTIONS(4356), 1, anon_sym_PIPE, - [50593] = 3, + [50605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4355), 1, + ACTIONS(4358), 1, sym_identifier, - ACTIONS(4357), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - [50603] = 2, + [50615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 2, + ACTIONS(4362), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50611] = 3, + [50623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3605), 1, anon_sym_SEMI, - ACTIONS(3604), 1, + ACTIONS(3607), 1, aux_sym__package_specification_token2, - [50621] = 2, + [50633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4361), 2, + ACTIONS(4364), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50629] = 3, + [50641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, + ACTIONS(3526), 1, anon_sym_COMMA, - ACTIONS(3525), 1, + ACTIONS(3528), 1, anon_sym_RPAREN, - [50639] = 2, + [50651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4161), 2, + ACTIONS(4164), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50647] = 2, + [50659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 2, + ACTIONS(4366), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50655] = 3, + [50667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 1, + ACTIONS(4368), 1, aux_sym_iterator_filter_token1, STATE(1263), 1, sym_case_expression_alternative, - [50665] = 2, + [50677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 2, + ACTIONS(4370), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50673] = 2, + [50685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4144), 2, + ACTIONS(4147), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50681] = 3, + [50693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4369), 1, + ACTIONS(4372), 1, anon_sym_SEMI, - ACTIONS(4371), 1, + ACTIONS(4374), 1, aux_sym_accept_statement_token2, - [50691] = 2, + [50703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4373), 2, + ACTIONS(4376), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50699] = 2, + [50711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4375), 2, + ACTIONS(4378), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50707] = 2, + [50719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4377), 2, + ACTIONS(4380), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [50715] = 2, + [50727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 2, + ACTIONS(4382), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50723] = 2, + [50735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4381), 2, + ACTIONS(4384), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50731] = 3, + [50743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 1, + ACTIONS(4386), 1, anon_sym_COMMA, - ACTIONS(4385), 1, - anon_sym_RPAREN, - [50741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50749] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(4388), 1, + anon_sym_RPAREN, + [50753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4111), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 1, aux_sym_with_clause_token2, STATE(1507), 1, sym_record_extension_part, - [50759] = 3, + [50771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4393), 1, anon_sym_SEMI, - ACTIONS(4392), 1, + ACTIONS(4395), 1, aux_sym__package_specification_token2, - [50769] = 2, + [50781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 2, + ACTIONS(4102), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50777] = 3, + [50789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4397), 1, aux_sym_compilation_unit_token1, - ACTIONS(4396), 1, + ACTIONS(4399), 1, aux_sym_with_clause_token1, - [50787] = 2, + [50799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 2, + ACTIONS(4401), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50795] = 3, + [50807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(4403), 1, sym_identifier, - ACTIONS(4402), 1, + ACTIONS(4405), 1, anon_sym_SEMI, - [50805] = 3, + [50817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4407), 1, sym_identifier, - ACTIONS(4406), 1, + ACTIONS(4409), 1, anon_sym_SEMI, - [50815] = 2, + [50827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 2, + ACTIONS(4411), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50823] = 3, + [50835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4288), 1, aux_sym_with_clause_token2, STATE(1435), 1, sym_record_extension_part, - [50833] = 2, + [50845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 2, + ACTIONS(4413), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50841] = 2, + [50853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 2, + ACTIONS(4415), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50849] = 2, + [50861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 2, + ACTIONS(4417), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50857] = 3, + [50869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, + ACTIONS(4419), 1, aux_sym_with_clause_token2, STATE(1427), 1, sym_record_extension_part, - [50867] = 2, + [50879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 2, + ACTIONS(4421), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [50875] = 3, + [50887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 1, + ACTIONS(4043), 1, anon_sym_COMMA, - ACTIONS(4420), 1, + ACTIONS(4423), 1, anon_sym_RBRACK, - [50885] = 3, + [50897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_LPAREN, STATE(1512), 1, sym_formal_part, - [50895] = 2, + [50907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 2, + ACTIONS(4426), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50903] = 2, + [50915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 2, + ACTIONS(3615), 2, anon_sym_RPAREN, anon_sym_SEMI, - [50911] = 2, + [50923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 2, + ACTIONS(4356), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50919] = 3, + [50931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4428), 1, sym_identifier, - ACTIONS(4427), 1, + ACTIONS(4430), 1, anon_sym_SEMI, - [50929] = 2, + [50941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 2, + ACTIONS(4432), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [50937] = 3, + [50949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, + ACTIONS(4434), 1, sym_identifier, - ACTIONS(4433), 1, + ACTIONS(4436), 1, anon_sym_SEMI, - [50947] = 2, + [50959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4435), 2, + ACTIONS(4438), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [50955] = 3, + [50967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 1, + ACTIONS(4440), 1, aux_sym_with_clause_token2, - ACTIONS(4439), 1, + ACTIONS(4442), 1, aux_sym_expression_token1, - [50965] = 2, + [50977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 2, + ACTIONS(4444), 2, anon_sym_COMMA, anon_sym_RPAREN, - [50973] = 3, + [50985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, + ACTIONS(2902), 1, aux_sym_result_profile_token1, - STATE(875), 1, + STATE(883), 1, sym_result_profile, - [50983] = 3, + [50995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 1, + ACTIONS(4446), 1, sym_identifier, - ACTIONS(4445), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - [50993] = 2, + [51005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 2, + ACTIONS(4029), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51001] = 3, + [51013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, + ACTIONS(4450), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - [51011] = 2, + [51023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 2, + ACTIONS(4454), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51019] = 3, + [51031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4457), 1, anon_sym_SEMI, - ACTIONS(4456), 1, + ACTIONS(4459), 1, aux_sym__package_specification_token2, - [51029] = 2, + [51041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 2, + ACTIONS(4461), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51037] = 3, + [51049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4463), 1, sym_identifier, - ACTIONS(4462), 1, + ACTIONS(4465), 1, anon_sym_SEMI, - [51047] = 3, + [51059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4467), 1, sym_identifier, - ACTIONS(4466), 1, + ACTIONS(4469), 1, anon_sym_SEMI, - [51057] = 3, + [51069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4471), 1, sym_identifier, - ACTIONS(4470), 1, + ACTIONS(4473), 1, anon_sym_SEMI, - [51067] = 3, + [51079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, + ACTIONS(4475), 1, sym_identifier, - ACTIONS(4474), 1, + ACTIONS(4477), 1, anon_sym_SEMI, - [51077] = 2, + [51089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 2, + ACTIONS(4479), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51085] = 3, + [51097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4481), 1, sym_identifier, - ACTIONS(4480), 1, + ACTIONS(4483), 1, anon_sym_SEMI, - [51095] = 2, + [51107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 2, + ACTIONS(4485), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51103] = 2, + [51115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 2, + ACTIONS(4007), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [51111] = 3, + [51123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 1, + ACTIONS(4487), 1, aux_sym_iterated_element_association_token2, - ACTIONS(4486), 1, + ACTIONS(4489), 1, anon_sym_EQ_GT, - [51121] = 2, + [51133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 2, + ACTIONS(4015), 2, anon_sym_COMMA, anon_sym_COLON, - [51129] = 3, + [51141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_SEMI, - ACTIONS(3875), 1, + ACTIONS(3878), 1, aux_sym__package_specification_token2, - [51139] = 3, + [51151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(4491), 1, sym_identifier, - STATE(479), 1, + STATE(477), 1, sym_reduction_attribute_designator, - [51149] = 2, + [51161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 2, + ACTIONS(4493), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51157] = 3, + [51169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(4494), 1, + ACTIONS(4497), 1, anon_sym_SEMI, - [51167] = 3, + [51179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 1, + ACTIONS(4288), 1, aux_sym_with_clause_token2, STATE(1507), 1, sym_record_extension_part, - [51177] = 2, + [51189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 2, + ACTIONS(4499), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [51185] = 2, + [51197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 2, + ACTIONS(4501), 2, anon_sym_SEMI, aux_sym_accept_statement_token2, - [51193] = 2, + [51205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 2, + ACTIONS(4503), 2, aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [51201] = 2, + [51213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 2, + ACTIONS(4505), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51209] = 2, + [51221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 2, + ACTIONS(3609), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51217] = 3, + [51229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4507), 1, aux_sym_expression_token3, - ACTIONS(4506), 1, + ACTIONS(4509), 1, aux_sym_expression_token4, - [51227] = 3, + [51239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, + ACTIONS(4511), 1, anon_sym_SEMI, - ACTIONS(4510), 1, + ACTIONS(4513), 1, aux_sym_accept_statement_token2, - [51237] = 3, + [51249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 1, + ACTIONS(4515), 1, anon_sym_LPAREN, - ACTIONS(4514), 1, + ACTIONS(4517), 1, anon_sym_SEMI, - [51247] = 3, + [51259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4519), 1, aux_sym__package_specification_token3, - ACTIONS(4518), 1, + ACTIONS(4521), 1, aux_sym_subprogram_body_token1, - [51257] = 3, + [51269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 1, + ACTIONS(3144), 1, aux_sym_iterator_filter_token1, STATE(1749), 1, sym_entry_barrier, - [51267] = 2, + [51279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 2, + ACTIONS(4523), 2, sym_identifier, sym_string_literal, - [51275] = 2, + [51287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 2, + ACTIONS(4525), 2, aux_sym_iterator_filter_token1, aux_sym_with_clause_token2, - [51283] = 2, + [51295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 2, + ACTIONS(4527), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51291] = 3, + [51303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 1, + ACTIONS(3453), 1, aux_sym_compilation_unit_token1, ACTIONS(3655), 1, aux_sym_allocator_token1, - [51301] = 2, + [51313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(4529), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51309] = 3, + [51321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(4531), 1, sym_identifier, - ACTIONS(4530), 1, + ACTIONS(4533), 1, anon_sym_SEMI, - [51319] = 2, + [51331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3915), 2, + ACTIONS(3918), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51327] = 2, + [51339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4535), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51335] = 3, + [51347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, + ACTIONS(4537), 1, aux_sym__package_specification_token3, - ACTIONS(4536), 1, + ACTIONS(4539), 1, aux_sym_exception_declaration_token1, - [51345] = 2, + [51357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3505), 2, + ACTIONS(3559), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51353] = 2, + [51365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 2, + ACTIONS(3901), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51361] = 2, + [51373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3558), 2, + ACTIONS(3561), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51369] = 2, + [51381] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2509), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51377] = 3, + [51389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4541), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4540), 1, + ACTIONS(4543), 1, aux_sym_access_to_subprogram_definition_token3, - [51387] = 3, + [51399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(522), 1, + ACTIONS(516), 1, aux_sym_iterated_element_association_token1, STATE(1985), 1, sym_iterated_element_association, - [51397] = 2, + [51409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 2, + ACTIONS(4545), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51405] = 2, + [51417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 2, + ACTIONS(4547), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51413] = 3, + [51425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, + ACTIONS(4549), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4551), 1, anon_sym_SEMI, - [51423] = 2, + [51435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 2, + ACTIONS(3887), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51431] = 2, + [51443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 2, + ACTIONS(4553), 2, anon_sym_RPAREN, anon_sym_SEMI, - [51439] = 3, + [51451] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(398), 1, aux_sym__package_specification_token3, ACTIONS(400), 1, aux_sym_subprogram_body_token1, - [51449] = 2, + [51461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 2, + ACTIONS(4555), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51457] = 3, + [51469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4556), 1, + ACTIONS(4559), 1, anon_sym_SEMI, - [51467] = 3, + [51479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4561), 1, aux_sym_with_clause_token2, - ACTIONS(4560), 1, + ACTIONS(4563), 1, aux_sym_expression_token1, - [51477] = 2, + [51489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 2, + ACTIONS(4565), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51485] = 2, + [51497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 2, + ACTIONS(3811), 2, anon_sym_EQ_GT, anon_sym_PIPE, - [51493] = 2, + [51505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 2, + ACTIONS(4567), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51501] = 3, + [51513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4569), 1, sym_identifier, - ACTIONS(4568), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - [51511] = 2, + [51523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 2, + ACTIONS(4573), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51519] = 2, + [51531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 2, + ACTIONS(3858), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51527] = 2, + [51539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 2, + ACTIONS(4386), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51535] = 2, + [51547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 2, + ACTIONS(4575), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51543] = 3, + [51555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4577), 1, sym_identifier, - ACTIONS(4576), 1, + ACTIONS(4579), 1, anon_sym_SEMI, - [51553] = 2, + [51565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 2, + ACTIONS(4581), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51561] = 3, + [51573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(4582), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - [51571] = 2, + [51583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 2, + ACTIONS(4587), 2, anon_sym_SEMI, aux_sym_with_clause_token2, - [51579] = 3, + [51591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4589), 1, sym_identifier, - ACTIONS(4588), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - [51589] = 3, + [51601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(4593), 1, sym_identifier, - ACTIONS(4592), 1, + ACTIONS(4595), 1, anon_sym_SEMI, - [51599] = 3, + [51611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4365), 1, + ACTIONS(4368), 1, aux_sym_iterator_filter_token1, STATE(1408), 1, sym_case_expression_alternative, - [51609] = 3, + [51621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3732), 1, aux_sym_compilation_unit_token1, - ACTIONS(4594), 1, + ACTIONS(4597), 1, aux_sym_with_clause_token1, - [51619] = 3, + [51631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, + ACTIONS(4599), 1, sym_identifier, - ACTIONS(4598), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - [51629] = 3, + [51641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, + ACTIONS(4603), 1, aux_sym_access_to_subprogram_definition_token2, - ACTIONS(4602), 1, + ACTIONS(4605), 1, aux_sym_access_to_subprogram_definition_token3, - [51639] = 3, + [51651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4607), 1, aux_sym_compilation_unit_token1, - ACTIONS(4606), 1, + ACTIONS(4609), 1, aux_sym_with_clause_token2, - [51649] = 2, + [51661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 2, + ACTIONS(4611), 2, aux_sym_iterator_filter_token1, aux_sym__package_specification_token3, - [51657] = 2, + [51669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 2, + ACTIONS(4613), 2, anon_sym_COMMA, anon_sym_RPAREN, - [51665] = 2, + [51677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, + ACTIONS(4615), 1, anon_sym_SEMI, - [51672] = 2, + [51684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4617), 1, anon_sym_SEMI, - [51679] = 2, + [51691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 1, + ACTIONS(4619), 1, aux_sym_if_expression_token1, - [51686] = 2, + [51698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4621), 1, aux_sym_if_expression_token1, - [51693] = 2, + [51705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(4623), 1, anon_sym_SEMI, - [51700] = 2, + [51712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, + ACTIONS(4625), 1, anon_sym_DOT_DOT, - [51707] = 2, + [51719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3861), 1, + ACTIONS(3864), 1, anon_sym_SEMI, - [51714] = 2, + [51726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(4627), 1, anon_sym_RPAREN, - [51721] = 2, + [51733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, + ACTIONS(4629), 1, anon_sym_EQ_GT, - [51728] = 2, + [51740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4628), 1, + ACTIONS(4631), 1, anon_sym_RPAREN, - [51735] = 2, + [51747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(4633), 1, anon_sym_RPAREN, - [51742] = 2, + [51754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(4635), 1, anon_sym_RPAREN, - [51749] = 2, + [51761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(4633), 1, anon_sym_RBRACK, - [51756] = 2, + [51768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4637), 1, anon_sym_SEMI, - [51763] = 2, + [51775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3340), 1, + ACTIONS(3343), 1, anon_sym_SEMI, - [51770] = 2, + [51782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4639), 1, anon_sym_SEMI, - [51777] = 2, + [51789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4638), 1, + ACTIONS(4641), 1, anon_sym_SEMI, - [51784] = 2, + [51796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(340), 1, aux_sym_private_type_declaration_token1, - [51791] = 2, + [51803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4643), 1, aux_sym_with_clause_token2, - [51798] = 2, + [51810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(4645), 1, aux_sym_attribute_designator_token4, - [51805] = 2, + [51817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4647), 1, anon_sym_SEMI, - [51812] = 2, + [51824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(4649), 1, aux_sym_record_component_association_list_token1, - [51819] = 2, + [51831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4651), 1, aux_sym__package_specification_token3, - [51826] = 2, + [51838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4653), 1, anon_sym_SEMI, - [51833] = 2, + [51845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4405), 1, anon_sym_SEMI, - [51840] = 2, + [51852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4655), 1, sym_identifier, - [51847] = 2, + [51859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(4657), 1, anon_sym_SEMI, - [51854] = 2, + [51866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4659), 1, anon_sym_COLON, - [51861] = 2, + [51873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(4661), 1, anon_sym_EQ_GT, - [51868] = 2, + [51880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4663), 1, aux_sym_if_expression_token1, - [51875] = 2, + [51887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4665), 1, anon_sym_SEMI, - [51882] = 2, + [51894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4664), 1, + ACTIONS(4667), 1, anon_sym_SEMI, - [51889] = 2, + [51901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, + ACTIONS(4669), 1, aux_sym__package_specification_token3, - [51896] = 2, + [51908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, + ACTIONS(4671), 1, anon_sym_LT_GT, - [51903] = 2, + [51915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4673), 1, anon_sym_SEMI, - [51910] = 2, + [51922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, + ACTIONS(4675), 1, aux_sym_compilation_unit_token1, - [51917] = 2, + [51929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4677), 1, aux_sym_allocator_token1, - [51924] = 2, + [51936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4679), 1, aux_sym__aspect_mark_token1, - [51931] = 2, + [51943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(3655), 1, aux_sym_allocator_token1, - [51938] = 2, + [51950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4681), 1, aux_sym_compilation_unit_token1, - [51945] = 2, + [51957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4683), 1, anon_sym_SEMI, - [51952] = 2, + [51964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(4685), 1, aux_sym__package_specification_token3, - [51959] = 2, + [51971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(3933), 1, anon_sym_SEMI, - [51966] = 2, + [51978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3961), 1, anon_sym_SEMI, - [51973] = 2, + [51985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(428), 1, aux_sym_subprogram_body_token1, - [51980] = 2, + [51992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4687), 1, aux_sym_iterated_element_association_token2, - [51987] = 2, + [51999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(4689), 1, aux_sym_iterated_element_association_token2, - [51994] = 2, + [52006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4691), 1, anon_sym_SEMI, - [52001] = 2, + [52013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(3943), 1, anon_sym_SEMI, - [52008] = 2, + [52020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(4533), 1, anon_sym_SEMI, - [52015] = 2, + [52027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, + ACTIONS(4693), 1, aux_sym__package_specification_token2, - [52022] = 2, + [52034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4695), 1, aux_sym_package_body_token1, - [52029] = 2, + [52041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4694), 1, + ACTIONS(4697), 1, aux_sym_package_body_token1, - [52036] = 2, + [52048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4699), 1, anon_sym_SEMI, - [52043] = 2, + [52055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 1, + ACTIONS(4701), 1, anon_sym_SEMI, - [52050] = 2, + [52062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4703), 1, anon_sym_SEMI, - [52057] = 2, + [52069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 1, + ACTIONS(4705), 1, aux_sym_allocator_token1, - [52064] = 2, + [52076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(3973), 1, anon_sym_SEMI, - [52071] = 2, + [52083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4707), 1, anon_sym_SEMI, - [52078] = 2, + [52090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 1, + ACTIONS(4709), 1, aux_sym__package_specification_token3, - [52085] = 2, + [52097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4711), 1, aux_sym_loop_statement_token1, - [52092] = 2, + [52104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, + ACTIONS(4713), 1, aux_sym_if_expression_token1, - [52099] = 2, + [52111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 1, + ACTIONS(3969), 1, anon_sym_SEMI, - [52106] = 2, + [52118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4712), 1, + ACTIONS(4715), 1, anon_sym_SEMI, - [52113] = 2, + [52125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(4717), 1, aux_sym__package_specification_token3, - [52120] = 2, + [52132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4719), 1, aux_sym_package_body_token1, - [52127] = 2, + [52139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4721), 1, aux_sym_with_clause_token2, - [52134] = 2, + [52146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3420), 1, + ACTIONS(3423), 1, anon_sym_SEMI, - [52141] = 2, + [52153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, + ACTIONS(4723), 1, anon_sym_COLON, - [52148] = 2, + [52160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4725), 1, anon_sym_SEMI, - [52155] = 2, + [52167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(4727), 1, anon_sym_SEMI, - [52162] = 2, + [52174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4729), 1, anon_sym_SEMI, - [52169] = 2, + [52181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(4731), 1, aux_sym_asynchronous_select_token1, - [52176] = 2, + [52188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(4733), 1, aux_sym__package_specification_token3, - [52183] = 2, + [52195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4735), 1, anon_sym_SEMI, - [52190] = 2, + [52202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4734), 1, + ACTIONS(4737), 1, anon_sym_SEMI, - [52197] = 2, + [52209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - [52204] = 2, + [52216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4741), 1, anon_sym_SEMI, - [52211] = 2, + [52223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 1, + ACTIONS(4743), 1, anon_sym_EQ_GT, - [52218] = 2, + [52230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4497), 1, anon_sym_SEMI, - [52225] = 2, + [52237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, + ACTIONS(4745), 1, anon_sym_SEMI, - [52232] = 2, + [52244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4744), 1, + ACTIONS(4747), 1, anon_sym_SEMI, - [52239] = 2, + [52251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4749), 1, aux_sym_if_expression_token1, - [52246] = 2, + [52258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4748), 1, + ACTIONS(4751), 1, aux_sym_if_expression_token1, - [52253] = 2, + [52265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(4753), 1, aux_sym_if_expression_token1, - [52260] = 2, + [52272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(4755), 1, anon_sym_SEMI, - [52267] = 2, + [52279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4757), 1, anon_sym_SEMI, - [52274] = 2, + [52286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(4759), 1, aux_sym_if_expression_token1, - [52281] = 2, + [52293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, + ACTIONS(4761), 1, aux_sym__package_specification_token3, - [52288] = 2, + [52300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(4763), 1, anon_sym_RPAREN, - [52295] = 2, + [52307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4765), 1, anon_sym_SEMI, - [52302] = 2, + [52314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, + ACTIONS(4767), 1, anon_sym_EQ_GT, - [52309] = 2, + [52321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4347), 1, aux_sym__package_specification_token2, - [52316] = 2, + [52328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(4469), 1, anon_sym_SEMI, - [52323] = 2, + [52335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3611), 1, aux_sym__package_specification_token3, - [52330] = 2, + [52342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(4769), 1, aux_sym_with_clause_token2, - [52337] = 2, + [52349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4768), 1, + ACTIONS(4771), 1, anon_sym_SEMI, - [52344] = 2, + [52356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 1, + ACTIONS(4773), 1, anon_sym_SEMI, - [52351] = 2, + [52363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(4775), 1, aux_sym_compilation_unit_token1, - [52358] = 2, + [52370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(4777), 1, anon_sym_SEMI, - [52365] = 2, + [52377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4779), 1, aux_sym_asynchronous_select_token1, - [52372] = 2, + [52384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(4781), 1, anon_sym_SEMI, - [52379] = 2, + [52391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, + ACTIONS(4783), 1, anon_sym_SEMI, - [52386] = 2, + [52398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4785), 1, aux_sym__package_specification_token3, - [52393] = 2, + [52405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4784), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, - [52400] = 2, + [52412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4789), 1, anon_sym_SEMI, - [52407] = 2, + [52419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4788), 1, + ACTIONS(4791), 1, aux_sym__package_specification_token3, - [52414] = 2, + [52426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(4793), 1, anon_sym_SEMI, - [52421] = 2, + [52433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, + ACTIONS(4795), 1, aux_sym__package_specification_token2, - [52428] = 2, + [52440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4794), 1, + ACTIONS(4797), 1, aux_sym__package_specification_token3, - [52435] = 2, + [52447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4799), 1, anon_sym_SEMI, - [52442] = 2, + [52454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4798), 1, + ACTIONS(4801), 1, aux_sym_compilation_unit_token1, - [52449] = 2, + [52461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4803), 1, anon_sym_SEMI, - [52456] = 2, + [52468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, + ACTIONS(4039), 1, anon_sym_SEMI, - [52463] = 2, + [52475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 1, + ACTIONS(4805), 1, sym_identifier, - [52470] = 2, + [52482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(4807), 1, anon_sym_EQ_GT, - [52477] = 2, + [52489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4075), 1, anon_sym_RPAREN, - [52484] = 2, + [52496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 1, + ACTIONS(4809), 1, aux_sym__package_specification_token3, - [52491] = 2, + [52503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4808), 1, + ACTIONS(4811), 1, anon_sym_DOT_DOT, - [52498] = 2, + [52510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(4813), 1, aux_sym_if_expression_token1, - [52505] = 2, + [52517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4815), 1, aux_sym_iterated_element_association_token2, - [52512] = 2, + [52524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(4817), 1, aux_sym_asynchronous_select_token1, - [52519] = 2, + [52531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4816), 1, + ACTIONS(4819), 1, anon_sym_EQ_GT, - [52526] = 2, + [52538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(4821), 1, anon_sym_SEMI, - [52533] = 2, + [52545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, + ACTIONS(4823), 1, aux_sym__package_specification_token3, - [52540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4822), 1, - anon_sym_EQ_GT, - [52547] = 2, + [52552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4825), 1, - aux_sym__package_specification_token2, - [52554] = 2, + anon_sym_EQ_GT, + [52559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4828), 1, + aux_sym__package_specification_token2, + [52566] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, anon_sym_SEMI, - [52561] = 2, + [52573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4832), 1, anon_sym_RPAREN, - [52568] = 2, + [52580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 1, + ACTIONS(4834), 1, aux_sym__package_specification_token2, - [52575] = 2, + [52587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4836), 1, anon_sym_RPAREN, - [52582] = 2, + [52594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(3265), 1, aux_sym_entry_declaration_token1, - [52589] = 2, + [52601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(4838), 1, anon_sym_SEMI, - [52596] = 2, + [52608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(4840), 1, aux_sym_record_component_association_list_token1, - [52603] = 2, + [52615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(4842), 1, aux_sym_range_attribute_designator_token1, - [52610] = 2, + [52622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4844), 1, aux_sym_attribute_designator_token2, - [52617] = 2, + [52629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, + ACTIONS(4846), 1, aux_sym__package_specification_token3, - [52624] = 2, + [52636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 1, + ACTIONS(4848), 1, anon_sym_SEMI, - [52631] = 2, + [52643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(4850), 1, anon_sym_EQ_GT, - [52638] = 2, + [52650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, + ACTIONS(4852), 1, sym_tick, - [52645] = 2, + [52657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(4854), 1, anon_sym_SEMI, - [52652] = 2, + [52664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(4856), 1, anon_sym_EQ_GT, - [52659] = 2, + [52671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, + ACTIONS(4858), 1, anon_sym_RPAREN, - [52666] = 2, + [52678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(4860), 1, anon_sym_EQ_GT, - [52673] = 2, + [52685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, + ACTIONS(4862), 1, aux_sym_expression_token2, - [52680] = 2, + [52692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, + ACTIONS(4864), 1, anon_sym_SEMI, - [52687] = 2, + [52699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 1, + ACTIONS(4866), 1, aux_sym__package_specification_token2, - [52694] = 2, + [52706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(4868), 1, aux_sym_case_expression_token1, - [52701] = 2, + [52713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4870), 1, anon_sym_COLON, - [52708] = 2, + [52720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4872), 1, aux_sym__package_specification_token3, - [52715] = 2, + [52727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4871), 1, + ACTIONS(4874), 1, sym_identifier, - [52722] = 2, + [52734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(4876), 1, sym_identifier, - [52729] = 2, + [52741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4198), 1, + ACTIONS(4201), 1, anon_sym_RPAREN, - [52736] = 2, + [52748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, + ACTIONS(4878), 1, anon_sym_SEMI, - [52743] = 2, + [52755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - [52750] = 2, + [52762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4880), 1, aux_sym__package_specification_token3, - [52757] = 2, + [52769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(4882), 1, aux_sym_with_clause_token2, - [52764] = 2, + [52776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4884), 1, sym_identifier, - [52771] = 2, + [52783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4312), 1, anon_sym_SEMI, - [52778] = 2, + [52790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(430), 1, aux_sym_subprogram_body_token1, - [52785] = 2, + [52797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(4886), 1, aux_sym_allocator_token1, - [52792] = 2, + [52804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4205), 1, anon_sym_SEMI, - [52799] = 2, + [52811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4888), 1, aux_sym_compilation_unit_token1, - [52806] = 2, + [52818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4890), 1, aux_sym__package_specification_token3, - [52813] = 2, + [52825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(4892), 1, anon_sym_SEMI, - [52820] = 2, + [52832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, + ACTIONS(4894), 1, aux_sym_with_clause_token2, - [52827] = 2, + [52839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(4896), 1, anon_sym_LT_GT, - [52834] = 2, + [52846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(4898), 1, anon_sym_LT_GT, - [52841] = 2, + [52853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4900), 1, anon_sym_LT_GT, - [52848] = 2, + [52860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, + ACTIONS(4902), 1, anon_sym_SEMI, - [52855] = 2, + [52867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4904), 1, anon_sym_RPAREN, - [52862] = 2, + [52874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(4906), 1, anon_sym_LT_GT, - [52869] = 2, + [52881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(4908), 1, anon_sym_COLON, - [52876] = 2, + [52888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(4910), 1, aux_sym__package_specification_token2, - [52883] = 2, + [52895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4253), 1, aux_sym__package_specification_token2, - [52890] = 2, + [52902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 1, + ACTIONS(4912), 1, anon_sym_SEMI, - [52897] = 2, + [52909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(4914), 1, anon_sym_SEMI, - [52904] = 2, + [52916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(4916), 1, anon_sym_SEMI, - [52911] = 2, + [52923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(4918), 1, anon_sym_SEMI, - [52918] = 2, + [52930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(4920), 1, aux_sym_with_clause_token2, - [52925] = 2, + [52937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, + ACTIONS(4922), 1, anon_sym_SEMI, - [52932] = 2, + [52944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, + ACTIONS(4924), 1, sym_identifier, - [52939] = 2, + [52951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4926), 1, anon_sym_RPAREN, - [52946] = 2, + [52958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, + ACTIONS(4928), 1, aux_sym__package_specification_token2, - [52953] = 2, + [52965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(4930), 1, aux_sym__package_specification_token2, - [52960] = 2, + [52972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(348), 1, aux_sym_subprogram_body_token1, - [52967] = 2, + [52979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 1, + ACTIONS(4932), 1, anon_sym_LT_GT, - [52974] = 2, + [52986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4934), 1, anon_sym_SEMI, - [52981] = 2, + [52993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(4936), 1, anon_sym_SEMI, - [52988] = 2, + [53000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, + ACTIONS(4938), 1, aux_sym_iterator_specification_token1, - [52995] = 2, + [53007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4289), 1, + ACTIONS(4292), 1, anon_sym_SEMI, - [53002] = 2, + [53014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, + ACTIONS(4940), 1, aux_sym_iterator_specification_token1, - [53009] = 2, + [53021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 1, + ACTIONS(4942), 1, anon_sym_LT_GT, - [53016] = 2, + [53028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - [53023] = 2, + [53035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(4944), 1, anon_sym_SEMI, - [53030] = 2, + [53042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, + ACTIONS(4946), 1, aux_sym_iterated_element_association_token2, - [53037] = 2, + [53049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4224), 1, anon_sym_SEMI, - [53044] = 2, + [53056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - [53051] = 2, + [53063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(4950), 1, aux_sym_if_expression_token1, - [53058] = 2, + [53070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 1, + ACTIONS(4952), 1, aux_sym_if_expression_token1, - [53065] = 2, + [53077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 1, + ACTIONS(3289), 1, aux_sym_interface_type_definition_token2, - [53072] = 2, + [53084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4951), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - [53079] = 2, + [53091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, + ACTIONS(4956), 1, anon_sym_SEMI, - [53086] = 2, + [53098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4958), 1, aux_sym_if_expression_token1, - [53093] = 2, + [53105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4957), 1, + ACTIONS(4960), 1, aux_sym_record_component_association_list_token1, - [53100] = 2, + [53112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, + ACTIONS(4962), 1, anon_sym_SEMI, - [53107] = 2, + [53119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 1, + ACTIONS(4964), 1, aux_sym_if_expression_token1, - [53114] = 2, + [53126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, + ACTIONS(4966), 1, aux_sym_if_expression_token1, - [53121] = 2, + [53133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3392), 1, anon_sym_SEMI, - [53128] = 2, + [53140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(4968), 1, anon_sym_RPAREN, - [53135] = 2, + [53147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 1, + ACTIONS(4970), 1, aux_sym_expression_token2, - [53142] = 2, + [53154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 1, + ACTIONS(4972), 1, anon_sym_SEMI, - [53149] = 2, + [53161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4971), 1, + ACTIONS(4974), 1, anon_sym_RPAREN, - [53156] = 2, + [53168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 1, + ACTIONS(4976), 1, anon_sym_COLON, - [53163] = 2, + [53175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(4978), 1, anon_sym_RPAREN, - [53170] = 2, + [53182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(4980), 1, anon_sym_RPAREN, - [53177] = 2, + [53189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 1, + ACTIONS(4980), 1, anon_sym_RBRACK, - [53184] = 2, + [53196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 1, + ACTIONS(4982), 1, anon_sym_SEMI, - [53191] = 2, + [53203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, + ACTIONS(4984), 1, anon_sym_SEMI, - [53198] = 2, + [53210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(4986), 1, anon_sym_SEMI, - [53205] = 2, + [53217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, + ACTIONS(4988), 1, anon_sym_SEMI, - [53212] = 2, + [53224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 1, + ACTIONS(4990), 1, aux_sym_if_expression_token1, - [53219] = 2, + [53231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(4992), 1, aux_sym_with_clause_token2, - [53226] = 2, + [53238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, + ACTIONS(4994), 1, anon_sym_SEMI, - [53233] = 2, + [53245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4271), 1, + ACTIONS(4274), 1, anon_sym_SEMI, - [53240] = 2, + [53252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4993), 1, + ACTIONS(4996), 1, aux_sym__package_specification_token2, - [53247] = 2, + [53259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, + ACTIONS(4998), 1, aux_sym_if_expression_token1, - [53254] = 2, + [53266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, + ACTIONS(5000), 1, aux_sym__package_specification_token3, - [53261] = 2, + [53273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4999), 1, + ACTIONS(5002), 1, aux_sym_subunit_token1, - [53268] = 2, + [53280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 1, + ACTIONS(5004), 1, anon_sym_SEMI, - [53275] = 2, + [53287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - [53282] = 2, + [53294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, + ACTIONS(5008), 1, anon_sym_SEMI, - [53289] = 2, + [53301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, + ACTIONS(5010), 1, anon_sym_SEMI, - [53296] = 2, + [53308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(5012), 1, aux_sym_compilation_unit_token1, - [53303] = 2, + [53315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(5014), 1, anon_sym_SEMI, - [53310] = 2, + [53322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5013), 1, + ACTIONS(5016), 1, aux_sym_result_profile_token1, - [53317] = 2, + [53329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(5018), 1, aux_sym_with_clause_token2, - [53324] = 2, + [53336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 1, + ACTIONS(5020), 1, aux_sym__package_specification_token3, - [53331] = 2, + [53343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, + ACTIONS(5022), 1, anon_sym_SEMI, - [53338] = 2, + [53350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 1, + ACTIONS(5024), 1, aux_sym_asynchronous_select_token1, - [53345] = 2, + [53357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2290), 1, anon_sym_DOT_DOT, - [53352] = 2, + [53364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(5026), 1, sym_tick, - [53359] = 2, + [53371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 1, + ACTIONS(5028), 1, anon_sym_RPAREN, - [53366] = 2, + [53378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, + ACTIONS(5030), 1, anon_sym_RPAREN, - [53373] = 2, + [53385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5029), 1, + ACTIONS(5032), 1, anon_sym_SEMI, - [53380] = 2, + [53392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 1, + ACTIONS(5034), 1, aux_sym_asynchronous_select_token1, - [53387] = 2, + [53399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5033), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, - [53394] = 2, + [53406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, + ACTIONS(5038), 1, anon_sym_SEMI, - [53401] = 2, + [53413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(5040), 1, anon_sym_SEMI, - [53408] = 2, + [53420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - [53415] = 2, + [53427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, + ACTIONS(5044), 1, anon_sym_SEMI, - [53422] = 2, + [53434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 1, + ACTIONS(5046), 1, aux_sym_component_list_token1, - [53429] = 2, + [53441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(5048), 1, aux_sym_if_expression_token1, - [53436] = 2, + [53448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5047), 1, + ACTIONS(5050), 1, anon_sym_SEMI, - [53443] = 2, + [53455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5049), 1, + ACTIONS(5052), 1, aux_sym_asynchronous_select_token1, - [53450] = 2, + [53462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5051), 1, + ACTIONS(5054), 1, anon_sym_SEMI, - [53457] = 2, + [53469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5056), 1, aux_sym__package_specification_token3, - [53464] = 2, + [53476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, + ACTIONS(5058), 1, aux_sym__package_specification_token3, - [53471] = 2, + [53483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5060), 1, aux_sym_primary_null_token1, - [53478] = 2, + [53490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5062), 1, aux_sym__package_specification_token3, - [53485] = 2, + [53497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(5064), 1, anon_sym_SEMI, - [53492] = 2, + [53504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(5066), 1, anon_sym_SEMI, - [53499] = 2, + [53511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, + ACTIONS(5068), 1, aux_sym_if_expression_token1, - [53506] = 2, + [53518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, + ACTIONS(5070), 1, aux_sym_subprogram_body_token1, - [53513] = 2, + [53525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5072), 1, anon_sym_SEMI, - [53520] = 2, + [53532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5074), 1, anon_sym_SEMI, - [53527] = 2, + [53539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5076), 1, anon_sym_SEMI, - [53534] = 2, + [53546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5078), 1, anon_sym_LPAREN, - [53541] = 2, + [53553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(5080), 1, aux_sym_if_expression_token1, - [53548] = 2, + [53560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 1, + ACTIONS(5082), 1, aux_sym_expression_token2, - [53555] = 2, + [53567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5084), 1, anon_sym_EQ_GT, - [53562] = 2, + [53574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4163), 1, + ACTIONS(4166), 1, anon_sym_RPAREN, - [53569] = 2, + [53581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, + ACTIONS(5086), 1, aux_sym__package_specification_token3, - [53576] = 2, + [53588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, + ACTIONS(5088), 1, anon_sym_RPAREN, - [53583] = 2, + [53595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5090), 1, anon_sym_EQ_GT, - [53590] = 2, + [53602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - [53597] = 2, + [53609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(5094), 1, anon_sym_SEMI, - [53604] = 2, + [53616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(5096), 1, anon_sym_SEMI, - [53611] = 2, + [53623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, + ACTIONS(5098), 1, aux_sym_loop_statement_token1, - [53618] = 2, + [53630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(5100), 1, anon_sym_SEMI, - [53625] = 2, + [53637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 1, + ACTIONS(5102), 1, aux_sym__package_specification_token3, - [53632] = 2, + [53644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, + ACTIONS(5104), 1, anon_sym_SEMI, - [53639] = 2, + [53651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, + ACTIONS(5106), 1, aux_sym_asynchronous_select_token1, - [53646] = 2, + [53658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(5108), 1, anon_sym_DOT_DOT, - [53653] = 2, + [53665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4146), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - [53660] = 2, + [53672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(5110), 1, aux_sym_asynchronous_select_token2, - [53667] = 2, + [53679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(4151), 1, anon_sym_SEMI, - [53674] = 2, + [53686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, + ACTIONS(5112), 1, anon_sym_SEMI, - [53681] = 2, + [53693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, + ACTIONS(5114), 1, aux_sym__package_specification_token3, - [53688] = 2, + [53700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, + ACTIONS(5116), 1, aux_sym_asynchronous_select_token1, - [53695] = 2, + [53707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 1, + ACTIONS(5118), 1, aux_sym_asynchronous_select_token2, - [53702] = 2, + [53714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5117), 1, + ACTIONS(5120), 1, anon_sym_SEMI, - [53709] = 2, + [53721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5119), 1, + ACTIONS(5122), 1, aux_sym_expression_token2, - [53716] = 2, + [53728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5121), 1, + ACTIONS(5124), 1, anon_sym_EQ_GT, - [53723] = 2, + [53735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5123), 1, + ACTIONS(5126), 1, anon_sym_SEMI, - [53730] = 2, + [53742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 1, + ACTIONS(5128), 1, sym_identifier, - [53737] = 2, + [53749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, + ACTIONS(5130), 1, anon_sym_SEMI, - [53744] = 2, + [53756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(5132), 1, aux_sym_if_expression_token1, - [53751] = 2, + [53763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5131), 1, + ACTIONS(5134), 1, anon_sym_SEMI, - [53758] = 2, + [53770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5133), 1, + ACTIONS(5136), 1, anon_sym_EQ_GT, - [53765] = 2, + [53777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5138), 1, aux_sym_case_expression_token1, - [53772] = 2, + [53784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3449), 1, anon_sym_SEMI, - [53779] = 2, + [53791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, + ACTIONS(5140), 1, aux_sym_if_expression_token1, - [53786] = 2, + [53798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, + ACTIONS(5142), 1, anon_sym_SEMI, - [53793] = 2, + [53805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5144), 1, anon_sym_SEMI, - [53800] = 2, + [53812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, + ACTIONS(5146), 1, anon_sym_SEMI, - [53807] = 2, + [53819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3766), 1, + ACTIONS(3771), 1, anon_sym_SEMI, - [53814] = 2, + [53826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, + ACTIONS(5148), 1, aux_sym_iterated_element_association_token2, - [53821] = 2, + [53833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, + ACTIONS(5150), 1, aux_sym_with_clause_token2, - [53828] = 2, + [53840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, + ACTIONS(5152), 1, aux_sym_chunk_specification_token1, - [53835] = 2, + [53847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, + ACTIONS(5154), 1, anon_sym_SEMI, - [53842] = 2, + [53854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, + ACTIONS(5156), 1, aux_sym_compilation_unit_token1, - [53849] = 2, + [53861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, + ACTIONS(5158), 1, aux_sym_compilation_unit_token1, - [53856] = 2, + [53868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, + ACTIONS(5160), 1, aux_sym_iterated_element_association_token2, - [53863] = 2, + [53875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 1, + ACTIONS(5162), 1, anon_sym_SEMI, - [53870] = 2, + [53882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4397), 1, aux_sym_compilation_unit_token1, - [53877] = 2, + [53889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(5164), 1, anon_sym_RBRACK, - [53884] = 2, + [53896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, + ACTIONS(5166), 1, aux_sym_allocator_token1, - [53891] = 2, + [53903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - [53898] = 2, + [53910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, + ACTIONS(5170), 1, anon_sym_RPAREN, - [53905] = 2, + [53917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5172), 1, anon_sym_SEMI, - [53912] = 2, + [53924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, + ACTIONS(5174), 1, anon_sym_EQ_GT, - [53919] = 2, + [53931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5173), 1, + ACTIONS(5176), 1, aux_sym_chunk_specification_token1, - [53926] = 2, + [53938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 1, + ACTIONS(5178), 1, anon_sym_SEMI, - [53933] = 2, + [53945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(5164), 1, anon_sym_RPAREN, - [53940] = 2, + [53952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 1, + ACTIONS(3415), 1, anon_sym_SEMI, - [53947] = 2, + [53959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(410), 1, aux_sym_subprogram_body_token1, - [53954] = 2, + [53966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5180), 1, aux_sym__package_specification_token2, - [53961] = 2, + [53973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, + ACTIONS(5182), 1, anon_sym_RPAREN, - [53968] = 2, + [53980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 1, + ACTIONS(4063), 1, anon_sym_SEMI, - [53975] = 2, + [53987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - [53982] = 2, + [53994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, + ACTIONS(5186), 1, anon_sym_EQ_GT, - [53989] = 2, + [54001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3260), 1, + ACTIONS(3223), 1, anon_sym_RPAREN, - [53996] = 2, + [54008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(5188), 1, anon_sym_RPAREN, - [54003] = 2, + [54015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - [54010] = 2, + [54022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - [54017] = 2, + [54029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5194), 1, aux_sym_if_expression_token1, - [54024] = 2, + [54036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5196), 1, anon_sym_SEMI, - [54031] = 2, + [54043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, + ACTIONS(5198), 1, anon_sym_RPAREN, - [54038] = 2, + [54050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5197), 1, + ACTIONS(5200), 1, anon_sym_SEMI, - [54045] = 2, + [54057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, + ACTIONS(5202), 1, aux_sym_subprogram_body_token1, - [54052] = 2, + [54064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, + ACTIONS(5204), 1, anon_sym_RBRACK, - [54059] = 2, + [54071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, + ACTIONS(5206), 1, anon_sym_RPAREN, - [54066] = 2, + [54078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5205), 1, + ACTIONS(5208), 1, aux_sym_expression_token2, - [54073] = 2, + [54085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5207), 1, + ACTIONS(5210), 1, aux_sym__package_specification_token3, - [54080] = 2, + [54092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(5212), 1, aux_sym__package_specification_token3, - [54087] = 2, + [54099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 1, + ACTIONS(5214), 1, anon_sym_SEMI, - [54094] = 2, + [54106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(516), 1, + ACTIONS(510), 1, aux_sym_allocator_token1, - [54101] = 2, + [54113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, + ACTIONS(5216), 1, anon_sym_SEMI, - [54108] = 2, + [54120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 1, + ACTIONS(4448), 1, anon_sym_SEMI, - [54115] = 2, + [54127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, + ACTIONS(5218), 1, anon_sym_SEMI, - [54122] = 2, + [54134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, + ACTIONS(5220), 1, aux_sym__package_specification_token2, - [54129] = 2, + [54141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, + ACTIONS(5222), 1, anon_sym_SEMI, - [54136] = 2, + [54148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, + ACTIONS(5224), 1, aux_sym_with_clause_token2, - [54143] = 2, + [54155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(5226), 1, aux_sym_compilation_unit_token1, - [54150] = 2, + [54162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5225), 1, + ACTIONS(5228), 1, aux_sym_compilation_unit_token1, - [54157] = 2, + [54169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, + ACTIONS(5230), 1, anon_sym_SEMI, - [54164] = 2, + [54176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, + ACTIONS(5232), 1, anon_sym_RPAREN, - [54171] = 2, + [54183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, + ACTIONS(5234), 1, aux_sym_with_clause_token2, - [54178] = 2, + [54190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 1, + ACTIONS(5236), 1, anon_sym_SEMI, - [54185] = 2, + [54197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, + ACTIONS(5238), 1, aux_sym__package_specification_token3, - [54192] = 2, + [54204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, + ACTIONS(5240), 1, anon_sym_SEMI, - [54199] = 2, + [54211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5242), 1, aux_sym__package_specification_token2, - [54206] = 2, + [54218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, + ACTIONS(5244), 1, anon_sym_SEMI, - [54213] = 2, + [54225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, + ACTIONS(5246), 1, anon_sym_SEMI, - [54220] = 2, + [54232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5245), 1, + ACTIONS(5248), 1, aux_sym_with_clause_token2, - [54227] = 2, + [54239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 1, + ACTIONS(5250), 1, anon_sym_SEMI, - [54234] = 2, + [54246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - [54241] = 2, + [54253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5251), 1, + ACTIONS(5254), 1, aux_sym_loop_statement_token1, - [54248] = 2, + [54260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 1, + ACTIONS(5256), 1, aux_sym_at_clause_token1, - [54255] = 2, + [54267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5255), 1, + ACTIONS(5258), 1, sym_tick, - [54262] = 2, + [54274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 1, + ACTIONS(5260), 1, anon_sym_SEMI, - [54269] = 2, + [54281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5259), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - [54276] = 2, + [54288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(5264), 1, anon_sym_RPAREN, - [54283] = 2, + [54295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, + ACTIONS(5266), 1, anon_sym_GT_GT, - [54290] = 2, + [54302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 1, + ACTIONS(5268), 1, aux_sym_allocator_token1, - [54297] = 2, + [54309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5267), 1, + ACTIONS(5270), 1, aux_sym_object_renaming_declaration_token1, - [54304] = 2, + [54316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 1, + ACTIONS(5272), 1, aux_sym_object_renaming_declaration_token1, - [54311] = 2, + [54323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5271), 1, + ACTIONS(5274), 1, aux_sym_primary_null_token1, - [54318] = 2, + [54330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, + ACTIONS(5276), 1, anon_sym_SEMI, - [54325] = 2, + [54337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5275), 1, + ACTIONS(5278), 1, anon_sym_SEMI, - [54332] = 2, + [54344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, + ACTIONS(5280), 1, aux_sym_primary_null_token1, - [54339] = 2, + [54351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 1, + ACTIONS(5282), 1, sym_identifier, - [54346] = 2, + [54358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(5284), 1, anon_sym_EQ_GT, - [54353] = 2, + [54365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5283), 1, + ACTIONS(5286), 1, aux_sym_loop_statement_token1, - [54360] = 2, + [54372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - [54367] = 2, + [54379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5290), 1, anon_sym_RBRACK, - [54374] = 2, + [54386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, + ACTIONS(5292), 1, anon_sym_SEMI, - [54381] = 2, + [54393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5291), 1, + ACTIONS(5294), 1, anon_sym_SEMI, - [54388] = 2, + [54400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5293), 1, + ACTIONS(5296), 1, anon_sym_SEMI, - [54395] = 2, + [54407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5295), 1, + ACTIONS(5298), 1, anon_sym_SEMI, - [54402] = 2, + [54414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5297), 1, + ACTIONS(5300), 1, anon_sym_SEMI, - [54409] = 2, + [54421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5299), 1, + ACTIONS(5302), 1, anon_sym_EQ_GT, - [54416] = 2, + [54428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5304), 1, aux_sym__package_specification_token2, - [54423] = 2, + [54435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, + ACTIONS(5306), 1, anon_sym_SEMI, - [54430] = 2, + [54442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5305), 1, + ACTIONS(5308), 1, aux_sym_compilation_unit_token1, - [54437] = 2, + [54449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5307), 1, + ACTIONS(5310), 1, aux_sym_loop_statement_token1, - [54444] = 2, + [54456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5309), 1, + ACTIONS(5312), 1, aux_sym__package_specification_token3, - [54451] = 2, + [54463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5311), 1, + ACTIONS(5314), 1, anon_sym_SEMI, - [54458] = 2, + [54470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5313), 1, + ACTIONS(5316), 1, aux_sym_with_clause_token2, - [54465] = 2, + [54477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5315), 1, + ACTIONS(5318), 1, aux_sym__package_specification_token3, - [54472] = 2, + [54484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5290), 1, anon_sym_RPAREN, - [54479] = 2, + [54491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5317), 1, + ACTIONS(5320), 1, anon_sym_SEMI, - [54486] = 2, + [54498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5319), 1, + ACTIONS(5322), 1, anon_sym_SEMI, - [54493] = 2, + [54505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5321), 1, + ACTIONS(5324), 1, aux_sym_expression_token2, - [54500] = 2, + [54512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5323), 1, + ACTIONS(5326), 1, anon_sym_RPAREN, - [54507] = 2, + [54519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_SEMI, - [54514] = 2, + [54526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(424), 1, aux_sym_subprogram_body_token1, - [54521] = 2, + [54533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5327), 1, + ACTIONS(5330), 1, aux_sym__package_specification_token3, - [54528] = 2, + [54540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5329), 1, + ACTIONS(5332), 1, aux_sym_expression_token2, - [54535] = 2, + [54547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5331), 1, + ACTIONS(5334), 1, aux_sym_subprogram_body_token1, - [54542] = 2, + [54554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5333), 1, + ACTIONS(5336), 1, anon_sym_SEMI, - [54549] = 2, + [54561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(5338), 1, anon_sym_SEMI, - [54556] = 2, + [54568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_SEMI, - [54563] = 2, + [54575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5339), 1, + ACTIONS(5342), 1, anon_sym_SEMI, - [54570] = 2, + [54582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5341), 1, + ACTIONS(5344), 1, anon_sym_SEMI, - [54577] = 2, + [54589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5343), 1, + ACTIONS(5346), 1, anon_sym_SEMI, - [54584] = 2, + [54596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 1, + ACTIONS(5348), 1, anon_sym_RPAREN, - [54591] = 2, + [54603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5350), 1, aux_sym_expression_token2, - [54598] = 2, + [54610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5349), 1, + ACTIONS(5352), 1, anon_sym_SEMI, - [54605] = 2, + [54617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, + ACTIONS(5354), 1, anon_sym_RBRACK, - [54612] = 2, + [54624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, + ACTIONS(5356), 1, anon_sym_SEMI, - [54619] = 2, + [54631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(5358), 1, aux_sym_compilation_unit_token1, - [54626] = 2, + [54638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, + ACTIONS(5360), 1, anon_sym_RPAREN, - [54633] = 2, + [54645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5359), 1, + ACTIONS(5362), 1, anon_sym_SEMI, - [54640] = 2, + [54652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(5364), 1, aux_sym_with_clause_token2, - [54647] = 2, + [54659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5363), 1, + ACTIONS(5366), 1, aux_sym_record_component_association_list_token1, - [54654] = 2, + [54666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 1, + ACTIONS(5368), 1, anon_sym_COLON, - [54661] = 2, + [54673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 1, + ACTIONS(5370), 1, sym_identifier, - [54668] = 2, + [54680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5372), 1, anon_sym_SEMI, - [54675] = 2, + [54687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5371), 1, + ACTIONS(5374), 1, anon_sym_SEMI, - [54682] = 2, + [54694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5373), 1, + ACTIONS(5376), 1, sym_identifier, - [54689] = 2, + [54701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(5378), 1, anon_sym_SEMI, - [54696] = 2, + [54708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 1, + ACTIONS(5380), 1, sym_identifier, - [54703] = 2, + [54715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5379), 1, + ACTIONS(5382), 1, aux_sym__package_specification_token2, - [54710] = 2, + [54722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(418), 1, aux_sym_subprogram_body_token1, - [54717] = 2, + [54729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, + ACTIONS(5384), 1, anon_sym_SEMI, - [54724] = 2, + [54736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5386), 1, sym_identifier, - [54731] = 2, + [54743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, + ACTIONS(5388), 1, sym_identifier, - [54738] = 2, + [54750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(5390), 1, anon_sym_SEMI, - [54745] = 2, + [54757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4519), 1, aux_sym__package_specification_token3, - [54752] = 2, + [54764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 1, + ACTIONS(5392), 1, anon_sym_SEMI, - [54759] = 2, + [54771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(350), 1, aux_sym_private_type_declaration_token1, - [54766] = 2, + [54778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4300), 1, anon_sym_SEMI, - [54773] = 2, + [54785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, + ACTIONS(4345), 1, anon_sym_SEMI, - [54780] = 2, + [54792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, + ACTIONS(5394), 1, aux_sym_if_expression_token1, - [54787] = 2, + [54799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5393), 1, + ACTIONS(5396), 1, anon_sym_SEMI, - [54794] = 2, + [54806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5395), 1, + ACTIONS(5398), 1, aux_sym__package_specification_token3, - [54801] = 2, + [54813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5400), 1, anon_sym_SEMI, - [54808] = 2, + [54820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 1, + ACTIONS(5402), 1, aux_sym_if_expression_token1, - [54815] = 2, + [54827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5401), 1, + ACTIONS(5404), 1, anon_sym_SEMI, - [54822] = 2, + [54834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 1, + ACTIONS(5406), 1, aux_sym_compilation_unit_token1, - [54829] = 2, + [54841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5405), 1, + ACTIONS(5408), 1, anon_sym_SEMI, - [54836] = 2, + [54848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5410), 1, anon_sym_RPAREN, - [54843] = 2, + [54855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5409), 1, + ACTIONS(5412), 1, aux_sym__package_specification_token3, - [54850] = 2, + [54862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5411), 1, + ACTIONS(5414), 1, aux_sym_with_clause_token2, - [54857] = 2, + [54869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, + ACTIONS(5416), 1, aux_sym_expression_token2, - [54864] = 2, + [54876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, + ACTIONS(5418), 1, aux_sym_subprogram_body_token1, - [54871] = 2, + [54883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(3851), 1, anon_sym_SEMI, - [54878] = 2, + [54890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 1, + ACTIONS(5420), 1, anon_sym_SEMI, - [54885] = 2, + [54897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5419), 1, + ACTIONS(5422), 1, aux_sym_use_clause_token2, - [54892] = 2, + [54904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5421), 1, + ACTIONS(5424), 1, aux_sym_loop_statement_token1, - [54899] = 2, + [54911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3878), 1, aux_sym__package_specification_token2, - [54906] = 2, + [54918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5423), 1, + ACTIONS(5426), 1, aux_sym_compilation_unit_token1, - [54913] = 2, + [54925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5425), 1, + ACTIONS(5428), 1, anon_sym_RBRACK, - [54920] = 2, + [54932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5427), 1, + ACTIONS(5430), 1, sym_identifier, - [54927] = 2, + [54939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5429), 1, + ACTIONS(5432), 1, anon_sym_SEMI, - [54934] = 2, + [54946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5431), 1, + ACTIONS(5434), 1, sym_identifier, - [54941] = 2, + [54953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5433), 1, + ACTIONS(5436), 1, sym_identifier, - [54948] = 2, + [54960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, + ACTIONS(5438), 1, anon_sym_SEMI, - [54955] = 2, + [54967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3248), 1, + ACTIONS(3257), 1, aux_sym_loop_statement_token1, - [54962] = 2, + [54974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5437), 1, + ACTIONS(5440), 1, anon_sym_SEMI, - [54969] = 2, + [54981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 1, + ACTIONS(5442), 1, anon_sym_SEMI, - [54976] = 2, + [54988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5441), 1, + ACTIONS(5444), 1, sym_tick, - [54983] = 2, + [54995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, + ACTIONS(5446), 1, aux_sym_record_component_association_list_token1, - [54990] = 2, + [55002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4559), 1, anon_sym_SEMI, - [54997] = 2, + [55009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, + ACTIONS(5448), 1, aux_sym__package_specification_token3, - [55004] = 2, + [55016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - [55011] = 2, + [55023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5447), 1, + ACTIONS(5450), 1, anon_sym_COLON, - [55018] = 2, + [55030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 1, + ACTIONS(5452), 1, ts_builtin_sym_end, - [55025] = 2, + [55037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5451), 1, + ACTIONS(5454), 1, anon_sym_SEMI, - [55032] = 2, + [55044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 1, + ACTIONS(5456), 1, sym_identifier, - [55039] = 2, + [55051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5455), 1, + ACTIONS(5458), 1, sym_identifier, - [55046] = 2, + [55058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, + ACTIONS(5460), 1, sym_identifier, - [55053] = 2, + [55065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, + ACTIONS(5462), 1, anon_sym_SEMI, - [55060] = 2, + [55072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4579), 1, anon_sym_SEMI, - [55067] = 2, + [55079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, + ACTIONS(5464), 1, sym_identifier, - [55074] = 2, + [55086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5463), 1, + ACTIONS(5466), 1, anon_sym_SEMI, - [55081] = 2, + [55093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 1, + ACTIONS(5468), 1, aux_sym__package_specification_token3, - [55088] = 2, + [55100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, + ACTIONS(5470), 1, aux_sym_with_clause_token2, - [55095] = 2, + [55107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, + ACTIONS(5472), 1, sym_identifier, - [55102] = 2, + [55114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - [55109] = 2, + [55121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 1, + ACTIONS(5474), 1, aux_sym_allocator_token1, - [55116] = 2, + [55128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, + ACTIONS(5476), 1, aux_sym_with_clause_token2, - [55123] = 2, + [55135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, + ACTIONS(5478), 1, anon_sym_SEMI, - [55130] = 2, + [55142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 1, + ACTIONS(3732), 1, aux_sym_compilation_unit_token1, - [55137] = 2, + [55149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5480), 1, anon_sym_SEMI, - [55144] = 2, + [55156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, + ACTIONS(5482), 1, aux_sym__package_specification_token2, - [55151] = 2, + [55163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(5484), 1, aux_sym_global_mode_token1, - [55158] = 2, + [55170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5483), 1, + ACTIONS(5486), 1, anon_sym_LPAREN, - [55165] = 2, + [55177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5485), 1, + ACTIONS(5488), 1, sym_identifier, - [55172] = 2, + [55184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4601), 1, anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(98)] = 0, - [SMALL_STATE(99)] = 130, - [SMALL_STATE(100)] = 260, - [SMALL_STATE(101)] = 380, + [SMALL_STATE(99)] = 120, + [SMALL_STATE(100)] = 258, + [SMALL_STATE(101)] = 388, [SMALL_STATE(102)] = 518, - [SMALL_STATE(103)] = 635, - [SMALL_STATE(104)] = 752, - [SMALL_STATE(105)] = 869, - [SMALL_STATE(106)] = 986, + [SMALL_STATE(103)] = 633, + [SMALL_STATE(104)] = 750, + [SMALL_STATE(105)] = 867, + [SMALL_STATE(106)] = 984, [SMALL_STATE(107)] = 1101, [SMALL_STATE(108)] = 1215, - [SMALL_STATE(109)] = 1347, + [SMALL_STATE(109)] = 1329, [SMALL_STATE(110)] = 1461, [SMALL_STATE(111)] = 1575, [SMALL_STATE(112)] = 1689, @@ -62457,7 +62466,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(121)] = 2776, [SMALL_STATE(122)] = 2890, [SMALL_STATE(123)] = 3004, - [SMALL_STATE(124)] = 3116, + [SMALL_STATE(124)] = 3118, [SMALL_STATE(125)] = 3230, [SMALL_STATE(126)] = 3291, [SMALL_STATE(127)] = 3352, @@ -62827,8 +62836,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(491)] = 27188, [SMALL_STATE(492)] = 27240, [SMALL_STATE(493)] = 27292, - [SMALL_STATE(494)] = 27354, - [SMALL_STATE(495)] = 27416, + [SMALL_STATE(494)] = 27344, + [SMALL_STATE(495)] = 27406, [SMALL_STATE(496)] = 27468, [SMALL_STATE(497)] = 27520, [SMALL_STATE(498)] = 27572, @@ -63187,1219 +63196,1219 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(851)] = 41466, [SMALL_STATE(852)] = 41492, [SMALL_STATE(853)] = 41518, - [SMALL_STATE(854)] = 41541, - [SMALL_STATE(855)] = 41562, - [SMALL_STATE(856)] = 41585, - [SMALL_STATE(857)] = 41608, - [SMALL_STATE(858)] = 41643, - [SMALL_STATE(859)] = 41664, - [SMALL_STATE(860)] = 41686, - [SMALL_STATE(861)] = 41706, - [SMALL_STATE(862)] = 41728, - [SMALL_STATE(863)] = 41748, - [SMALL_STATE(864)] = 41770, - [SMALL_STATE(865)] = 41788, - [SMALL_STATE(866)] = 41808, - [SMALL_STATE(867)] = 41837, - [SMALL_STATE(868)] = 41856, - [SMALL_STATE(869)] = 41875, - [SMALL_STATE(870)] = 41904, - [SMALL_STATE(871)] = 41933, - [SMALL_STATE(872)] = 41962, - [SMALL_STATE(873)] = 41991, - [SMALL_STATE(874)] = 42010, - [SMALL_STATE(875)] = 42029, - [SMALL_STATE(876)] = 42045, - [SMALL_STATE(877)] = 42077, - [SMALL_STATE(878)] = 42109, - [SMALL_STATE(879)] = 42125, - [SMALL_STATE(880)] = 42141, - [SMALL_STATE(881)] = 42173, - [SMALL_STATE(882)] = 42205, - [SMALL_STATE(883)] = 42221, - [SMALL_STATE(884)] = 42237, - [SMALL_STATE(885)] = 42268, - [SMALL_STATE(886)] = 42295, - [SMALL_STATE(887)] = 42324, - [SMALL_STATE(888)] = 42353, - [SMALL_STATE(889)] = 42380, - [SMALL_STATE(890)] = 42407, - [SMALL_STATE(891)] = 42434, - [SMALL_STATE(892)] = 42459, - [SMALL_STATE(893)] = 42490, - [SMALL_STATE(894)] = 42517, - [SMALL_STATE(895)] = 42544, - [SMALL_STATE(896)] = 42571, - [SMALL_STATE(897)] = 42598, - [SMALL_STATE(898)] = 42625, - [SMALL_STATE(899)] = 42656, - [SMALL_STATE(900)] = 42672, - [SMALL_STATE(901)] = 42688, - [SMALL_STATE(902)] = 42704, - [SMALL_STATE(903)] = 42720, - [SMALL_STATE(904)] = 42736, - [SMALL_STATE(905)] = 42758, - [SMALL_STATE(906)] = 42774, - [SMALL_STATE(907)] = 42790, - [SMALL_STATE(908)] = 42806, - [SMALL_STATE(909)] = 42828, - [SMALL_STATE(910)] = 42844, - [SMALL_STATE(911)] = 42870, - [SMALL_STATE(912)] = 42886, - [SMALL_STATE(913)] = 42902, - [SMALL_STATE(914)] = 42918, - [SMALL_STATE(915)] = 42934, - [SMALL_STATE(916)] = 42950, - [SMALL_STATE(917)] = 42976, - [SMALL_STATE(918)] = 42992, - [SMALL_STATE(919)] = 43008, - [SMALL_STATE(920)] = 43024, - [SMALL_STATE(921)] = 43040, - [SMALL_STATE(922)] = 43056, - [SMALL_STATE(923)] = 43072, - [SMALL_STATE(924)] = 43088, - [SMALL_STATE(925)] = 43114, - [SMALL_STATE(926)] = 43130, - [SMALL_STATE(927)] = 43146, - [SMALL_STATE(928)] = 43162, - [SMALL_STATE(929)] = 43178, - [SMALL_STATE(930)] = 43194, - [SMALL_STATE(931)] = 43220, - [SMALL_STATE(932)] = 43244, - [SMALL_STATE(933)] = 43260, - [SMALL_STATE(934)] = 43276, - [SMALL_STATE(935)] = 43292, - [SMALL_STATE(936)] = 43308, - [SMALL_STATE(937)] = 43332, - [SMALL_STATE(938)] = 43358, - [SMALL_STATE(939)] = 43374, - [SMALL_STATE(940)] = 43402, - [SMALL_STATE(941)] = 43418, - [SMALL_STATE(942)] = 43434, - [SMALL_STATE(943)] = 43450, - [SMALL_STATE(944)] = 43466, - [SMALL_STATE(945)] = 43492, - [SMALL_STATE(946)] = 43508, - [SMALL_STATE(947)] = 43524, - [SMALL_STATE(948)] = 43540, - [SMALL_STATE(949)] = 43565, - [SMALL_STATE(950)] = 43580, - [SMALL_STATE(951)] = 43595, - [SMALL_STATE(952)] = 43620, - [SMALL_STATE(953)] = 43645, - [SMALL_STATE(954)] = 43670, - [SMALL_STATE(955)] = 43695, - [SMALL_STATE(956)] = 43720, - [SMALL_STATE(957)] = 43745, - [SMALL_STATE(958)] = 43770, - [SMALL_STATE(959)] = 43793, - [SMALL_STATE(960)] = 43806, - [SMALL_STATE(961)] = 43821, - [SMALL_STATE(962)] = 43842, - [SMALL_STATE(963)] = 43855, - [SMALL_STATE(964)] = 43870, - [SMALL_STATE(965)] = 43895, - [SMALL_STATE(966)] = 43920, - [SMALL_STATE(967)] = 43945, - [SMALL_STATE(968)] = 43970, - [SMALL_STATE(969)] = 43995, - [SMALL_STATE(970)] = 44010, - [SMALL_STATE(971)] = 44031, - [SMALL_STATE(972)] = 44044, - [SMALL_STATE(973)] = 44069, - [SMALL_STATE(974)] = 44094, - [SMALL_STATE(975)] = 44107, - [SMALL_STATE(976)] = 44120, - [SMALL_STATE(977)] = 44145, - [SMALL_STATE(978)] = 44160, - [SMALL_STATE(979)] = 44185, - [SMALL_STATE(980)] = 44210, - [SMALL_STATE(981)] = 44235, - [SMALL_STATE(982)] = 44256, - [SMALL_STATE(983)] = 44281, - [SMALL_STATE(984)] = 44306, - [SMALL_STATE(985)] = 44328, - [SMALL_STATE(986)] = 44340, - [SMALL_STATE(987)] = 44362, - [SMALL_STATE(988)] = 44384, - [SMALL_STATE(989)] = 44398, - [SMALL_STATE(990)] = 44414, - [SMALL_STATE(991)] = 44434, - [SMALL_STATE(992)] = 44452, - [SMALL_STATE(993)] = 44474, - [SMALL_STATE(994)] = 44494, - [SMALL_STATE(995)] = 44516, - [SMALL_STATE(996)] = 44536, - [SMALL_STATE(997)] = 44558, - [SMALL_STATE(998)] = 44578, - [SMALL_STATE(999)] = 44596, - [SMALL_STATE(1000)] = 44616, - [SMALL_STATE(1001)] = 44630, - [SMALL_STATE(1002)] = 44652, - [SMALL_STATE(1003)] = 44674, - [SMALL_STATE(1004)] = 44696, - [SMALL_STATE(1005)] = 44718, - [SMALL_STATE(1006)] = 44734, - [SMALL_STATE(1007)] = 44756, - [SMALL_STATE(1008)] = 44778, - [SMALL_STATE(1009)] = 44794, - [SMALL_STATE(1010)] = 44814, - [SMALL_STATE(1011)] = 44826, - [SMALL_STATE(1012)] = 44844, - [SMALL_STATE(1013)] = 44860, - [SMALL_STATE(1014)] = 44873, - [SMALL_STATE(1015)] = 44892, - [SMALL_STATE(1016)] = 44905, - [SMALL_STATE(1017)] = 44924, - [SMALL_STATE(1018)] = 44943, - [SMALL_STATE(1019)] = 44962, - [SMALL_STATE(1020)] = 44981, - [SMALL_STATE(1021)] = 45000, - [SMALL_STATE(1022)] = 45015, - [SMALL_STATE(1023)] = 45034, - [SMALL_STATE(1024)] = 45045, - [SMALL_STATE(1025)] = 45056, - [SMALL_STATE(1026)] = 45075, - [SMALL_STATE(1027)] = 45094, - [SMALL_STATE(1028)] = 45113, - [SMALL_STATE(1029)] = 45128, - [SMALL_STATE(1030)] = 45145, - [SMALL_STATE(1031)] = 45164, - [SMALL_STATE(1032)] = 45183, - [SMALL_STATE(1033)] = 45202, - [SMALL_STATE(1034)] = 45219, - [SMALL_STATE(1035)] = 45238, - [SMALL_STATE(1036)] = 45253, - [SMALL_STATE(1037)] = 45272, - [SMALL_STATE(1038)] = 45289, - [SMALL_STATE(1039)] = 45308, - [SMALL_STATE(1040)] = 45327, - [SMALL_STATE(1041)] = 45346, - [SMALL_STATE(1042)] = 45365, - [SMALL_STATE(1043)] = 45380, - [SMALL_STATE(1044)] = 45397, - [SMALL_STATE(1045)] = 45416, - [SMALL_STATE(1046)] = 45435, - [SMALL_STATE(1047)] = 45454, - [SMALL_STATE(1048)] = 45469, - [SMALL_STATE(1049)] = 45486, - [SMALL_STATE(1050)] = 45505, - [SMALL_STATE(1051)] = 45524, - [SMALL_STATE(1052)] = 45541, - [SMALL_STATE(1053)] = 45556, - [SMALL_STATE(1054)] = 45575, - [SMALL_STATE(1055)] = 45594, - [SMALL_STATE(1056)] = 45607, - [SMALL_STATE(1057)] = 45624, - [SMALL_STATE(1058)] = 45643, - [SMALL_STATE(1059)] = 45658, - [SMALL_STATE(1060)] = 45677, - [SMALL_STATE(1061)] = 45696, - [SMALL_STATE(1062)] = 45715, - [SMALL_STATE(1063)] = 45734, - [SMALL_STATE(1064)] = 45753, - [SMALL_STATE(1065)] = 45772, - [SMALL_STATE(1066)] = 45791, - [SMALL_STATE(1067)] = 45810, - [SMALL_STATE(1068)] = 45829, - [SMALL_STATE(1069)] = 45848, - [SMALL_STATE(1070)] = 45867, - [SMALL_STATE(1071)] = 45886, - [SMALL_STATE(1072)] = 45905, - [SMALL_STATE(1073)] = 45920, - [SMALL_STATE(1074)] = 45939, - [SMALL_STATE(1075)] = 45958, - [SMALL_STATE(1076)] = 45977, - [SMALL_STATE(1077)] = 45996, - [SMALL_STATE(1078)] = 46015, - [SMALL_STATE(1079)] = 46030, - [SMALL_STATE(1080)] = 46049, - [SMALL_STATE(1081)] = 46066, - [SMALL_STATE(1082)] = 46085, - [SMALL_STATE(1083)] = 46104, - [SMALL_STATE(1084)] = 46123, - [SMALL_STATE(1085)] = 46138, - [SMALL_STATE(1086)] = 46157, - [SMALL_STATE(1087)] = 46168, - [SMALL_STATE(1088)] = 46185, - [SMALL_STATE(1089)] = 46204, - [SMALL_STATE(1090)] = 46223, - [SMALL_STATE(1091)] = 46242, - [SMALL_STATE(1092)] = 46259, - [SMALL_STATE(1093)] = 46278, - [SMALL_STATE(1094)] = 46297, - [SMALL_STATE(1095)] = 46316, - [SMALL_STATE(1096)] = 46327, - [SMALL_STATE(1097)] = 46346, - [SMALL_STATE(1098)] = 46365, - [SMALL_STATE(1099)] = 46384, - [SMALL_STATE(1100)] = 46395, - [SMALL_STATE(1101)] = 46406, - [SMALL_STATE(1102)] = 46420, - [SMALL_STATE(1103)] = 46434, - [SMALL_STATE(1104)] = 46450, - [SMALL_STATE(1105)] = 46460, - [SMALL_STATE(1106)] = 46476, - [SMALL_STATE(1107)] = 46492, - [SMALL_STATE(1108)] = 46502, - [SMALL_STATE(1109)] = 46518, - [SMALL_STATE(1110)] = 46534, - [SMALL_STATE(1111)] = 46548, - [SMALL_STATE(1112)] = 46558, - [SMALL_STATE(1113)] = 46574, - [SMALL_STATE(1114)] = 46584, - [SMALL_STATE(1115)] = 46600, - [SMALL_STATE(1116)] = 46616, - [SMALL_STATE(1117)] = 46630, - [SMALL_STATE(1118)] = 46646, - [SMALL_STATE(1119)] = 46656, - [SMALL_STATE(1120)] = 46666, - [SMALL_STATE(1121)] = 46680, - [SMALL_STATE(1122)] = 46694, - [SMALL_STATE(1123)] = 46704, - [SMALL_STATE(1124)] = 46720, - [SMALL_STATE(1125)] = 46736, - [SMALL_STATE(1126)] = 46752, - [SMALL_STATE(1127)] = 46766, - [SMALL_STATE(1128)] = 46782, - [SMALL_STATE(1129)] = 46796, - [SMALL_STATE(1130)] = 46812, - [SMALL_STATE(1131)] = 46826, - [SMALL_STATE(1132)] = 46842, - [SMALL_STATE(1133)] = 46858, - [SMALL_STATE(1134)] = 46874, - [SMALL_STATE(1135)] = 46888, - [SMALL_STATE(1136)] = 46904, - [SMALL_STATE(1137)] = 46918, - [SMALL_STATE(1138)] = 46934, - [SMALL_STATE(1139)] = 46948, - [SMALL_STATE(1140)] = 46964, - [SMALL_STATE(1141)] = 46980, - [SMALL_STATE(1142)] = 46996, - [SMALL_STATE(1143)] = 47008, - [SMALL_STATE(1144)] = 47024, - [SMALL_STATE(1145)] = 47038, - [SMALL_STATE(1146)] = 47050, - [SMALL_STATE(1147)] = 47064, - [SMALL_STATE(1148)] = 47080, - [SMALL_STATE(1149)] = 47096, - [SMALL_STATE(1150)] = 47112, - [SMALL_STATE(1151)] = 47126, - [SMALL_STATE(1152)] = 47142, - [SMALL_STATE(1153)] = 47158, - [SMALL_STATE(1154)] = 47170, - [SMALL_STATE(1155)] = 47186, - [SMALL_STATE(1156)] = 47202, - [SMALL_STATE(1157)] = 47216, - [SMALL_STATE(1158)] = 47228, - [SMALL_STATE(1159)] = 47242, - [SMALL_STATE(1160)] = 47254, - [SMALL_STATE(1161)] = 47266, - [SMALL_STATE(1162)] = 47282, - [SMALL_STATE(1163)] = 47296, - [SMALL_STATE(1164)] = 47310, - [SMALL_STATE(1165)] = 47326, - [SMALL_STATE(1166)] = 47340, - [SMALL_STATE(1167)] = 47354, - [SMALL_STATE(1168)] = 47370, - [SMALL_STATE(1169)] = 47382, - [SMALL_STATE(1170)] = 47396, - [SMALL_STATE(1171)] = 47412, - [SMALL_STATE(1172)] = 47426, - [SMALL_STATE(1173)] = 47436, - [SMALL_STATE(1174)] = 47450, - [SMALL_STATE(1175)] = 47464, - [SMALL_STATE(1176)] = 47480, - [SMALL_STATE(1177)] = 47490, - [SMALL_STATE(1178)] = 47506, - [SMALL_STATE(1179)] = 47520, - [SMALL_STATE(1180)] = 47536, - [SMALL_STATE(1181)] = 47552, - [SMALL_STATE(1182)] = 47568, - [SMALL_STATE(1183)] = 47582, - [SMALL_STATE(1184)] = 47598, - [SMALL_STATE(1185)] = 47612, - [SMALL_STATE(1186)] = 47628, - [SMALL_STATE(1187)] = 47644, - [SMALL_STATE(1188)] = 47660, - [SMALL_STATE(1189)] = 47672, - [SMALL_STATE(1190)] = 47688, - [SMALL_STATE(1191)] = 47704, - [SMALL_STATE(1192)] = 47716, - [SMALL_STATE(1193)] = 47732, - [SMALL_STATE(1194)] = 47742, - [SMALL_STATE(1195)] = 47756, - [SMALL_STATE(1196)] = 47766, - [SMALL_STATE(1197)] = 47780, - [SMALL_STATE(1198)] = 47794, - [SMALL_STATE(1199)] = 47806, - [SMALL_STATE(1200)] = 47822, - [SMALL_STATE(1201)] = 47836, - [SMALL_STATE(1202)] = 47849, - [SMALL_STATE(1203)] = 47858, - [SMALL_STATE(1204)] = 47871, - [SMALL_STATE(1205)] = 47884, - [SMALL_STATE(1206)] = 47897, - [SMALL_STATE(1207)] = 47908, - [SMALL_STATE(1208)] = 47921, - [SMALL_STATE(1209)] = 47934, - [SMALL_STATE(1210)] = 47947, - [SMALL_STATE(1211)] = 47960, - [SMALL_STATE(1212)] = 47973, - [SMALL_STATE(1213)] = 47986, - [SMALL_STATE(1214)] = 47999, - [SMALL_STATE(1215)] = 48008, - [SMALL_STATE(1216)] = 48017, - [SMALL_STATE(1217)] = 48030, - [SMALL_STATE(1218)] = 48043, - [SMALL_STATE(1219)] = 48052, - [SMALL_STATE(1220)] = 48065, - [SMALL_STATE(1221)] = 48078, - [SMALL_STATE(1222)] = 48091, - [SMALL_STATE(1223)] = 48104, - [SMALL_STATE(1224)] = 48115, - [SMALL_STATE(1225)] = 48124, - [SMALL_STATE(1226)] = 48137, - [SMALL_STATE(1227)] = 48150, - [SMALL_STATE(1228)] = 48163, - [SMALL_STATE(1229)] = 48172, - [SMALL_STATE(1230)] = 48185, - [SMALL_STATE(1231)] = 48194, - [SMALL_STATE(1232)] = 48203, - [SMALL_STATE(1233)] = 48212, - [SMALL_STATE(1234)] = 48221, - [SMALL_STATE(1235)] = 48230, - [SMALL_STATE(1236)] = 48243, - [SMALL_STATE(1237)] = 48256, - [SMALL_STATE(1238)] = 48269, - [SMALL_STATE(1239)] = 48280, - [SMALL_STATE(1240)] = 48293, - [SMALL_STATE(1241)] = 48304, - [SMALL_STATE(1242)] = 48313, - [SMALL_STATE(1243)] = 48322, - [SMALL_STATE(1244)] = 48335, - [SMALL_STATE(1245)] = 48348, - [SMALL_STATE(1246)] = 48361, - [SMALL_STATE(1247)] = 48370, - [SMALL_STATE(1248)] = 48383, - [SMALL_STATE(1249)] = 48396, - [SMALL_STATE(1250)] = 48409, - [SMALL_STATE(1251)] = 48422, - [SMALL_STATE(1252)] = 48435, - [SMALL_STATE(1253)] = 48448, - [SMALL_STATE(1254)] = 48461, - [SMALL_STATE(1255)] = 48474, - [SMALL_STATE(1256)] = 48487, - [SMALL_STATE(1257)] = 48500, - [SMALL_STATE(1258)] = 48509, - [SMALL_STATE(1259)] = 48518, - [SMALL_STATE(1260)] = 48527, - [SMALL_STATE(1261)] = 48536, - [SMALL_STATE(1262)] = 48549, - [SMALL_STATE(1263)] = 48558, - [SMALL_STATE(1264)] = 48571, - [SMALL_STATE(1265)] = 48580, - [SMALL_STATE(1266)] = 48593, - [SMALL_STATE(1267)] = 48606, - [SMALL_STATE(1268)] = 48619, - [SMALL_STATE(1269)] = 48632, - [SMALL_STATE(1270)] = 48645, - [SMALL_STATE(1271)] = 48658, - [SMALL_STATE(1272)] = 48667, - [SMALL_STATE(1273)] = 48680, - [SMALL_STATE(1274)] = 48693, - [SMALL_STATE(1275)] = 48706, - [SMALL_STATE(1276)] = 48719, - [SMALL_STATE(1277)] = 48732, - [SMALL_STATE(1278)] = 48741, - [SMALL_STATE(1279)] = 48754, - [SMALL_STATE(1280)] = 48767, - [SMALL_STATE(1281)] = 48780, - [SMALL_STATE(1282)] = 48793, - [SMALL_STATE(1283)] = 48806, - [SMALL_STATE(1284)] = 48819, - [SMALL_STATE(1285)] = 48832, - [SMALL_STATE(1286)] = 48845, - [SMALL_STATE(1287)] = 48858, - [SMALL_STATE(1288)] = 48871, - [SMALL_STATE(1289)] = 48884, - [SMALL_STATE(1290)] = 48897, - [SMALL_STATE(1291)] = 48910, - [SMALL_STATE(1292)] = 48919, - [SMALL_STATE(1293)] = 48932, - [SMALL_STATE(1294)] = 48943, - [SMALL_STATE(1295)] = 48952, - [SMALL_STATE(1296)] = 48961, - [SMALL_STATE(1297)] = 48974, - [SMALL_STATE(1298)] = 48987, - [SMALL_STATE(1299)] = 48996, - [SMALL_STATE(1300)] = 49009, - [SMALL_STATE(1301)] = 49022, - [SMALL_STATE(1302)] = 49031, - [SMALL_STATE(1303)] = 49042, - [SMALL_STATE(1304)] = 49055, - [SMALL_STATE(1305)] = 49068, - [SMALL_STATE(1306)] = 49081, - [SMALL_STATE(1307)] = 49094, - [SMALL_STATE(1308)] = 49107, - [SMALL_STATE(1309)] = 49120, - [SMALL_STATE(1310)] = 49133, - [SMALL_STATE(1311)] = 49146, - [SMALL_STATE(1312)] = 49159, - [SMALL_STATE(1313)] = 49172, - [SMALL_STATE(1314)] = 49185, - [SMALL_STATE(1315)] = 49198, - [SMALL_STATE(1316)] = 49207, - [SMALL_STATE(1317)] = 49216, - [SMALL_STATE(1318)] = 49225, - [SMALL_STATE(1319)] = 49238, - [SMALL_STATE(1320)] = 49247, - [SMALL_STATE(1321)] = 49256, - [SMALL_STATE(1322)] = 49269, - [SMALL_STATE(1323)] = 49282, - [SMALL_STATE(1324)] = 49295, - [SMALL_STATE(1325)] = 49306, - [SMALL_STATE(1326)] = 49319, - [SMALL_STATE(1327)] = 49328, - [SMALL_STATE(1328)] = 49341, - [SMALL_STATE(1329)] = 49354, - [SMALL_STATE(1330)] = 49367, - [SMALL_STATE(1331)] = 49380, - [SMALL_STATE(1332)] = 49393, - [SMALL_STATE(1333)] = 49406, - [SMALL_STATE(1334)] = 49419, - [SMALL_STATE(1335)] = 49432, - [SMALL_STATE(1336)] = 49441, - [SMALL_STATE(1337)] = 49450, - [SMALL_STATE(1338)] = 49461, - [SMALL_STATE(1339)] = 49474, - [SMALL_STATE(1340)] = 49483, - [SMALL_STATE(1341)] = 49492, - [SMALL_STATE(1342)] = 49501, - [SMALL_STATE(1343)] = 49514, - [SMALL_STATE(1344)] = 49527, - [SMALL_STATE(1345)] = 49540, - [SMALL_STATE(1346)] = 49549, - [SMALL_STATE(1347)] = 49560, - [SMALL_STATE(1348)] = 49573, - [SMALL_STATE(1349)] = 49582, - [SMALL_STATE(1350)] = 49595, - [SMALL_STATE(1351)] = 49608, - [SMALL_STATE(1352)] = 49621, - [SMALL_STATE(1353)] = 49634, - [SMALL_STATE(1354)] = 49647, - [SMALL_STATE(1355)] = 49660, - [SMALL_STATE(1356)] = 49673, - [SMALL_STATE(1357)] = 49686, - [SMALL_STATE(1358)] = 49699, - [SMALL_STATE(1359)] = 49712, - [SMALL_STATE(1360)] = 49721, - [SMALL_STATE(1361)] = 49734, - [SMALL_STATE(1362)] = 49743, - [SMALL_STATE(1363)] = 49756, - [SMALL_STATE(1364)] = 49765, - [SMALL_STATE(1365)] = 49774, - [SMALL_STATE(1366)] = 49783, - [SMALL_STATE(1367)] = 49796, - [SMALL_STATE(1368)] = 49805, - [SMALL_STATE(1369)] = 49814, - [SMALL_STATE(1370)] = 49823, - [SMALL_STATE(1371)] = 49836, - [SMALL_STATE(1372)] = 49845, - [SMALL_STATE(1373)] = 49858, - [SMALL_STATE(1374)] = 49871, - [SMALL_STATE(1375)] = 49884, - [SMALL_STATE(1376)] = 49897, - [SMALL_STATE(1377)] = 49910, - [SMALL_STATE(1378)] = 49923, - [SMALL_STATE(1379)] = 49936, - [SMALL_STATE(1380)] = 49947, - [SMALL_STATE(1381)] = 49960, - [SMALL_STATE(1382)] = 49969, - [SMALL_STATE(1383)] = 49982, - [SMALL_STATE(1384)] = 49995, - [SMALL_STATE(1385)] = 50006, - [SMALL_STATE(1386)] = 50015, - [SMALL_STATE(1387)] = 50024, - [SMALL_STATE(1388)] = 50033, - [SMALL_STATE(1389)] = 50046, - [SMALL_STATE(1390)] = 50055, - [SMALL_STATE(1391)] = 50068, - [SMALL_STATE(1392)] = 50081, - [SMALL_STATE(1393)] = 50094, - [SMALL_STATE(1394)] = 50107, - [SMALL_STATE(1395)] = 50120, - [SMALL_STATE(1396)] = 50133, - [SMALL_STATE(1397)] = 50146, - [SMALL_STATE(1398)] = 50159, - [SMALL_STATE(1399)] = 50172, - [SMALL_STATE(1400)] = 50185, - [SMALL_STATE(1401)] = 50195, - [SMALL_STATE(1402)] = 50203, - [SMALL_STATE(1403)] = 50211, - [SMALL_STATE(1404)] = 50221, - [SMALL_STATE(1405)] = 50231, - [SMALL_STATE(1406)] = 50241, - [SMALL_STATE(1407)] = 50251, - [SMALL_STATE(1408)] = 50261, - [SMALL_STATE(1409)] = 50269, - [SMALL_STATE(1410)] = 50277, - [SMALL_STATE(1411)] = 50287, - [SMALL_STATE(1412)] = 50295, - [SMALL_STATE(1413)] = 50303, - [SMALL_STATE(1414)] = 50311, - [SMALL_STATE(1415)] = 50321, - [SMALL_STATE(1416)] = 50329, - [SMALL_STATE(1417)] = 50339, - [SMALL_STATE(1418)] = 50349, - [SMALL_STATE(1419)] = 50359, - [SMALL_STATE(1420)] = 50369, - [SMALL_STATE(1421)] = 50379, - [SMALL_STATE(1422)] = 50387, - [SMALL_STATE(1423)] = 50397, - [SMALL_STATE(1424)] = 50405, - [SMALL_STATE(1425)] = 50413, - [SMALL_STATE(1426)] = 50423, - [SMALL_STATE(1427)] = 50431, - [SMALL_STATE(1428)] = 50439, - [SMALL_STATE(1429)] = 50449, - [SMALL_STATE(1430)] = 50459, - [SMALL_STATE(1431)] = 50469, - [SMALL_STATE(1432)] = 50479, - [SMALL_STATE(1433)] = 50487, - [SMALL_STATE(1434)] = 50495, - [SMALL_STATE(1435)] = 50503, - [SMALL_STATE(1436)] = 50511, - [SMALL_STATE(1437)] = 50521, - [SMALL_STATE(1438)] = 50529, - [SMALL_STATE(1439)] = 50539, - [SMALL_STATE(1440)] = 50547, - [SMALL_STATE(1441)] = 50555, - [SMALL_STATE(1442)] = 50565, - [SMALL_STATE(1443)] = 50573, - [SMALL_STATE(1444)] = 50583, - [SMALL_STATE(1445)] = 50593, - [SMALL_STATE(1446)] = 50603, - [SMALL_STATE(1447)] = 50611, - [SMALL_STATE(1448)] = 50621, - [SMALL_STATE(1449)] = 50629, - [SMALL_STATE(1450)] = 50639, - [SMALL_STATE(1451)] = 50647, - [SMALL_STATE(1452)] = 50655, - [SMALL_STATE(1453)] = 50665, - [SMALL_STATE(1454)] = 50673, - [SMALL_STATE(1455)] = 50681, - [SMALL_STATE(1456)] = 50691, - [SMALL_STATE(1457)] = 50699, - [SMALL_STATE(1458)] = 50707, - [SMALL_STATE(1459)] = 50715, - [SMALL_STATE(1460)] = 50723, - [SMALL_STATE(1461)] = 50731, - [SMALL_STATE(1462)] = 50741, - [SMALL_STATE(1463)] = 50749, - [SMALL_STATE(1464)] = 50759, - [SMALL_STATE(1465)] = 50769, - [SMALL_STATE(1466)] = 50777, - [SMALL_STATE(1467)] = 50787, - [SMALL_STATE(1468)] = 50795, - [SMALL_STATE(1469)] = 50805, - [SMALL_STATE(1470)] = 50815, - [SMALL_STATE(1471)] = 50823, - [SMALL_STATE(1472)] = 50833, - [SMALL_STATE(1473)] = 50841, - [SMALL_STATE(1474)] = 50849, - [SMALL_STATE(1475)] = 50857, - [SMALL_STATE(1476)] = 50867, - [SMALL_STATE(1477)] = 50875, - [SMALL_STATE(1478)] = 50885, - [SMALL_STATE(1479)] = 50895, - [SMALL_STATE(1480)] = 50903, - [SMALL_STATE(1481)] = 50911, - [SMALL_STATE(1482)] = 50919, - [SMALL_STATE(1483)] = 50929, - [SMALL_STATE(1484)] = 50937, - [SMALL_STATE(1485)] = 50947, - [SMALL_STATE(1486)] = 50955, - [SMALL_STATE(1487)] = 50965, - [SMALL_STATE(1488)] = 50973, - [SMALL_STATE(1489)] = 50983, - [SMALL_STATE(1490)] = 50993, - [SMALL_STATE(1491)] = 51001, - [SMALL_STATE(1492)] = 51011, - [SMALL_STATE(1493)] = 51019, - [SMALL_STATE(1494)] = 51029, - [SMALL_STATE(1495)] = 51037, - [SMALL_STATE(1496)] = 51047, - [SMALL_STATE(1497)] = 51057, - [SMALL_STATE(1498)] = 51067, - [SMALL_STATE(1499)] = 51077, - [SMALL_STATE(1500)] = 51085, - [SMALL_STATE(1501)] = 51095, - [SMALL_STATE(1502)] = 51103, - [SMALL_STATE(1503)] = 51111, - [SMALL_STATE(1504)] = 51121, - [SMALL_STATE(1505)] = 51129, - [SMALL_STATE(1506)] = 51139, - [SMALL_STATE(1507)] = 51149, - [SMALL_STATE(1508)] = 51157, - [SMALL_STATE(1509)] = 51167, - [SMALL_STATE(1510)] = 51177, - [SMALL_STATE(1511)] = 51185, - [SMALL_STATE(1512)] = 51193, - [SMALL_STATE(1513)] = 51201, - [SMALL_STATE(1514)] = 51209, - [SMALL_STATE(1515)] = 51217, - [SMALL_STATE(1516)] = 51227, - [SMALL_STATE(1517)] = 51237, - [SMALL_STATE(1518)] = 51247, - [SMALL_STATE(1519)] = 51257, - [SMALL_STATE(1520)] = 51267, - [SMALL_STATE(1521)] = 51275, - [SMALL_STATE(1522)] = 51283, - [SMALL_STATE(1523)] = 51291, - [SMALL_STATE(1524)] = 51301, - [SMALL_STATE(1525)] = 51309, - [SMALL_STATE(1526)] = 51319, - [SMALL_STATE(1527)] = 51327, - [SMALL_STATE(1528)] = 51335, - [SMALL_STATE(1529)] = 51345, - [SMALL_STATE(1530)] = 51353, - [SMALL_STATE(1531)] = 51361, - [SMALL_STATE(1532)] = 51369, - [SMALL_STATE(1533)] = 51377, - [SMALL_STATE(1534)] = 51387, - [SMALL_STATE(1535)] = 51397, - [SMALL_STATE(1536)] = 51405, - [SMALL_STATE(1537)] = 51413, - [SMALL_STATE(1538)] = 51423, - [SMALL_STATE(1539)] = 51431, - [SMALL_STATE(1540)] = 51439, - [SMALL_STATE(1541)] = 51449, - [SMALL_STATE(1542)] = 51457, - [SMALL_STATE(1543)] = 51467, - [SMALL_STATE(1544)] = 51477, - [SMALL_STATE(1545)] = 51485, - [SMALL_STATE(1546)] = 51493, - [SMALL_STATE(1547)] = 51501, - [SMALL_STATE(1548)] = 51511, - [SMALL_STATE(1549)] = 51519, - [SMALL_STATE(1550)] = 51527, - [SMALL_STATE(1551)] = 51535, - [SMALL_STATE(1552)] = 51543, - [SMALL_STATE(1553)] = 51553, - [SMALL_STATE(1554)] = 51561, - [SMALL_STATE(1555)] = 51571, - [SMALL_STATE(1556)] = 51579, - [SMALL_STATE(1557)] = 51589, - [SMALL_STATE(1558)] = 51599, - [SMALL_STATE(1559)] = 51609, - [SMALL_STATE(1560)] = 51619, - [SMALL_STATE(1561)] = 51629, - [SMALL_STATE(1562)] = 51639, - [SMALL_STATE(1563)] = 51649, - [SMALL_STATE(1564)] = 51657, - [SMALL_STATE(1565)] = 51665, - [SMALL_STATE(1566)] = 51672, - [SMALL_STATE(1567)] = 51679, - [SMALL_STATE(1568)] = 51686, - [SMALL_STATE(1569)] = 51693, - [SMALL_STATE(1570)] = 51700, - [SMALL_STATE(1571)] = 51707, - [SMALL_STATE(1572)] = 51714, - [SMALL_STATE(1573)] = 51721, - [SMALL_STATE(1574)] = 51728, - [SMALL_STATE(1575)] = 51735, - [SMALL_STATE(1576)] = 51742, - [SMALL_STATE(1577)] = 51749, - [SMALL_STATE(1578)] = 51756, - [SMALL_STATE(1579)] = 51763, - [SMALL_STATE(1580)] = 51770, - [SMALL_STATE(1581)] = 51777, - [SMALL_STATE(1582)] = 51784, - [SMALL_STATE(1583)] = 51791, - [SMALL_STATE(1584)] = 51798, - [SMALL_STATE(1585)] = 51805, - [SMALL_STATE(1586)] = 51812, - [SMALL_STATE(1587)] = 51819, - [SMALL_STATE(1588)] = 51826, - [SMALL_STATE(1589)] = 51833, - [SMALL_STATE(1590)] = 51840, - [SMALL_STATE(1591)] = 51847, - [SMALL_STATE(1592)] = 51854, - [SMALL_STATE(1593)] = 51861, - [SMALL_STATE(1594)] = 51868, - [SMALL_STATE(1595)] = 51875, - [SMALL_STATE(1596)] = 51882, - [SMALL_STATE(1597)] = 51889, - [SMALL_STATE(1598)] = 51896, - [SMALL_STATE(1599)] = 51903, - [SMALL_STATE(1600)] = 51910, - [SMALL_STATE(1601)] = 51917, - [SMALL_STATE(1602)] = 51924, - [SMALL_STATE(1603)] = 51931, - [SMALL_STATE(1604)] = 51938, - [SMALL_STATE(1605)] = 51945, - [SMALL_STATE(1606)] = 51952, - [SMALL_STATE(1607)] = 51959, - [SMALL_STATE(1608)] = 51966, - [SMALL_STATE(1609)] = 51973, - [SMALL_STATE(1610)] = 51980, - [SMALL_STATE(1611)] = 51987, - [SMALL_STATE(1612)] = 51994, - [SMALL_STATE(1613)] = 52001, - [SMALL_STATE(1614)] = 52008, - [SMALL_STATE(1615)] = 52015, - [SMALL_STATE(1616)] = 52022, - [SMALL_STATE(1617)] = 52029, - [SMALL_STATE(1618)] = 52036, - [SMALL_STATE(1619)] = 52043, - [SMALL_STATE(1620)] = 52050, - [SMALL_STATE(1621)] = 52057, - [SMALL_STATE(1622)] = 52064, - [SMALL_STATE(1623)] = 52071, - [SMALL_STATE(1624)] = 52078, - [SMALL_STATE(1625)] = 52085, - [SMALL_STATE(1626)] = 52092, - [SMALL_STATE(1627)] = 52099, - [SMALL_STATE(1628)] = 52106, - [SMALL_STATE(1629)] = 52113, - [SMALL_STATE(1630)] = 52120, - [SMALL_STATE(1631)] = 52127, - [SMALL_STATE(1632)] = 52134, - [SMALL_STATE(1633)] = 52141, - [SMALL_STATE(1634)] = 52148, - [SMALL_STATE(1635)] = 52155, - [SMALL_STATE(1636)] = 52162, - [SMALL_STATE(1637)] = 52169, - [SMALL_STATE(1638)] = 52176, - [SMALL_STATE(1639)] = 52183, - [SMALL_STATE(1640)] = 52190, - [SMALL_STATE(1641)] = 52197, - [SMALL_STATE(1642)] = 52204, - [SMALL_STATE(1643)] = 52211, - [SMALL_STATE(1644)] = 52218, - [SMALL_STATE(1645)] = 52225, - [SMALL_STATE(1646)] = 52232, - [SMALL_STATE(1647)] = 52239, - [SMALL_STATE(1648)] = 52246, - [SMALL_STATE(1649)] = 52253, - [SMALL_STATE(1650)] = 52260, - [SMALL_STATE(1651)] = 52267, - [SMALL_STATE(1652)] = 52274, - [SMALL_STATE(1653)] = 52281, - [SMALL_STATE(1654)] = 52288, - [SMALL_STATE(1655)] = 52295, - [SMALL_STATE(1656)] = 52302, - [SMALL_STATE(1657)] = 52309, - [SMALL_STATE(1658)] = 52316, - [SMALL_STATE(1659)] = 52323, - [SMALL_STATE(1660)] = 52330, - [SMALL_STATE(1661)] = 52337, - [SMALL_STATE(1662)] = 52344, - [SMALL_STATE(1663)] = 52351, - [SMALL_STATE(1664)] = 52358, - [SMALL_STATE(1665)] = 52365, - [SMALL_STATE(1666)] = 52372, - [SMALL_STATE(1667)] = 52379, - [SMALL_STATE(1668)] = 52386, - [SMALL_STATE(1669)] = 52393, - [SMALL_STATE(1670)] = 52400, - [SMALL_STATE(1671)] = 52407, - [SMALL_STATE(1672)] = 52414, - [SMALL_STATE(1673)] = 52421, - [SMALL_STATE(1674)] = 52428, - [SMALL_STATE(1675)] = 52435, - [SMALL_STATE(1676)] = 52442, - [SMALL_STATE(1677)] = 52449, - [SMALL_STATE(1678)] = 52456, - [SMALL_STATE(1679)] = 52463, - [SMALL_STATE(1680)] = 52470, - [SMALL_STATE(1681)] = 52477, - [SMALL_STATE(1682)] = 52484, - [SMALL_STATE(1683)] = 52491, - [SMALL_STATE(1684)] = 52498, - [SMALL_STATE(1685)] = 52505, - [SMALL_STATE(1686)] = 52512, - [SMALL_STATE(1687)] = 52519, - [SMALL_STATE(1688)] = 52526, - [SMALL_STATE(1689)] = 52533, - [SMALL_STATE(1690)] = 52540, - [SMALL_STATE(1691)] = 52547, - [SMALL_STATE(1692)] = 52554, - [SMALL_STATE(1693)] = 52561, - [SMALL_STATE(1694)] = 52568, - [SMALL_STATE(1695)] = 52575, - [SMALL_STATE(1696)] = 52582, - [SMALL_STATE(1697)] = 52589, - [SMALL_STATE(1698)] = 52596, - [SMALL_STATE(1699)] = 52603, - [SMALL_STATE(1700)] = 52610, - [SMALL_STATE(1701)] = 52617, - [SMALL_STATE(1702)] = 52624, - [SMALL_STATE(1703)] = 52631, - [SMALL_STATE(1704)] = 52638, - [SMALL_STATE(1705)] = 52645, - [SMALL_STATE(1706)] = 52652, - [SMALL_STATE(1707)] = 52659, - [SMALL_STATE(1708)] = 52666, - [SMALL_STATE(1709)] = 52673, - [SMALL_STATE(1710)] = 52680, - [SMALL_STATE(1711)] = 52687, - [SMALL_STATE(1712)] = 52694, - [SMALL_STATE(1713)] = 52701, - [SMALL_STATE(1714)] = 52708, - [SMALL_STATE(1715)] = 52715, - [SMALL_STATE(1716)] = 52722, - [SMALL_STATE(1717)] = 52729, - [SMALL_STATE(1718)] = 52736, - [SMALL_STATE(1719)] = 52743, - [SMALL_STATE(1720)] = 52750, - [SMALL_STATE(1721)] = 52757, - [SMALL_STATE(1722)] = 52764, - [SMALL_STATE(1723)] = 52771, - [SMALL_STATE(1724)] = 52778, - [SMALL_STATE(1725)] = 52785, - [SMALL_STATE(1726)] = 52792, - [SMALL_STATE(1727)] = 52799, - [SMALL_STATE(1728)] = 52806, - [SMALL_STATE(1729)] = 52813, - [SMALL_STATE(1730)] = 52820, - [SMALL_STATE(1731)] = 52827, - [SMALL_STATE(1732)] = 52834, - [SMALL_STATE(1733)] = 52841, - [SMALL_STATE(1734)] = 52848, - [SMALL_STATE(1735)] = 52855, - [SMALL_STATE(1736)] = 52862, - [SMALL_STATE(1737)] = 52869, - [SMALL_STATE(1738)] = 52876, - [SMALL_STATE(1739)] = 52883, - [SMALL_STATE(1740)] = 52890, - [SMALL_STATE(1741)] = 52897, - [SMALL_STATE(1742)] = 52904, - [SMALL_STATE(1743)] = 52911, - [SMALL_STATE(1744)] = 52918, - [SMALL_STATE(1745)] = 52925, - [SMALL_STATE(1746)] = 52932, - [SMALL_STATE(1747)] = 52939, - [SMALL_STATE(1748)] = 52946, - [SMALL_STATE(1749)] = 52953, - [SMALL_STATE(1750)] = 52960, - [SMALL_STATE(1751)] = 52967, - [SMALL_STATE(1752)] = 52974, - [SMALL_STATE(1753)] = 52981, - [SMALL_STATE(1754)] = 52988, - [SMALL_STATE(1755)] = 52995, - [SMALL_STATE(1756)] = 53002, - [SMALL_STATE(1757)] = 53009, - [SMALL_STATE(1758)] = 53016, - [SMALL_STATE(1759)] = 53023, - [SMALL_STATE(1760)] = 53030, - [SMALL_STATE(1761)] = 53037, - [SMALL_STATE(1762)] = 53044, - [SMALL_STATE(1763)] = 53051, - [SMALL_STATE(1764)] = 53058, - [SMALL_STATE(1765)] = 53065, - [SMALL_STATE(1766)] = 53072, - [SMALL_STATE(1767)] = 53079, - [SMALL_STATE(1768)] = 53086, - [SMALL_STATE(1769)] = 53093, - [SMALL_STATE(1770)] = 53100, - [SMALL_STATE(1771)] = 53107, - [SMALL_STATE(1772)] = 53114, - [SMALL_STATE(1773)] = 53121, - [SMALL_STATE(1774)] = 53128, - [SMALL_STATE(1775)] = 53135, - [SMALL_STATE(1776)] = 53142, - [SMALL_STATE(1777)] = 53149, - [SMALL_STATE(1778)] = 53156, - [SMALL_STATE(1779)] = 53163, - [SMALL_STATE(1780)] = 53170, - [SMALL_STATE(1781)] = 53177, - [SMALL_STATE(1782)] = 53184, - [SMALL_STATE(1783)] = 53191, - [SMALL_STATE(1784)] = 53198, - [SMALL_STATE(1785)] = 53205, - [SMALL_STATE(1786)] = 53212, - [SMALL_STATE(1787)] = 53219, - [SMALL_STATE(1788)] = 53226, - [SMALL_STATE(1789)] = 53233, - [SMALL_STATE(1790)] = 53240, - [SMALL_STATE(1791)] = 53247, - [SMALL_STATE(1792)] = 53254, - [SMALL_STATE(1793)] = 53261, - [SMALL_STATE(1794)] = 53268, - [SMALL_STATE(1795)] = 53275, - [SMALL_STATE(1796)] = 53282, - [SMALL_STATE(1797)] = 53289, - [SMALL_STATE(1798)] = 53296, - [SMALL_STATE(1799)] = 53303, - [SMALL_STATE(1800)] = 53310, - [SMALL_STATE(1801)] = 53317, - [SMALL_STATE(1802)] = 53324, - [SMALL_STATE(1803)] = 53331, - [SMALL_STATE(1804)] = 53338, - [SMALL_STATE(1805)] = 53345, - [SMALL_STATE(1806)] = 53352, - [SMALL_STATE(1807)] = 53359, - [SMALL_STATE(1808)] = 53366, - [SMALL_STATE(1809)] = 53373, - [SMALL_STATE(1810)] = 53380, - [SMALL_STATE(1811)] = 53387, - [SMALL_STATE(1812)] = 53394, - [SMALL_STATE(1813)] = 53401, - [SMALL_STATE(1814)] = 53408, - [SMALL_STATE(1815)] = 53415, - [SMALL_STATE(1816)] = 53422, - [SMALL_STATE(1817)] = 53429, - [SMALL_STATE(1818)] = 53436, - [SMALL_STATE(1819)] = 53443, - [SMALL_STATE(1820)] = 53450, - [SMALL_STATE(1821)] = 53457, - [SMALL_STATE(1822)] = 53464, - [SMALL_STATE(1823)] = 53471, - [SMALL_STATE(1824)] = 53478, - [SMALL_STATE(1825)] = 53485, - [SMALL_STATE(1826)] = 53492, - [SMALL_STATE(1827)] = 53499, - [SMALL_STATE(1828)] = 53506, - [SMALL_STATE(1829)] = 53513, - [SMALL_STATE(1830)] = 53520, - [SMALL_STATE(1831)] = 53527, - [SMALL_STATE(1832)] = 53534, - [SMALL_STATE(1833)] = 53541, - [SMALL_STATE(1834)] = 53548, - [SMALL_STATE(1835)] = 53555, - [SMALL_STATE(1836)] = 53562, - [SMALL_STATE(1837)] = 53569, - [SMALL_STATE(1838)] = 53576, - [SMALL_STATE(1839)] = 53583, - [SMALL_STATE(1840)] = 53590, - [SMALL_STATE(1841)] = 53597, - [SMALL_STATE(1842)] = 53604, - [SMALL_STATE(1843)] = 53611, - [SMALL_STATE(1844)] = 53618, - [SMALL_STATE(1845)] = 53625, - [SMALL_STATE(1846)] = 53632, - [SMALL_STATE(1847)] = 53639, - [SMALL_STATE(1848)] = 53646, - [SMALL_STATE(1849)] = 53653, - [SMALL_STATE(1850)] = 53660, - [SMALL_STATE(1851)] = 53667, - [SMALL_STATE(1852)] = 53674, - [SMALL_STATE(1853)] = 53681, - [SMALL_STATE(1854)] = 53688, - [SMALL_STATE(1855)] = 53695, - [SMALL_STATE(1856)] = 53702, - [SMALL_STATE(1857)] = 53709, - [SMALL_STATE(1858)] = 53716, - [SMALL_STATE(1859)] = 53723, - [SMALL_STATE(1860)] = 53730, - [SMALL_STATE(1861)] = 53737, - [SMALL_STATE(1862)] = 53744, - [SMALL_STATE(1863)] = 53751, - [SMALL_STATE(1864)] = 53758, - [SMALL_STATE(1865)] = 53765, - [SMALL_STATE(1866)] = 53772, - [SMALL_STATE(1867)] = 53779, - [SMALL_STATE(1868)] = 53786, - [SMALL_STATE(1869)] = 53793, - [SMALL_STATE(1870)] = 53800, - [SMALL_STATE(1871)] = 53807, - [SMALL_STATE(1872)] = 53814, - [SMALL_STATE(1873)] = 53821, - [SMALL_STATE(1874)] = 53828, - [SMALL_STATE(1875)] = 53835, - [SMALL_STATE(1876)] = 53842, - [SMALL_STATE(1877)] = 53849, - [SMALL_STATE(1878)] = 53856, - [SMALL_STATE(1879)] = 53863, - [SMALL_STATE(1880)] = 53870, - [SMALL_STATE(1881)] = 53877, - [SMALL_STATE(1882)] = 53884, - [SMALL_STATE(1883)] = 53891, - [SMALL_STATE(1884)] = 53898, - [SMALL_STATE(1885)] = 53905, - [SMALL_STATE(1886)] = 53912, - [SMALL_STATE(1887)] = 53919, - [SMALL_STATE(1888)] = 53926, - [SMALL_STATE(1889)] = 53933, - [SMALL_STATE(1890)] = 53940, - [SMALL_STATE(1891)] = 53947, - [SMALL_STATE(1892)] = 53954, - [SMALL_STATE(1893)] = 53961, - [SMALL_STATE(1894)] = 53968, - [SMALL_STATE(1895)] = 53975, - [SMALL_STATE(1896)] = 53982, - [SMALL_STATE(1897)] = 53989, - [SMALL_STATE(1898)] = 53996, - [SMALL_STATE(1899)] = 54003, - [SMALL_STATE(1900)] = 54010, - [SMALL_STATE(1901)] = 54017, - [SMALL_STATE(1902)] = 54024, - [SMALL_STATE(1903)] = 54031, - [SMALL_STATE(1904)] = 54038, - [SMALL_STATE(1905)] = 54045, - [SMALL_STATE(1906)] = 54052, - [SMALL_STATE(1907)] = 54059, - [SMALL_STATE(1908)] = 54066, - [SMALL_STATE(1909)] = 54073, - [SMALL_STATE(1910)] = 54080, - [SMALL_STATE(1911)] = 54087, - [SMALL_STATE(1912)] = 54094, - [SMALL_STATE(1913)] = 54101, - [SMALL_STATE(1914)] = 54108, - [SMALL_STATE(1915)] = 54115, - [SMALL_STATE(1916)] = 54122, - [SMALL_STATE(1917)] = 54129, - [SMALL_STATE(1918)] = 54136, - [SMALL_STATE(1919)] = 54143, - [SMALL_STATE(1920)] = 54150, - [SMALL_STATE(1921)] = 54157, - [SMALL_STATE(1922)] = 54164, - [SMALL_STATE(1923)] = 54171, - [SMALL_STATE(1924)] = 54178, - [SMALL_STATE(1925)] = 54185, - [SMALL_STATE(1926)] = 54192, - [SMALL_STATE(1927)] = 54199, - [SMALL_STATE(1928)] = 54206, - [SMALL_STATE(1929)] = 54213, - [SMALL_STATE(1930)] = 54220, - [SMALL_STATE(1931)] = 54227, - [SMALL_STATE(1932)] = 54234, - [SMALL_STATE(1933)] = 54241, - [SMALL_STATE(1934)] = 54248, - [SMALL_STATE(1935)] = 54255, - [SMALL_STATE(1936)] = 54262, - [SMALL_STATE(1937)] = 54269, - [SMALL_STATE(1938)] = 54276, - [SMALL_STATE(1939)] = 54283, - [SMALL_STATE(1940)] = 54290, - [SMALL_STATE(1941)] = 54297, - [SMALL_STATE(1942)] = 54304, - [SMALL_STATE(1943)] = 54311, - [SMALL_STATE(1944)] = 54318, - [SMALL_STATE(1945)] = 54325, - [SMALL_STATE(1946)] = 54332, - [SMALL_STATE(1947)] = 54339, - [SMALL_STATE(1948)] = 54346, - [SMALL_STATE(1949)] = 54353, - [SMALL_STATE(1950)] = 54360, - [SMALL_STATE(1951)] = 54367, - [SMALL_STATE(1952)] = 54374, - [SMALL_STATE(1953)] = 54381, - [SMALL_STATE(1954)] = 54388, - [SMALL_STATE(1955)] = 54395, - [SMALL_STATE(1956)] = 54402, - [SMALL_STATE(1957)] = 54409, - [SMALL_STATE(1958)] = 54416, - [SMALL_STATE(1959)] = 54423, - [SMALL_STATE(1960)] = 54430, - [SMALL_STATE(1961)] = 54437, - [SMALL_STATE(1962)] = 54444, - [SMALL_STATE(1963)] = 54451, - [SMALL_STATE(1964)] = 54458, - [SMALL_STATE(1965)] = 54465, - [SMALL_STATE(1966)] = 54472, - [SMALL_STATE(1967)] = 54479, - [SMALL_STATE(1968)] = 54486, - [SMALL_STATE(1969)] = 54493, - [SMALL_STATE(1970)] = 54500, - [SMALL_STATE(1971)] = 54507, - [SMALL_STATE(1972)] = 54514, - [SMALL_STATE(1973)] = 54521, - [SMALL_STATE(1974)] = 54528, - [SMALL_STATE(1975)] = 54535, - [SMALL_STATE(1976)] = 54542, - [SMALL_STATE(1977)] = 54549, - [SMALL_STATE(1978)] = 54556, - [SMALL_STATE(1979)] = 54563, - [SMALL_STATE(1980)] = 54570, - [SMALL_STATE(1981)] = 54577, - [SMALL_STATE(1982)] = 54584, - [SMALL_STATE(1983)] = 54591, - [SMALL_STATE(1984)] = 54598, - [SMALL_STATE(1985)] = 54605, - [SMALL_STATE(1986)] = 54612, - [SMALL_STATE(1987)] = 54619, - [SMALL_STATE(1988)] = 54626, - [SMALL_STATE(1989)] = 54633, - [SMALL_STATE(1990)] = 54640, - [SMALL_STATE(1991)] = 54647, - [SMALL_STATE(1992)] = 54654, - [SMALL_STATE(1993)] = 54661, - [SMALL_STATE(1994)] = 54668, - [SMALL_STATE(1995)] = 54675, - [SMALL_STATE(1996)] = 54682, - [SMALL_STATE(1997)] = 54689, - [SMALL_STATE(1998)] = 54696, - [SMALL_STATE(1999)] = 54703, - [SMALL_STATE(2000)] = 54710, - [SMALL_STATE(2001)] = 54717, - [SMALL_STATE(2002)] = 54724, - [SMALL_STATE(2003)] = 54731, - [SMALL_STATE(2004)] = 54738, - [SMALL_STATE(2005)] = 54745, - [SMALL_STATE(2006)] = 54752, - [SMALL_STATE(2007)] = 54759, - [SMALL_STATE(2008)] = 54766, - [SMALL_STATE(2009)] = 54773, - [SMALL_STATE(2010)] = 54780, - [SMALL_STATE(2011)] = 54787, - [SMALL_STATE(2012)] = 54794, - [SMALL_STATE(2013)] = 54801, - [SMALL_STATE(2014)] = 54808, - [SMALL_STATE(2015)] = 54815, - [SMALL_STATE(2016)] = 54822, - [SMALL_STATE(2017)] = 54829, - [SMALL_STATE(2018)] = 54836, - [SMALL_STATE(2019)] = 54843, - [SMALL_STATE(2020)] = 54850, - [SMALL_STATE(2021)] = 54857, - [SMALL_STATE(2022)] = 54864, - [SMALL_STATE(2023)] = 54871, - [SMALL_STATE(2024)] = 54878, - [SMALL_STATE(2025)] = 54885, - [SMALL_STATE(2026)] = 54892, - [SMALL_STATE(2027)] = 54899, - [SMALL_STATE(2028)] = 54906, - [SMALL_STATE(2029)] = 54913, - [SMALL_STATE(2030)] = 54920, - [SMALL_STATE(2031)] = 54927, - [SMALL_STATE(2032)] = 54934, - [SMALL_STATE(2033)] = 54941, - [SMALL_STATE(2034)] = 54948, - [SMALL_STATE(2035)] = 54955, - [SMALL_STATE(2036)] = 54962, - [SMALL_STATE(2037)] = 54969, - [SMALL_STATE(2038)] = 54976, - [SMALL_STATE(2039)] = 54983, - [SMALL_STATE(2040)] = 54990, - [SMALL_STATE(2041)] = 54997, - [SMALL_STATE(2042)] = 55004, - [SMALL_STATE(2043)] = 55011, - [SMALL_STATE(2044)] = 55018, - [SMALL_STATE(2045)] = 55025, - [SMALL_STATE(2046)] = 55032, - [SMALL_STATE(2047)] = 55039, - [SMALL_STATE(2048)] = 55046, - [SMALL_STATE(2049)] = 55053, - [SMALL_STATE(2050)] = 55060, - [SMALL_STATE(2051)] = 55067, - [SMALL_STATE(2052)] = 55074, - [SMALL_STATE(2053)] = 55081, - [SMALL_STATE(2054)] = 55088, - [SMALL_STATE(2055)] = 55095, - [SMALL_STATE(2056)] = 55102, - [SMALL_STATE(2057)] = 55109, - [SMALL_STATE(2058)] = 55116, - [SMALL_STATE(2059)] = 55123, - [SMALL_STATE(2060)] = 55130, - [SMALL_STATE(2061)] = 55137, - [SMALL_STATE(2062)] = 55144, - [SMALL_STATE(2063)] = 55151, - [SMALL_STATE(2064)] = 55158, - [SMALL_STATE(2065)] = 55165, - [SMALL_STATE(2066)] = 55172, + [SMALL_STATE(854)] = 41551, + [SMALL_STATE(855)] = 41574, + [SMALL_STATE(856)] = 41607, + [SMALL_STATE(857)] = 41628, + [SMALL_STATE(858)] = 41651, + [SMALL_STATE(859)] = 41684, + [SMALL_STATE(860)] = 41707, + [SMALL_STATE(861)] = 41742, + [SMALL_STATE(862)] = 41763, + [SMALL_STATE(863)] = 41783, + [SMALL_STATE(864)] = 41805, + [SMALL_STATE(865)] = 41825, + [SMALL_STATE(866)] = 41847, + [SMALL_STATE(867)] = 41867, + [SMALL_STATE(868)] = 41885, + [SMALL_STATE(869)] = 41907, + [SMALL_STATE(870)] = 41936, + [SMALL_STATE(871)] = 41955, + [SMALL_STATE(872)] = 41974, + [SMALL_STATE(873)] = 42003, + [SMALL_STATE(874)] = 42022, + [SMALL_STATE(875)] = 42041, + [SMALL_STATE(876)] = 42073, + [SMALL_STATE(877)] = 42089, + [SMALL_STATE(878)] = 42105, + [SMALL_STATE(879)] = 42137, + [SMALL_STATE(880)] = 42169, + [SMALL_STATE(881)] = 42185, + [SMALL_STATE(882)] = 42217, + [SMALL_STATE(883)] = 42233, + [SMALL_STATE(884)] = 42249, + [SMALL_STATE(885)] = 42276, + [SMALL_STATE(886)] = 42303, + [SMALL_STATE(887)] = 42334, + [SMALL_STATE(888)] = 42363, + [SMALL_STATE(889)] = 42392, + [SMALL_STATE(890)] = 42419, + [SMALL_STATE(891)] = 42446, + [SMALL_STATE(892)] = 42477, + [SMALL_STATE(893)] = 42508, + [SMALL_STATE(894)] = 42533, + [SMALL_STATE(895)] = 42560, + [SMALL_STATE(896)] = 42587, + [SMALL_STATE(897)] = 42614, + [SMALL_STATE(898)] = 42641, + [SMALL_STATE(899)] = 42668, + [SMALL_STATE(900)] = 42684, + [SMALL_STATE(901)] = 42700, + [SMALL_STATE(902)] = 42716, + [SMALL_STATE(903)] = 42732, + [SMALL_STATE(904)] = 42748, + [SMALL_STATE(905)] = 42770, + [SMALL_STATE(906)] = 42786, + [SMALL_STATE(907)] = 42802, + [SMALL_STATE(908)] = 42818, + [SMALL_STATE(909)] = 42840, + [SMALL_STATE(910)] = 42856, + [SMALL_STATE(911)] = 42882, + [SMALL_STATE(912)] = 42898, + [SMALL_STATE(913)] = 42914, + [SMALL_STATE(914)] = 42930, + [SMALL_STATE(915)] = 42946, + [SMALL_STATE(916)] = 42962, + [SMALL_STATE(917)] = 42988, + [SMALL_STATE(918)] = 43004, + [SMALL_STATE(919)] = 43020, + [SMALL_STATE(920)] = 43036, + [SMALL_STATE(921)] = 43052, + [SMALL_STATE(922)] = 43068, + [SMALL_STATE(923)] = 43084, + [SMALL_STATE(924)] = 43100, + [SMALL_STATE(925)] = 43126, + [SMALL_STATE(926)] = 43142, + [SMALL_STATE(927)] = 43158, + [SMALL_STATE(928)] = 43174, + [SMALL_STATE(929)] = 43190, + [SMALL_STATE(930)] = 43206, + [SMALL_STATE(931)] = 43232, + [SMALL_STATE(932)] = 43256, + [SMALL_STATE(933)] = 43272, + [SMALL_STATE(934)] = 43288, + [SMALL_STATE(935)] = 43304, + [SMALL_STATE(936)] = 43320, + [SMALL_STATE(937)] = 43344, + [SMALL_STATE(938)] = 43370, + [SMALL_STATE(939)] = 43386, + [SMALL_STATE(940)] = 43414, + [SMALL_STATE(941)] = 43430, + [SMALL_STATE(942)] = 43446, + [SMALL_STATE(943)] = 43462, + [SMALL_STATE(944)] = 43478, + [SMALL_STATE(945)] = 43504, + [SMALL_STATE(946)] = 43520, + [SMALL_STATE(947)] = 43536, + [SMALL_STATE(948)] = 43552, + [SMALL_STATE(949)] = 43577, + [SMALL_STATE(950)] = 43592, + [SMALL_STATE(951)] = 43607, + [SMALL_STATE(952)] = 43632, + [SMALL_STATE(953)] = 43657, + [SMALL_STATE(954)] = 43682, + [SMALL_STATE(955)] = 43707, + [SMALL_STATE(956)] = 43732, + [SMALL_STATE(957)] = 43757, + [SMALL_STATE(958)] = 43782, + [SMALL_STATE(959)] = 43805, + [SMALL_STATE(960)] = 43818, + [SMALL_STATE(961)] = 43833, + [SMALL_STATE(962)] = 43854, + [SMALL_STATE(963)] = 43867, + [SMALL_STATE(964)] = 43882, + [SMALL_STATE(965)] = 43907, + [SMALL_STATE(966)] = 43932, + [SMALL_STATE(967)] = 43957, + [SMALL_STATE(968)] = 43982, + [SMALL_STATE(969)] = 44007, + [SMALL_STATE(970)] = 44022, + [SMALL_STATE(971)] = 44043, + [SMALL_STATE(972)] = 44056, + [SMALL_STATE(973)] = 44081, + [SMALL_STATE(974)] = 44106, + [SMALL_STATE(975)] = 44119, + [SMALL_STATE(976)] = 44132, + [SMALL_STATE(977)] = 44157, + [SMALL_STATE(978)] = 44172, + [SMALL_STATE(979)] = 44197, + [SMALL_STATE(980)] = 44222, + [SMALL_STATE(981)] = 44247, + [SMALL_STATE(982)] = 44268, + [SMALL_STATE(983)] = 44293, + [SMALL_STATE(984)] = 44318, + [SMALL_STATE(985)] = 44340, + [SMALL_STATE(986)] = 44360, + [SMALL_STATE(987)] = 44382, + [SMALL_STATE(988)] = 44404, + [SMALL_STATE(989)] = 44418, + [SMALL_STATE(990)] = 44434, + [SMALL_STATE(991)] = 44454, + [SMALL_STATE(992)] = 44472, + [SMALL_STATE(993)] = 44494, + [SMALL_STATE(994)] = 44514, + [SMALL_STATE(995)] = 44536, + [SMALL_STATE(996)] = 44556, + [SMALL_STATE(997)] = 44578, + [SMALL_STATE(998)] = 44600, + [SMALL_STATE(999)] = 44614, + [SMALL_STATE(1000)] = 44632, + [SMALL_STATE(1001)] = 44652, + [SMALL_STATE(1002)] = 44674, + [SMALL_STATE(1003)] = 44696, + [SMALL_STATE(1004)] = 44708, + [SMALL_STATE(1005)] = 44730, + [SMALL_STATE(1006)] = 44746, + [SMALL_STATE(1007)] = 44768, + [SMALL_STATE(1008)] = 44790, + [SMALL_STATE(1009)] = 44806, + [SMALL_STATE(1010)] = 44826, + [SMALL_STATE(1011)] = 44838, + [SMALL_STATE(1012)] = 44856, + [SMALL_STATE(1013)] = 44872, + [SMALL_STATE(1014)] = 44885, + [SMALL_STATE(1015)] = 44904, + [SMALL_STATE(1016)] = 44917, + [SMALL_STATE(1017)] = 44936, + [SMALL_STATE(1018)] = 44955, + [SMALL_STATE(1019)] = 44974, + [SMALL_STATE(1020)] = 44993, + [SMALL_STATE(1021)] = 45012, + [SMALL_STATE(1022)] = 45027, + [SMALL_STATE(1023)] = 45046, + [SMALL_STATE(1024)] = 45057, + [SMALL_STATE(1025)] = 45068, + [SMALL_STATE(1026)] = 45087, + [SMALL_STATE(1027)] = 45106, + [SMALL_STATE(1028)] = 45125, + [SMALL_STATE(1029)] = 45140, + [SMALL_STATE(1030)] = 45157, + [SMALL_STATE(1031)] = 45176, + [SMALL_STATE(1032)] = 45195, + [SMALL_STATE(1033)] = 45214, + [SMALL_STATE(1034)] = 45231, + [SMALL_STATE(1035)] = 45250, + [SMALL_STATE(1036)] = 45265, + [SMALL_STATE(1037)] = 45284, + [SMALL_STATE(1038)] = 45301, + [SMALL_STATE(1039)] = 45320, + [SMALL_STATE(1040)] = 45339, + [SMALL_STATE(1041)] = 45358, + [SMALL_STATE(1042)] = 45377, + [SMALL_STATE(1043)] = 45392, + [SMALL_STATE(1044)] = 45409, + [SMALL_STATE(1045)] = 45428, + [SMALL_STATE(1046)] = 45447, + [SMALL_STATE(1047)] = 45466, + [SMALL_STATE(1048)] = 45481, + [SMALL_STATE(1049)] = 45498, + [SMALL_STATE(1050)] = 45517, + [SMALL_STATE(1051)] = 45536, + [SMALL_STATE(1052)] = 45553, + [SMALL_STATE(1053)] = 45568, + [SMALL_STATE(1054)] = 45587, + [SMALL_STATE(1055)] = 45606, + [SMALL_STATE(1056)] = 45619, + [SMALL_STATE(1057)] = 45636, + [SMALL_STATE(1058)] = 45655, + [SMALL_STATE(1059)] = 45670, + [SMALL_STATE(1060)] = 45689, + [SMALL_STATE(1061)] = 45708, + [SMALL_STATE(1062)] = 45727, + [SMALL_STATE(1063)] = 45746, + [SMALL_STATE(1064)] = 45765, + [SMALL_STATE(1065)] = 45784, + [SMALL_STATE(1066)] = 45803, + [SMALL_STATE(1067)] = 45822, + [SMALL_STATE(1068)] = 45841, + [SMALL_STATE(1069)] = 45860, + [SMALL_STATE(1070)] = 45879, + [SMALL_STATE(1071)] = 45898, + [SMALL_STATE(1072)] = 45917, + [SMALL_STATE(1073)] = 45932, + [SMALL_STATE(1074)] = 45951, + [SMALL_STATE(1075)] = 45970, + [SMALL_STATE(1076)] = 45989, + [SMALL_STATE(1077)] = 46008, + [SMALL_STATE(1078)] = 46027, + [SMALL_STATE(1079)] = 46042, + [SMALL_STATE(1080)] = 46061, + [SMALL_STATE(1081)] = 46078, + [SMALL_STATE(1082)] = 46097, + [SMALL_STATE(1083)] = 46116, + [SMALL_STATE(1084)] = 46135, + [SMALL_STATE(1085)] = 46150, + [SMALL_STATE(1086)] = 46169, + [SMALL_STATE(1087)] = 46180, + [SMALL_STATE(1088)] = 46197, + [SMALL_STATE(1089)] = 46216, + [SMALL_STATE(1090)] = 46235, + [SMALL_STATE(1091)] = 46254, + [SMALL_STATE(1092)] = 46271, + [SMALL_STATE(1093)] = 46290, + [SMALL_STATE(1094)] = 46309, + [SMALL_STATE(1095)] = 46328, + [SMALL_STATE(1096)] = 46339, + [SMALL_STATE(1097)] = 46358, + [SMALL_STATE(1098)] = 46377, + [SMALL_STATE(1099)] = 46396, + [SMALL_STATE(1100)] = 46407, + [SMALL_STATE(1101)] = 46418, + [SMALL_STATE(1102)] = 46432, + [SMALL_STATE(1103)] = 46446, + [SMALL_STATE(1104)] = 46462, + [SMALL_STATE(1105)] = 46472, + [SMALL_STATE(1106)] = 46488, + [SMALL_STATE(1107)] = 46504, + [SMALL_STATE(1108)] = 46514, + [SMALL_STATE(1109)] = 46530, + [SMALL_STATE(1110)] = 46546, + [SMALL_STATE(1111)] = 46560, + [SMALL_STATE(1112)] = 46570, + [SMALL_STATE(1113)] = 46586, + [SMALL_STATE(1114)] = 46596, + [SMALL_STATE(1115)] = 46612, + [SMALL_STATE(1116)] = 46628, + [SMALL_STATE(1117)] = 46642, + [SMALL_STATE(1118)] = 46658, + [SMALL_STATE(1119)] = 46668, + [SMALL_STATE(1120)] = 46678, + [SMALL_STATE(1121)] = 46692, + [SMALL_STATE(1122)] = 46706, + [SMALL_STATE(1123)] = 46716, + [SMALL_STATE(1124)] = 46732, + [SMALL_STATE(1125)] = 46748, + [SMALL_STATE(1126)] = 46764, + [SMALL_STATE(1127)] = 46778, + [SMALL_STATE(1128)] = 46794, + [SMALL_STATE(1129)] = 46808, + [SMALL_STATE(1130)] = 46824, + [SMALL_STATE(1131)] = 46838, + [SMALL_STATE(1132)] = 46854, + [SMALL_STATE(1133)] = 46870, + [SMALL_STATE(1134)] = 46886, + [SMALL_STATE(1135)] = 46900, + [SMALL_STATE(1136)] = 46916, + [SMALL_STATE(1137)] = 46930, + [SMALL_STATE(1138)] = 46946, + [SMALL_STATE(1139)] = 46960, + [SMALL_STATE(1140)] = 46976, + [SMALL_STATE(1141)] = 46992, + [SMALL_STATE(1142)] = 47008, + [SMALL_STATE(1143)] = 47020, + [SMALL_STATE(1144)] = 47036, + [SMALL_STATE(1145)] = 47050, + [SMALL_STATE(1146)] = 47062, + [SMALL_STATE(1147)] = 47076, + [SMALL_STATE(1148)] = 47092, + [SMALL_STATE(1149)] = 47102, + [SMALL_STATE(1150)] = 47118, + [SMALL_STATE(1151)] = 47132, + [SMALL_STATE(1152)] = 47148, + [SMALL_STATE(1153)] = 47164, + [SMALL_STATE(1154)] = 47176, + [SMALL_STATE(1155)] = 47192, + [SMALL_STATE(1156)] = 47208, + [SMALL_STATE(1157)] = 47222, + [SMALL_STATE(1158)] = 47234, + [SMALL_STATE(1159)] = 47248, + [SMALL_STATE(1160)] = 47260, + [SMALL_STATE(1161)] = 47272, + [SMALL_STATE(1162)] = 47288, + [SMALL_STATE(1163)] = 47302, + [SMALL_STATE(1164)] = 47316, + [SMALL_STATE(1165)] = 47332, + [SMALL_STATE(1166)] = 47346, + [SMALL_STATE(1167)] = 47360, + [SMALL_STATE(1168)] = 47376, + [SMALL_STATE(1169)] = 47388, + [SMALL_STATE(1170)] = 47402, + [SMALL_STATE(1171)] = 47418, + [SMALL_STATE(1172)] = 47432, + [SMALL_STATE(1173)] = 47442, + [SMALL_STATE(1174)] = 47456, + [SMALL_STATE(1175)] = 47470, + [SMALL_STATE(1176)] = 47486, + [SMALL_STATE(1177)] = 47496, + [SMALL_STATE(1178)] = 47512, + [SMALL_STATE(1179)] = 47526, + [SMALL_STATE(1180)] = 47542, + [SMALL_STATE(1181)] = 47558, + [SMALL_STATE(1182)] = 47574, + [SMALL_STATE(1183)] = 47588, + [SMALL_STATE(1184)] = 47604, + [SMALL_STATE(1185)] = 47618, + [SMALL_STATE(1186)] = 47634, + [SMALL_STATE(1187)] = 47650, + [SMALL_STATE(1188)] = 47666, + [SMALL_STATE(1189)] = 47678, + [SMALL_STATE(1190)] = 47694, + [SMALL_STATE(1191)] = 47710, + [SMALL_STATE(1192)] = 47722, + [SMALL_STATE(1193)] = 47738, + [SMALL_STATE(1194)] = 47754, + [SMALL_STATE(1195)] = 47768, + [SMALL_STATE(1196)] = 47778, + [SMALL_STATE(1197)] = 47792, + [SMALL_STATE(1198)] = 47806, + [SMALL_STATE(1199)] = 47818, + [SMALL_STATE(1200)] = 47834, + [SMALL_STATE(1201)] = 47848, + [SMALL_STATE(1202)] = 47861, + [SMALL_STATE(1203)] = 47870, + [SMALL_STATE(1204)] = 47883, + [SMALL_STATE(1205)] = 47896, + [SMALL_STATE(1206)] = 47909, + [SMALL_STATE(1207)] = 47920, + [SMALL_STATE(1208)] = 47933, + [SMALL_STATE(1209)] = 47946, + [SMALL_STATE(1210)] = 47959, + [SMALL_STATE(1211)] = 47972, + [SMALL_STATE(1212)] = 47985, + [SMALL_STATE(1213)] = 47998, + [SMALL_STATE(1214)] = 48011, + [SMALL_STATE(1215)] = 48020, + [SMALL_STATE(1216)] = 48029, + [SMALL_STATE(1217)] = 48042, + [SMALL_STATE(1218)] = 48055, + [SMALL_STATE(1219)] = 48064, + [SMALL_STATE(1220)] = 48077, + [SMALL_STATE(1221)] = 48090, + [SMALL_STATE(1222)] = 48103, + [SMALL_STATE(1223)] = 48116, + [SMALL_STATE(1224)] = 48127, + [SMALL_STATE(1225)] = 48136, + [SMALL_STATE(1226)] = 48149, + [SMALL_STATE(1227)] = 48162, + [SMALL_STATE(1228)] = 48175, + [SMALL_STATE(1229)] = 48184, + [SMALL_STATE(1230)] = 48197, + [SMALL_STATE(1231)] = 48206, + [SMALL_STATE(1232)] = 48215, + [SMALL_STATE(1233)] = 48224, + [SMALL_STATE(1234)] = 48233, + [SMALL_STATE(1235)] = 48242, + [SMALL_STATE(1236)] = 48255, + [SMALL_STATE(1237)] = 48268, + [SMALL_STATE(1238)] = 48281, + [SMALL_STATE(1239)] = 48292, + [SMALL_STATE(1240)] = 48305, + [SMALL_STATE(1241)] = 48316, + [SMALL_STATE(1242)] = 48325, + [SMALL_STATE(1243)] = 48334, + [SMALL_STATE(1244)] = 48347, + [SMALL_STATE(1245)] = 48360, + [SMALL_STATE(1246)] = 48373, + [SMALL_STATE(1247)] = 48382, + [SMALL_STATE(1248)] = 48395, + [SMALL_STATE(1249)] = 48408, + [SMALL_STATE(1250)] = 48421, + [SMALL_STATE(1251)] = 48434, + [SMALL_STATE(1252)] = 48447, + [SMALL_STATE(1253)] = 48460, + [SMALL_STATE(1254)] = 48473, + [SMALL_STATE(1255)] = 48486, + [SMALL_STATE(1256)] = 48499, + [SMALL_STATE(1257)] = 48512, + [SMALL_STATE(1258)] = 48521, + [SMALL_STATE(1259)] = 48530, + [SMALL_STATE(1260)] = 48539, + [SMALL_STATE(1261)] = 48548, + [SMALL_STATE(1262)] = 48561, + [SMALL_STATE(1263)] = 48570, + [SMALL_STATE(1264)] = 48583, + [SMALL_STATE(1265)] = 48592, + [SMALL_STATE(1266)] = 48605, + [SMALL_STATE(1267)] = 48618, + [SMALL_STATE(1268)] = 48631, + [SMALL_STATE(1269)] = 48644, + [SMALL_STATE(1270)] = 48657, + [SMALL_STATE(1271)] = 48670, + [SMALL_STATE(1272)] = 48679, + [SMALL_STATE(1273)] = 48692, + [SMALL_STATE(1274)] = 48705, + [SMALL_STATE(1275)] = 48718, + [SMALL_STATE(1276)] = 48731, + [SMALL_STATE(1277)] = 48744, + [SMALL_STATE(1278)] = 48753, + [SMALL_STATE(1279)] = 48766, + [SMALL_STATE(1280)] = 48779, + [SMALL_STATE(1281)] = 48792, + [SMALL_STATE(1282)] = 48805, + [SMALL_STATE(1283)] = 48818, + [SMALL_STATE(1284)] = 48831, + [SMALL_STATE(1285)] = 48844, + [SMALL_STATE(1286)] = 48857, + [SMALL_STATE(1287)] = 48870, + [SMALL_STATE(1288)] = 48883, + [SMALL_STATE(1289)] = 48896, + [SMALL_STATE(1290)] = 48909, + [SMALL_STATE(1291)] = 48922, + [SMALL_STATE(1292)] = 48931, + [SMALL_STATE(1293)] = 48944, + [SMALL_STATE(1294)] = 48955, + [SMALL_STATE(1295)] = 48964, + [SMALL_STATE(1296)] = 48973, + [SMALL_STATE(1297)] = 48986, + [SMALL_STATE(1298)] = 48999, + [SMALL_STATE(1299)] = 49008, + [SMALL_STATE(1300)] = 49021, + [SMALL_STATE(1301)] = 49034, + [SMALL_STATE(1302)] = 49043, + [SMALL_STATE(1303)] = 49054, + [SMALL_STATE(1304)] = 49067, + [SMALL_STATE(1305)] = 49080, + [SMALL_STATE(1306)] = 49093, + [SMALL_STATE(1307)] = 49106, + [SMALL_STATE(1308)] = 49119, + [SMALL_STATE(1309)] = 49132, + [SMALL_STATE(1310)] = 49145, + [SMALL_STATE(1311)] = 49158, + [SMALL_STATE(1312)] = 49171, + [SMALL_STATE(1313)] = 49184, + [SMALL_STATE(1314)] = 49197, + [SMALL_STATE(1315)] = 49210, + [SMALL_STATE(1316)] = 49219, + [SMALL_STATE(1317)] = 49228, + [SMALL_STATE(1318)] = 49237, + [SMALL_STATE(1319)] = 49250, + [SMALL_STATE(1320)] = 49259, + [SMALL_STATE(1321)] = 49268, + [SMALL_STATE(1322)] = 49281, + [SMALL_STATE(1323)] = 49294, + [SMALL_STATE(1324)] = 49307, + [SMALL_STATE(1325)] = 49318, + [SMALL_STATE(1326)] = 49331, + [SMALL_STATE(1327)] = 49340, + [SMALL_STATE(1328)] = 49353, + [SMALL_STATE(1329)] = 49366, + [SMALL_STATE(1330)] = 49379, + [SMALL_STATE(1331)] = 49392, + [SMALL_STATE(1332)] = 49405, + [SMALL_STATE(1333)] = 49418, + [SMALL_STATE(1334)] = 49431, + [SMALL_STATE(1335)] = 49444, + [SMALL_STATE(1336)] = 49453, + [SMALL_STATE(1337)] = 49462, + [SMALL_STATE(1338)] = 49473, + [SMALL_STATE(1339)] = 49486, + [SMALL_STATE(1340)] = 49495, + [SMALL_STATE(1341)] = 49504, + [SMALL_STATE(1342)] = 49513, + [SMALL_STATE(1343)] = 49526, + [SMALL_STATE(1344)] = 49539, + [SMALL_STATE(1345)] = 49552, + [SMALL_STATE(1346)] = 49561, + [SMALL_STATE(1347)] = 49572, + [SMALL_STATE(1348)] = 49585, + [SMALL_STATE(1349)] = 49594, + [SMALL_STATE(1350)] = 49607, + [SMALL_STATE(1351)] = 49620, + [SMALL_STATE(1352)] = 49633, + [SMALL_STATE(1353)] = 49646, + [SMALL_STATE(1354)] = 49659, + [SMALL_STATE(1355)] = 49672, + [SMALL_STATE(1356)] = 49685, + [SMALL_STATE(1357)] = 49698, + [SMALL_STATE(1358)] = 49711, + [SMALL_STATE(1359)] = 49724, + [SMALL_STATE(1360)] = 49733, + [SMALL_STATE(1361)] = 49746, + [SMALL_STATE(1362)] = 49755, + [SMALL_STATE(1363)] = 49768, + [SMALL_STATE(1364)] = 49777, + [SMALL_STATE(1365)] = 49786, + [SMALL_STATE(1366)] = 49795, + [SMALL_STATE(1367)] = 49808, + [SMALL_STATE(1368)] = 49817, + [SMALL_STATE(1369)] = 49826, + [SMALL_STATE(1370)] = 49835, + [SMALL_STATE(1371)] = 49848, + [SMALL_STATE(1372)] = 49857, + [SMALL_STATE(1373)] = 49870, + [SMALL_STATE(1374)] = 49883, + [SMALL_STATE(1375)] = 49896, + [SMALL_STATE(1376)] = 49909, + [SMALL_STATE(1377)] = 49922, + [SMALL_STATE(1378)] = 49935, + [SMALL_STATE(1379)] = 49948, + [SMALL_STATE(1380)] = 49959, + [SMALL_STATE(1381)] = 49972, + [SMALL_STATE(1382)] = 49981, + [SMALL_STATE(1383)] = 49994, + [SMALL_STATE(1384)] = 50007, + [SMALL_STATE(1385)] = 50018, + [SMALL_STATE(1386)] = 50027, + [SMALL_STATE(1387)] = 50036, + [SMALL_STATE(1388)] = 50045, + [SMALL_STATE(1389)] = 50058, + [SMALL_STATE(1390)] = 50067, + [SMALL_STATE(1391)] = 50080, + [SMALL_STATE(1392)] = 50093, + [SMALL_STATE(1393)] = 50106, + [SMALL_STATE(1394)] = 50119, + [SMALL_STATE(1395)] = 50132, + [SMALL_STATE(1396)] = 50145, + [SMALL_STATE(1397)] = 50158, + [SMALL_STATE(1398)] = 50171, + [SMALL_STATE(1399)] = 50184, + [SMALL_STATE(1400)] = 50197, + [SMALL_STATE(1401)] = 50207, + [SMALL_STATE(1402)] = 50215, + [SMALL_STATE(1403)] = 50223, + [SMALL_STATE(1404)] = 50233, + [SMALL_STATE(1405)] = 50243, + [SMALL_STATE(1406)] = 50253, + [SMALL_STATE(1407)] = 50263, + [SMALL_STATE(1408)] = 50273, + [SMALL_STATE(1409)] = 50281, + [SMALL_STATE(1410)] = 50289, + [SMALL_STATE(1411)] = 50299, + [SMALL_STATE(1412)] = 50307, + [SMALL_STATE(1413)] = 50315, + [SMALL_STATE(1414)] = 50323, + [SMALL_STATE(1415)] = 50333, + [SMALL_STATE(1416)] = 50341, + [SMALL_STATE(1417)] = 50351, + [SMALL_STATE(1418)] = 50361, + [SMALL_STATE(1419)] = 50371, + [SMALL_STATE(1420)] = 50381, + [SMALL_STATE(1421)] = 50391, + [SMALL_STATE(1422)] = 50399, + [SMALL_STATE(1423)] = 50409, + [SMALL_STATE(1424)] = 50417, + [SMALL_STATE(1425)] = 50425, + [SMALL_STATE(1426)] = 50435, + [SMALL_STATE(1427)] = 50443, + [SMALL_STATE(1428)] = 50451, + [SMALL_STATE(1429)] = 50461, + [SMALL_STATE(1430)] = 50471, + [SMALL_STATE(1431)] = 50481, + [SMALL_STATE(1432)] = 50491, + [SMALL_STATE(1433)] = 50499, + [SMALL_STATE(1434)] = 50507, + [SMALL_STATE(1435)] = 50515, + [SMALL_STATE(1436)] = 50523, + [SMALL_STATE(1437)] = 50533, + [SMALL_STATE(1438)] = 50541, + [SMALL_STATE(1439)] = 50551, + [SMALL_STATE(1440)] = 50559, + [SMALL_STATE(1441)] = 50567, + [SMALL_STATE(1442)] = 50577, + [SMALL_STATE(1443)] = 50585, + [SMALL_STATE(1444)] = 50595, + [SMALL_STATE(1445)] = 50605, + [SMALL_STATE(1446)] = 50615, + [SMALL_STATE(1447)] = 50623, + [SMALL_STATE(1448)] = 50633, + [SMALL_STATE(1449)] = 50641, + [SMALL_STATE(1450)] = 50651, + [SMALL_STATE(1451)] = 50659, + [SMALL_STATE(1452)] = 50667, + [SMALL_STATE(1453)] = 50677, + [SMALL_STATE(1454)] = 50685, + [SMALL_STATE(1455)] = 50693, + [SMALL_STATE(1456)] = 50703, + [SMALL_STATE(1457)] = 50711, + [SMALL_STATE(1458)] = 50719, + [SMALL_STATE(1459)] = 50727, + [SMALL_STATE(1460)] = 50735, + [SMALL_STATE(1461)] = 50743, + [SMALL_STATE(1462)] = 50753, + [SMALL_STATE(1463)] = 50761, + [SMALL_STATE(1464)] = 50771, + [SMALL_STATE(1465)] = 50781, + [SMALL_STATE(1466)] = 50789, + [SMALL_STATE(1467)] = 50799, + [SMALL_STATE(1468)] = 50807, + [SMALL_STATE(1469)] = 50817, + [SMALL_STATE(1470)] = 50827, + [SMALL_STATE(1471)] = 50835, + [SMALL_STATE(1472)] = 50845, + [SMALL_STATE(1473)] = 50853, + [SMALL_STATE(1474)] = 50861, + [SMALL_STATE(1475)] = 50869, + [SMALL_STATE(1476)] = 50879, + [SMALL_STATE(1477)] = 50887, + [SMALL_STATE(1478)] = 50897, + [SMALL_STATE(1479)] = 50907, + [SMALL_STATE(1480)] = 50915, + [SMALL_STATE(1481)] = 50923, + [SMALL_STATE(1482)] = 50931, + [SMALL_STATE(1483)] = 50941, + [SMALL_STATE(1484)] = 50949, + [SMALL_STATE(1485)] = 50959, + [SMALL_STATE(1486)] = 50967, + [SMALL_STATE(1487)] = 50977, + [SMALL_STATE(1488)] = 50985, + [SMALL_STATE(1489)] = 50995, + [SMALL_STATE(1490)] = 51005, + [SMALL_STATE(1491)] = 51013, + [SMALL_STATE(1492)] = 51023, + [SMALL_STATE(1493)] = 51031, + [SMALL_STATE(1494)] = 51041, + [SMALL_STATE(1495)] = 51049, + [SMALL_STATE(1496)] = 51059, + [SMALL_STATE(1497)] = 51069, + [SMALL_STATE(1498)] = 51079, + [SMALL_STATE(1499)] = 51089, + [SMALL_STATE(1500)] = 51097, + [SMALL_STATE(1501)] = 51107, + [SMALL_STATE(1502)] = 51115, + [SMALL_STATE(1503)] = 51123, + [SMALL_STATE(1504)] = 51133, + [SMALL_STATE(1505)] = 51141, + [SMALL_STATE(1506)] = 51151, + [SMALL_STATE(1507)] = 51161, + [SMALL_STATE(1508)] = 51169, + [SMALL_STATE(1509)] = 51179, + [SMALL_STATE(1510)] = 51189, + [SMALL_STATE(1511)] = 51197, + [SMALL_STATE(1512)] = 51205, + [SMALL_STATE(1513)] = 51213, + [SMALL_STATE(1514)] = 51221, + [SMALL_STATE(1515)] = 51229, + [SMALL_STATE(1516)] = 51239, + [SMALL_STATE(1517)] = 51249, + [SMALL_STATE(1518)] = 51259, + [SMALL_STATE(1519)] = 51269, + [SMALL_STATE(1520)] = 51279, + [SMALL_STATE(1521)] = 51287, + [SMALL_STATE(1522)] = 51295, + [SMALL_STATE(1523)] = 51303, + [SMALL_STATE(1524)] = 51313, + [SMALL_STATE(1525)] = 51321, + [SMALL_STATE(1526)] = 51331, + [SMALL_STATE(1527)] = 51339, + [SMALL_STATE(1528)] = 51347, + [SMALL_STATE(1529)] = 51357, + [SMALL_STATE(1530)] = 51365, + [SMALL_STATE(1531)] = 51373, + [SMALL_STATE(1532)] = 51381, + [SMALL_STATE(1533)] = 51389, + [SMALL_STATE(1534)] = 51399, + [SMALL_STATE(1535)] = 51409, + [SMALL_STATE(1536)] = 51417, + [SMALL_STATE(1537)] = 51425, + [SMALL_STATE(1538)] = 51435, + [SMALL_STATE(1539)] = 51443, + [SMALL_STATE(1540)] = 51451, + [SMALL_STATE(1541)] = 51461, + [SMALL_STATE(1542)] = 51469, + [SMALL_STATE(1543)] = 51479, + [SMALL_STATE(1544)] = 51489, + [SMALL_STATE(1545)] = 51497, + [SMALL_STATE(1546)] = 51505, + [SMALL_STATE(1547)] = 51513, + [SMALL_STATE(1548)] = 51523, + [SMALL_STATE(1549)] = 51531, + [SMALL_STATE(1550)] = 51539, + [SMALL_STATE(1551)] = 51547, + [SMALL_STATE(1552)] = 51555, + [SMALL_STATE(1553)] = 51565, + [SMALL_STATE(1554)] = 51573, + [SMALL_STATE(1555)] = 51583, + [SMALL_STATE(1556)] = 51591, + [SMALL_STATE(1557)] = 51601, + [SMALL_STATE(1558)] = 51611, + [SMALL_STATE(1559)] = 51621, + [SMALL_STATE(1560)] = 51631, + [SMALL_STATE(1561)] = 51641, + [SMALL_STATE(1562)] = 51651, + [SMALL_STATE(1563)] = 51661, + [SMALL_STATE(1564)] = 51669, + [SMALL_STATE(1565)] = 51677, + [SMALL_STATE(1566)] = 51684, + [SMALL_STATE(1567)] = 51691, + [SMALL_STATE(1568)] = 51698, + [SMALL_STATE(1569)] = 51705, + [SMALL_STATE(1570)] = 51712, + [SMALL_STATE(1571)] = 51719, + [SMALL_STATE(1572)] = 51726, + [SMALL_STATE(1573)] = 51733, + [SMALL_STATE(1574)] = 51740, + [SMALL_STATE(1575)] = 51747, + [SMALL_STATE(1576)] = 51754, + [SMALL_STATE(1577)] = 51761, + [SMALL_STATE(1578)] = 51768, + [SMALL_STATE(1579)] = 51775, + [SMALL_STATE(1580)] = 51782, + [SMALL_STATE(1581)] = 51789, + [SMALL_STATE(1582)] = 51796, + [SMALL_STATE(1583)] = 51803, + [SMALL_STATE(1584)] = 51810, + [SMALL_STATE(1585)] = 51817, + [SMALL_STATE(1586)] = 51824, + [SMALL_STATE(1587)] = 51831, + [SMALL_STATE(1588)] = 51838, + [SMALL_STATE(1589)] = 51845, + [SMALL_STATE(1590)] = 51852, + [SMALL_STATE(1591)] = 51859, + [SMALL_STATE(1592)] = 51866, + [SMALL_STATE(1593)] = 51873, + [SMALL_STATE(1594)] = 51880, + [SMALL_STATE(1595)] = 51887, + [SMALL_STATE(1596)] = 51894, + [SMALL_STATE(1597)] = 51901, + [SMALL_STATE(1598)] = 51908, + [SMALL_STATE(1599)] = 51915, + [SMALL_STATE(1600)] = 51922, + [SMALL_STATE(1601)] = 51929, + [SMALL_STATE(1602)] = 51936, + [SMALL_STATE(1603)] = 51943, + [SMALL_STATE(1604)] = 51950, + [SMALL_STATE(1605)] = 51957, + [SMALL_STATE(1606)] = 51964, + [SMALL_STATE(1607)] = 51971, + [SMALL_STATE(1608)] = 51978, + [SMALL_STATE(1609)] = 51985, + [SMALL_STATE(1610)] = 51992, + [SMALL_STATE(1611)] = 51999, + [SMALL_STATE(1612)] = 52006, + [SMALL_STATE(1613)] = 52013, + [SMALL_STATE(1614)] = 52020, + [SMALL_STATE(1615)] = 52027, + [SMALL_STATE(1616)] = 52034, + [SMALL_STATE(1617)] = 52041, + [SMALL_STATE(1618)] = 52048, + [SMALL_STATE(1619)] = 52055, + [SMALL_STATE(1620)] = 52062, + [SMALL_STATE(1621)] = 52069, + [SMALL_STATE(1622)] = 52076, + [SMALL_STATE(1623)] = 52083, + [SMALL_STATE(1624)] = 52090, + [SMALL_STATE(1625)] = 52097, + [SMALL_STATE(1626)] = 52104, + [SMALL_STATE(1627)] = 52111, + [SMALL_STATE(1628)] = 52118, + [SMALL_STATE(1629)] = 52125, + [SMALL_STATE(1630)] = 52132, + [SMALL_STATE(1631)] = 52139, + [SMALL_STATE(1632)] = 52146, + [SMALL_STATE(1633)] = 52153, + [SMALL_STATE(1634)] = 52160, + [SMALL_STATE(1635)] = 52167, + [SMALL_STATE(1636)] = 52174, + [SMALL_STATE(1637)] = 52181, + [SMALL_STATE(1638)] = 52188, + [SMALL_STATE(1639)] = 52195, + [SMALL_STATE(1640)] = 52202, + [SMALL_STATE(1641)] = 52209, + [SMALL_STATE(1642)] = 52216, + [SMALL_STATE(1643)] = 52223, + [SMALL_STATE(1644)] = 52230, + [SMALL_STATE(1645)] = 52237, + [SMALL_STATE(1646)] = 52244, + [SMALL_STATE(1647)] = 52251, + [SMALL_STATE(1648)] = 52258, + [SMALL_STATE(1649)] = 52265, + [SMALL_STATE(1650)] = 52272, + [SMALL_STATE(1651)] = 52279, + [SMALL_STATE(1652)] = 52286, + [SMALL_STATE(1653)] = 52293, + [SMALL_STATE(1654)] = 52300, + [SMALL_STATE(1655)] = 52307, + [SMALL_STATE(1656)] = 52314, + [SMALL_STATE(1657)] = 52321, + [SMALL_STATE(1658)] = 52328, + [SMALL_STATE(1659)] = 52335, + [SMALL_STATE(1660)] = 52342, + [SMALL_STATE(1661)] = 52349, + [SMALL_STATE(1662)] = 52356, + [SMALL_STATE(1663)] = 52363, + [SMALL_STATE(1664)] = 52370, + [SMALL_STATE(1665)] = 52377, + [SMALL_STATE(1666)] = 52384, + [SMALL_STATE(1667)] = 52391, + [SMALL_STATE(1668)] = 52398, + [SMALL_STATE(1669)] = 52405, + [SMALL_STATE(1670)] = 52412, + [SMALL_STATE(1671)] = 52419, + [SMALL_STATE(1672)] = 52426, + [SMALL_STATE(1673)] = 52433, + [SMALL_STATE(1674)] = 52440, + [SMALL_STATE(1675)] = 52447, + [SMALL_STATE(1676)] = 52454, + [SMALL_STATE(1677)] = 52461, + [SMALL_STATE(1678)] = 52468, + [SMALL_STATE(1679)] = 52475, + [SMALL_STATE(1680)] = 52482, + [SMALL_STATE(1681)] = 52489, + [SMALL_STATE(1682)] = 52496, + [SMALL_STATE(1683)] = 52503, + [SMALL_STATE(1684)] = 52510, + [SMALL_STATE(1685)] = 52517, + [SMALL_STATE(1686)] = 52524, + [SMALL_STATE(1687)] = 52531, + [SMALL_STATE(1688)] = 52538, + [SMALL_STATE(1689)] = 52545, + [SMALL_STATE(1690)] = 52552, + [SMALL_STATE(1691)] = 52559, + [SMALL_STATE(1692)] = 52566, + [SMALL_STATE(1693)] = 52573, + [SMALL_STATE(1694)] = 52580, + [SMALL_STATE(1695)] = 52587, + [SMALL_STATE(1696)] = 52594, + [SMALL_STATE(1697)] = 52601, + [SMALL_STATE(1698)] = 52608, + [SMALL_STATE(1699)] = 52615, + [SMALL_STATE(1700)] = 52622, + [SMALL_STATE(1701)] = 52629, + [SMALL_STATE(1702)] = 52636, + [SMALL_STATE(1703)] = 52643, + [SMALL_STATE(1704)] = 52650, + [SMALL_STATE(1705)] = 52657, + [SMALL_STATE(1706)] = 52664, + [SMALL_STATE(1707)] = 52671, + [SMALL_STATE(1708)] = 52678, + [SMALL_STATE(1709)] = 52685, + [SMALL_STATE(1710)] = 52692, + [SMALL_STATE(1711)] = 52699, + [SMALL_STATE(1712)] = 52706, + [SMALL_STATE(1713)] = 52713, + [SMALL_STATE(1714)] = 52720, + [SMALL_STATE(1715)] = 52727, + [SMALL_STATE(1716)] = 52734, + [SMALL_STATE(1717)] = 52741, + [SMALL_STATE(1718)] = 52748, + [SMALL_STATE(1719)] = 52755, + [SMALL_STATE(1720)] = 52762, + [SMALL_STATE(1721)] = 52769, + [SMALL_STATE(1722)] = 52776, + [SMALL_STATE(1723)] = 52783, + [SMALL_STATE(1724)] = 52790, + [SMALL_STATE(1725)] = 52797, + [SMALL_STATE(1726)] = 52804, + [SMALL_STATE(1727)] = 52811, + [SMALL_STATE(1728)] = 52818, + [SMALL_STATE(1729)] = 52825, + [SMALL_STATE(1730)] = 52832, + [SMALL_STATE(1731)] = 52839, + [SMALL_STATE(1732)] = 52846, + [SMALL_STATE(1733)] = 52853, + [SMALL_STATE(1734)] = 52860, + [SMALL_STATE(1735)] = 52867, + [SMALL_STATE(1736)] = 52874, + [SMALL_STATE(1737)] = 52881, + [SMALL_STATE(1738)] = 52888, + [SMALL_STATE(1739)] = 52895, + [SMALL_STATE(1740)] = 52902, + [SMALL_STATE(1741)] = 52909, + [SMALL_STATE(1742)] = 52916, + [SMALL_STATE(1743)] = 52923, + [SMALL_STATE(1744)] = 52930, + [SMALL_STATE(1745)] = 52937, + [SMALL_STATE(1746)] = 52944, + [SMALL_STATE(1747)] = 52951, + [SMALL_STATE(1748)] = 52958, + [SMALL_STATE(1749)] = 52965, + [SMALL_STATE(1750)] = 52972, + [SMALL_STATE(1751)] = 52979, + [SMALL_STATE(1752)] = 52986, + [SMALL_STATE(1753)] = 52993, + [SMALL_STATE(1754)] = 53000, + [SMALL_STATE(1755)] = 53007, + [SMALL_STATE(1756)] = 53014, + [SMALL_STATE(1757)] = 53021, + [SMALL_STATE(1758)] = 53028, + [SMALL_STATE(1759)] = 53035, + [SMALL_STATE(1760)] = 53042, + [SMALL_STATE(1761)] = 53049, + [SMALL_STATE(1762)] = 53056, + [SMALL_STATE(1763)] = 53063, + [SMALL_STATE(1764)] = 53070, + [SMALL_STATE(1765)] = 53077, + [SMALL_STATE(1766)] = 53084, + [SMALL_STATE(1767)] = 53091, + [SMALL_STATE(1768)] = 53098, + [SMALL_STATE(1769)] = 53105, + [SMALL_STATE(1770)] = 53112, + [SMALL_STATE(1771)] = 53119, + [SMALL_STATE(1772)] = 53126, + [SMALL_STATE(1773)] = 53133, + [SMALL_STATE(1774)] = 53140, + [SMALL_STATE(1775)] = 53147, + [SMALL_STATE(1776)] = 53154, + [SMALL_STATE(1777)] = 53161, + [SMALL_STATE(1778)] = 53168, + [SMALL_STATE(1779)] = 53175, + [SMALL_STATE(1780)] = 53182, + [SMALL_STATE(1781)] = 53189, + [SMALL_STATE(1782)] = 53196, + [SMALL_STATE(1783)] = 53203, + [SMALL_STATE(1784)] = 53210, + [SMALL_STATE(1785)] = 53217, + [SMALL_STATE(1786)] = 53224, + [SMALL_STATE(1787)] = 53231, + [SMALL_STATE(1788)] = 53238, + [SMALL_STATE(1789)] = 53245, + [SMALL_STATE(1790)] = 53252, + [SMALL_STATE(1791)] = 53259, + [SMALL_STATE(1792)] = 53266, + [SMALL_STATE(1793)] = 53273, + [SMALL_STATE(1794)] = 53280, + [SMALL_STATE(1795)] = 53287, + [SMALL_STATE(1796)] = 53294, + [SMALL_STATE(1797)] = 53301, + [SMALL_STATE(1798)] = 53308, + [SMALL_STATE(1799)] = 53315, + [SMALL_STATE(1800)] = 53322, + [SMALL_STATE(1801)] = 53329, + [SMALL_STATE(1802)] = 53336, + [SMALL_STATE(1803)] = 53343, + [SMALL_STATE(1804)] = 53350, + [SMALL_STATE(1805)] = 53357, + [SMALL_STATE(1806)] = 53364, + [SMALL_STATE(1807)] = 53371, + [SMALL_STATE(1808)] = 53378, + [SMALL_STATE(1809)] = 53385, + [SMALL_STATE(1810)] = 53392, + [SMALL_STATE(1811)] = 53399, + [SMALL_STATE(1812)] = 53406, + [SMALL_STATE(1813)] = 53413, + [SMALL_STATE(1814)] = 53420, + [SMALL_STATE(1815)] = 53427, + [SMALL_STATE(1816)] = 53434, + [SMALL_STATE(1817)] = 53441, + [SMALL_STATE(1818)] = 53448, + [SMALL_STATE(1819)] = 53455, + [SMALL_STATE(1820)] = 53462, + [SMALL_STATE(1821)] = 53469, + [SMALL_STATE(1822)] = 53476, + [SMALL_STATE(1823)] = 53483, + [SMALL_STATE(1824)] = 53490, + [SMALL_STATE(1825)] = 53497, + [SMALL_STATE(1826)] = 53504, + [SMALL_STATE(1827)] = 53511, + [SMALL_STATE(1828)] = 53518, + [SMALL_STATE(1829)] = 53525, + [SMALL_STATE(1830)] = 53532, + [SMALL_STATE(1831)] = 53539, + [SMALL_STATE(1832)] = 53546, + [SMALL_STATE(1833)] = 53553, + [SMALL_STATE(1834)] = 53560, + [SMALL_STATE(1835)] = 53567, + [SMALL_STATE(1836)] = 53574, + [SMALL_STATE(1837)] = 53581, + [SMALL_STATE(1838)] = 53588, + [SMALL_STATE(1839)] = 53595, + [SMALL_STATE(1840)] = 53602, + [SMALL_STATE(1841)] = 53609, + [SMALL_STATE(1842)] = 53616, + [SMALL_STATE(1843)] = 53623, + [SMALL_STATE(1844)] = 53630, + [SMALL_STATE(1845)] = 53637, + [SMALL_STATE(1846)] = 53644, + [SMALL_STATE(1847)] = 53651, + [SMALL_STATE(1848)] = 53658, + [SMALL_STATE(1849)] = 53665, + [SMALL_STATE(1850)] = 53672, + [SMALL_STATE(1851)] = 53679, + [SMALL_STATE(1852)] = 53686, + [SMALL_STATE(1853)] = 53693, + [SMALL_STATE(1854)] = 53700, + [SMALL_STATE(1855)] = 53707, + [SMALL_STATE(1856)] = 53714, + [SMALL_STATE(1857)] = 53721, + [SMALL_STATE(1858)] = 53728, + [SMALL_STATE(1859)] = 53735, + [SMALL_STATE(1860)] = 53742, + [SMALL_STATE(1861)] = 53749, + [SMALL_STATE(1862)] = 53756, + [SMALL_STATE(1863)] = 53763, + [SMALL_STATE(1864)] = 53770, + [SMALL_STATE(1865)] = 53777, + [SMALL_STATE(1866)] = 53784, + [SMALL_STATE(1867)] = 53791, + [SMALL_STATE(1868)] = 53798, + [SMALL_STATE(1869)] = 53805, + [SMALL_STATE(1870)] = 53812, + [SMALL_STATE(1871)] = 53819, + [SMALL_STATE(1872)] = 53826, + [SMALL_STATE(1873)] = 53833, + [SMALL_STATE(1874)] = 53840, + [SMALL_STATE(1875)] = 53847, + [SMALL_STATE(1876)] = 53854, + [SMALL_STATE(1877)] = 53861, + [SMALL_STATE(1878)] = 53868, + [SMALL_STATE(1879)] = 53875, + [SMALL_STATE(1880)] = 53882, + [SMALL_STATE(1881)] = 53889, + [SMALL_STATE(1882)] = 53896, + [SMALL_STATE(1883)] = 53903, + [SMALL_STATE(1884)] = 53910, + [SMALL_STATE(1885)] = 53917, + [SMALL_STATE(1886)] = 53924, + [SMALL_STATE(1887)] = 53931, + [SMALL_STATE(1888)] = 53938, + [SMALL_STATE(1889)] = 53945, + [SMALL_STATE(1890)] = 53952, + [SMALL_STATE(1891)] = 53959, + [SMALL_STATE(1892)] = 53966, + [SMALL_STATE(1893)] = 53973, + [SMALL_STATE(1894)] = 53980, + [SMALL_STATE(1895)] = 53987, + [SMALL_STATE(1896)] = 53994, + [SMALL_STATE(1897)] = 54001, + [SMALL_STATE(1898)] = 54008, + [SMALL_STATE(1899)] = 54015, + [SMALL_STATE(1900)] = 54022, + [SMALL_STATE(1901)] = 54029, + [SMALL_STATE(1902)] = 54036, + [SMALL_STATE(1903)] = 54043, + [SMALL_STATE(1904)] = 54050, + [SMALL_STATE(1905)] = 54057, + [SMALL_STATE(1906)] = 54064, + [SMALL_STATE(1907)] = 54071, + [SMALL_STATE(1908)] = 54078, + [SMALL_STATE(1909)] = 54085, + [SMALL_STATE(1910)] = 54092, + [SMALL_STATE(1911)] = 54099, + [SMALL_STATE(1912)] = 54106, + [SMALL_STATE(1913)] = 54113, + [SMALL_STATE(1914)] = 54120, + [SMALL_STATE(1915)] = 54127, + [SMALL_STATE(1916)] = 54134, + [SMALL_STATE(1917)] = 54141, + [SMALL_STATE(1918)] = 54148, + [SMALL_STATE(1919)] = 54155, + [SMALL_STATE(1920)] = 54162, + [SMALL_STATE(1921)] = 54169, + [SMALL_STATE(1922)] = 54176, + [SMALL_STATE(1923)] = 54183, + [SMALL_STATE(1924)] = 54190, + [SMALL_STATE(1925)] = 54197, + [SMALL_STATE(1926)] = 54204, + [SMALL_STATE(1927)] = 54211, + [SMALL_STATE(1928)] = 54218, + [SMALL_STATE(1929)] = 54225, + [SMALL_STATE(1930)] = 54232, + [SMALL_STATE(1931)] = 54239, + [SMALL_STATE(1932)] = 54246, + [SMALL_STATE(1933)] = 54253, + [SMALL_STATE(1934)] = 54260, + [SMALL_STATE(1935)] = 54267, + [SMALL_STATE(1936)] = 54274, + [SMALL_STATE(1937)] = 54281, + [SMALL_STATE(1938)] = 54288, + [SMALL_STATE(1939)] = 54295, + [SMALL_STATE(1940)] = 54302, + [SMALL_STATE(1941)] = 54309, + [SMALL_STATE(1942)] = 54316, + [SMALL_STATE(1943)] = 54323, + [SMALL_STATE(1944)] = 54330, + [SMALL_STATE(1945)] = 54337, + [SMALL_STATE(1946)] = 54344, + [SMALL_STATE(1947)] = 54351, + [SMALL_STATE(1948)] = 54358, + [SMALL_STATE(1949)] = 54365, + [SMALL_STATE(1950)] = 54372, + [SMALL_STATE(1951)] = 54379, + [SMALL_STATE(1952)] = 54386, + [SMALL_STATE(1953)] = 54393, + [SMALL_STATE(1954)] = 54400, + [SMALL_STATE(1955)] = 54407, + [SMALL_STATE(1956)] = 54414, + [SMALL_STATE(1957)] = 54421, + [SMALL_STATE(1958)] = 54428, + [SMALL_STATE(1959)] = 54435, + [SMALL_STATE(1960)] = 54442, + [SMALL_STATE(1961)] = 54449, + [SMALL_STATE(1962)] = 54456, + [SMALL_STATE(1963)] = 54463, + [SMALL_STATE(1964)] = 54470, + [SMALL_STATE(1965)] = 54477, + [SMALL_STATE(1966)] = 54484, + [SMALL_STATE(1967)] = 54491, + [SMALL_STATE(1968)] = 54498, + [SMALL_STATE(1969)] = 54505, + [SMALL_STATE(1970)] = 54512, + [SMALL_STATE(1971)] = 54519, + [SMALL_STATE(1972)] = 54526, + [SMALL_STATE(1973)] = 54533, + [SMALL_STATE(1974)] = 54540, + [SMALL_STATE(1975)] = 54547, + [SMALL_STATE(1976)] = 54554, + [SMALL_STATE(1977)] = 54561, + [SMALL_STATE(1978)] = 54568, + [SMALL_STATE(1979)] = 54575, + [SMALL_STATE(1980)] = 54582, + [SMALL_STATE(1981)] = 54589, + [SMALL_STATE(1982)] = 54596, + [SMALL_STATE(1983)] = 54603, + [SMALL_STATE(1984)] = 54610, + [SMALL_STATE(1985)] = 54617, + [SMALL_STATE(1986)] = 54624, + [SMALL_STATE(1987)] = 54631, + [SMALL_STATE(1988)] = 54638, + [SMALL_STATE(1989)] = 54645, + [SMALL_STATE(1990)] = 54652, + [SMALL_STATE(1991)] = 54659, + [SMALL_STATE(1992)] = 54666, + [SMALL_STATE(1993)] = 54673, + [SMALL_STATE(1994)] = 54680, + [SMALL_STATE(1995)] = 54687, + [SMALL_STATE(1996)] = 54694, + [SMALL_STATE(1997)] = 54701, + [SMALL_STATE(1998)] = 54708, + [SMALL_STATE(1999)] = 54715, + [SMALL_STATE(2000)] = 54722, + [SMALL_STATE(2001)] = 54729, + [SMALL_STATE(2002)] = 54736, + [SMALL_STATE(2003)] = 54743, + [SMALL_STATE(2004)] = 54750, + [SMALL_STATE(2005)] = 54757, + [SMALL_STATE(2006)] = 54764, + [SMALL_STATE(2007)] = 54771, + [SMALL_STATE(2008)] = 54778, + [SMALL_STATE(2009)] = 54785, + [SMALL_STATE(2010)] = 54792, + [SMALL_STATE(2011)] = 54799, + [SMALL_STATE(2012)] = 54806, + [SMALL_STATE(2013)] = 54813, + [SMALL_STATE(2014)] = 54820, + [SMALL_STATE(2015)] = 54827, + [SMALL_STATE(2016)] = 54834, + [SMALL_STATE(2017)] = 54841, + [SMALL_STATE(2018)] = 54848, + [SMALL_STATE(2019)] = 54855, + [SMALL_STATE(2020)] = 54862, + [SMALL_STATE(2021)] = 54869, + [SMALL_STATE(2022)] = 54876, + [SMALL_STATE(2023)] = 54883, + [SMALL_STATE(2024)] = 54890, + [SMALL_STATE(2025)] = 54897, + [SMALL_STATE(2026)] = 54904, + [SMALL_STATE(2027)] = 54911, + [SMALL_STATE(2028)] = 54918, + [SMALL_STATE(2029)] = 54925, + [SMALL_STATE(2030)] = 54932, + [SMALL_STATE(2031)] = 54939, + [SMALL_STATE(2032)] = 54946, + [SMALL_STATE(2033)] = 54953, + [SMALL_STATE(2034)] = 54960, + [SMALL_STATE(2035)] = 54967, + [SMALL_STATE(2036)] = 54974, + [SMALL_STATE(2037)] = 54981, + [SMALL_STATE(2038)] = 54988, + [SMALL_STATE(2039)] = 54995, + [SMALL_STATE(2040)] = 55002, + [SMALL_STATE(2041)] = 55009, + [SMALL_STATE(2042)] = 55016, + [SMALL_STATE(2043)] = 55023, + [SMALL_STATE(2044)] = 55030, + [SMALL_STATE(2045)] = 55037, + [SMALL_STATE(2046)] = 55044, + [SMALL_STATE(2047)] = 55051, + [SMALL_STATE(2048)] = 55058, + [SMALL_STATE(2049)] = 55065, + [SMALL_STATE(2050)] = 55072, + [SMALL_STATE(2051)] = 55079, + [SMALL_STATE(2052)] = 55086, + [SMALL_STATE(2053)] = 55093, + [SMALL_STATE(2054)] = 55100, + [SMALL_STATE(2055)] = 55107, + [SMALL_STATE(2056)] = 55114, + [SMALL_STATE(2057)] = 55121, + [SMALL_STATE(2058)] = 55128, + [SMALL_STATE(2059)] = 55135, + [SMALL_STATE(2060)] = 55142, + [SMALL_STATE(2061)] = 55149, + [SMALL_STATE(2062)] = 55156, + [SMALL_STATE(2063)] = 55163, + [SMALL_STATE(2064)] = 55170, + [SMALL_STATE(2065)] = 55177, + [SMALL_STATE(2066)] = 55184, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -64407,7 +64416,7 @@ 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(891), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), @@ -64443,12 +64452,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation, 1), [87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), - [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(891), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(893), [92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1015), [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(1255), [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(720), @@ -64484,7 +64493,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(718), [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(809), [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(219), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(80), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(90), [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(238), [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_repeat1, 2), SHIFT_REPEAT(2046), [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(1008), @@ -64509,7 +64518,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(718), [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(809), [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(219), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(80), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(90), [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sequence_of_statements_repeat1, 2), SHIFT_REPEAT(238), [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(1127), [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_empty_declarative_part_repeat1, 2), SHIFT_REPEAT(813), @@ -64545,10 +64554,10 @@ static const TSParseActionEntry ts_parse_actions[] = { [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), @@ -64556,11 +64565,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 4, .production_id = 5), [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 3, .production_id = 5), @@ -64595,15 +64604,15 @@ static const TSParseActionEntry ts_parse_actions[] = { [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 4, .production_id = 5), [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 3, .production_id = 5), [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), @@ -64617,46 +64626,46 @@ static const TSParseActionEntry ts_parse_actions[] = { [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1127), - [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(813), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(701), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(827), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2065), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2063), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1405), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(797), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(800), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1407), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(623), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1214), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2048), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2046), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1127), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(813), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(701), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(827), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2065), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2063), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1405), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(797), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(800), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1407), + [556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(623), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(1214), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2048), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__package_specification_repeat1, 2), SHIFT_REPEAT(2046), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_statement, 7, .production_id = 88), [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accept_statement, 7, .production_id = 88), [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_call_statement, 3, .production_id = 2), @@ -65159,40 +65168,40 @@ static const TSParseActionEntry ts_parse_actions[] = { [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_renaming_declaration, 7, .production_id = 67), [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_reference, 3), [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_reference, 3), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selected_component, 3, .production_id = 17), [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selected_component, 3, .production_id = 17), [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 4), [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 4), [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null_array_aggregate, 2), [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null_array_aggregate, 2), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 31), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 31), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_aggregate, 5), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_aggregate, 5), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_delta_aggregate, 6), [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_delta_aggregate, 6), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduction_attribute_designator, 4), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_attribute_designator, 4), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 8), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 8), [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_delta_aggregate, 6), [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_delta_aggregate, 6), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_designator, 1), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_designator, 1), [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 6), [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 6), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 7), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 7), [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_expression, 3, .production_id = 16), [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1), [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(98), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(100), [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), @@ -65200,20 +65209,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 3), [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 3), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_array_aggregate, 3), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_array_aggregate, 3), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_aggregate, 3), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_aggregate, 3), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_array_aggregate, 5), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_array_aggregate, 5), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reduction_attribute_reference, 3), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reduction_attribute_reference, 3), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice, 4, .production_id = 31), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 31), [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 4), [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 4), [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 2), [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 2), [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_actual_parameter_part, 3), [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_actual_parameter_part, 3), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 3), [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 3), [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 55), @@ -65228,26 +65237,26 @@ static const TSParseActionEntry ts_parse_actions[] = { [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 9, .production_id = 105), [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 6, .production_id = 37), [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 6, .production_id = 37), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 7, .production_id = 71), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 2), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication_paren_constraint, 1), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4, .production_id = 28), [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5, .production_id = 55), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 71), [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 105), [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 105), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 5), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 5), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 4), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 4), [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_declaration, 8, .production_id = 84), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_entry_declaration, 8, .production_id = 84), [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, .production_id = 26), @@ -65266,20 +65275,20 @@ static const TSParseActionEntry ts_parse_actions[] = { [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subunit, 5, .production_id = 44), [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary, 1, .production_id = 2), [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary, 1, .production_id = 2), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 2, .production_id = 11), [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 2, .production_id = 11), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_term, 1, .production_id = 4), [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_term, 1, .production_id = 4), [1834] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), [1838] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym__subtype_indication, 1, .production_id = 7), SHIFT(1421), [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(862), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(862), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(864), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_term_repeat1, 2, .production_id = 11), SHIFT_REPEAT(864), [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_constraint, 4, .production_id = 81), [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_constraint, 4, .production_id = 81), [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1, .dynamic_precedence = 1), @@ -65331,16 +65340,16 @@ static const TSParseActionEntry ts_parse_actions[] = { [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 3), [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 3), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 2), [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 2), [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(860), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(860), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(862), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__simple_expression_repeat1, 2), SHIFT_REPEAT(862), [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), @@ -65450,8 +65459,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(1214), [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protected_definition_repeat1, 2), SHIFT_REPEAT(2048), [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), @@ -65459,9 +65468,9 @@ static const TSParseActionEntry ts_parse_actions[] = { [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_membership_choice_list, 1), [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(1254), [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_formal_part_repeat1, 2), SHIFT_REPEAT(701), @@ -65529,17 +65538,17 @@ static const TSParseActionEntry ts_parse_actions[] = { [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat2, 2), SHIFT_REPEAT(269), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 36), [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 3, .production_id = 22), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), @@ -65549,22 +65558,22 @@ static const TSParseActionEntry ts_parse_actions[] = { [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delta_constraint, 2), [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(813), [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_task_definition_repeat1, 2), SHIFT_REPEAT(2063), @@ -65586,8 +65595,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 1), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(1254), [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), SHIFT_REPEAT(813), [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_list_repeat1, 2), @@ -65603,7 +65612,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), @@ -65620,8 +65629,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 3, .production_id = 19), [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), @@ -65641,11 +65650,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subtype_indication, 2, .production_id = 7), [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_constraint, 1), @@ -65682,12 +65691,12 @@ static const TSParseActionEntry ts_parse_actions[] = { [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 1), [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 1), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_operator, 1), [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_operator, 1), [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), @@ -65696,7 +65705,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3, .production_id = 35), [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), @@ -65717,7 +65726,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), @@ -65731,1316 +65740,1317 @@ static const TSParseActionEntry ts_parse_actions[] = { [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1124), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1716), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1715), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 61), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 111), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 98), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 35), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 62), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 77), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(594), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1621), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1912), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), SHIFT(1600), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 101), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 101), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 61), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), SHIFT(1920), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), - [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), - [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 35), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 100), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 100), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 100), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 100), - [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), - [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), SHIFT(1798), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_clause, 4), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_clause, 4), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 1), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 125), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 125), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1934), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .dynamic_precedence = 1), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 49), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 45), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1235), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(239), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 79), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(796), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 9, .production_id = 109), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 23), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 97), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1793), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 64), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 37), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 40), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(226), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 35), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 23), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1290), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 43), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(676), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1170), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(659), - [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(834), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(857), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(122), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 111), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 98), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(241), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1946), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1108), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1124), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1716), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(1715), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declare_expression_repeat1, 2), SHIFT_REPEAT(2048), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_empty_mode, 2), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_mode, 2), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_adding_operator, 1), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_adding_operator, 1), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 2), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplying_operator, 1), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplying_operator, 1), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 3), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_adding_operator, 1), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_adding_operator, 1), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_part, 3), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 4), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 4), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 4), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 5), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 5), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_declaration, 6), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_declaration, 6), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_mode, 1), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_mode, 1), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 98), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_profile, 2), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 111), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3, .production_id = 35), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_definition, 5), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 61), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_and_result_profile, 2), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 62), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 77), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(594), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 1), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), + [2925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1912), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_procedure_specification, 2, .production_id = 3), SHIFT(1621), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 8, .production_id = 86), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6, .production_id = 85), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 50), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 3), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 5), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 3), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 7), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 5), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 2, .production_id = 19), SHIFT(1600), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 86), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 101), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 7, .production_id = 101), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 5), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 4, .production_id = 50), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 61), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 5), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 4), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 70), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 5, .production_id = 70), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 112), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_subprogram_declaration, 1), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_subprogram_declaration, 1), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 8, .production_id = 112), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 61), SHIFT(1920), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 8, .production_id = 112), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 70), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 9, .production_id = 118), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 4), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3, .production_id = 35), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 100), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 8, .production_id = 100), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 6, .production_id = 50), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_concrete_subprogram_declaration, 6), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 9, .production_id = 118), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 10, .production_id = 118), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 100), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_package_declaration, 7, .production_id = 100), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_object_declaration, 7, .production_id = 86), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_incomplete_type_declaration, 6), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 3, .production_id = 35), SHIFT(1798), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 7), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 7), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_complete_type_declaration, 6), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_abstract_subprogram_declaration, 6), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [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}}, REDUCE(sym__name_list, 1), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 12), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_component_clause, 8, .production_id = 125), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_clause, 8, .production_id = 125), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 11), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_general_access_modifier, 1), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_general_access_modifier, 1), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpool_specification, 3, .production_id = 47), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 10), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 9), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_body, 8), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1934), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .dynamic_precedence = 1), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 1), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 1), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 3), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1, .production_id = 49), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice_parameter_specification, 1), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1, .production_id = 45), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__aspect_mark, 3), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), SHIFT_REPEAT(1235), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_aspect_mark_list_repeat1, 2), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition, 1, .production_id = 8), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_mark_list, 2), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(239), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 7, .production_id = 79), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 4), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 3), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_list, 2), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 5), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 2), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_list_repeat1, 2), SHIFT_REPEAT(796), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 9, .production_id = 109), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 3, .production_id = 23), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 3), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 8, .production_id = 97), + [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1), SHIFT(1793), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 6, .production_id = 64), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 37), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 5), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__package_specification, 5, .production_id = 40), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_expression_repeat1, 2), SHIFT_REPEAT(226), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_association, 3), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_definition, 1), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 3), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 23), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_specification, 3, .production_id = 3), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1, .production_id = 8), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_component_association_list_or_expression, 1), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6, .production_id = 23), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 1), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), + [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1290), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_definition, 2, .production_id = 43), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4, .production_id = 35), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 4), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_definition, 6), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(676), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1170), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_list, 1), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__defining_identifier_list, 1), SHIFT(659), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__name_list_repeat1, 2), SHIFT_REPEAT(834), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), + [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 2), SHIFT_REPEAT(860), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(122), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 111), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 98), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 2), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(241), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_declarative_if_statement_repeat1, 2, .production_id = 51), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1946), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 1), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(855), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 3, .production_id = 23), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(118), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1155), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(237), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(678), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1290), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(263), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(470), - [3761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(124), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1290), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(856), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1823), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_specification, 3, .production_id = 3), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 61), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 71), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 37), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(255), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [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(1520), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), SHIFT_REPEAT(351), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(217), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 61), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 35), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(201), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 23), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 22), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 23), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1306), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_specification_list_repeat1, 2), SHIFT_REPEAT(1219), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 61), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 19), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 37), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 36), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(716), - [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(2033), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), SHIFT_REPEAT(360), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(734), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 35), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(198), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1240), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), - [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1421), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 43), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(1001), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 77), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(206), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1066), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 62), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 87), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 19), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1558), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(128), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2, .dynamic_precedence = 1), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 73), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(545), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 23), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 35), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 37), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 43), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), - [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(462), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 61), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 23), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 37), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 94), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2, .dynamic_precedence = 1), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 35), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), - [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(472), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 23), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1935), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 61), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 43), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 37), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 71), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 55), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 98), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 80), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 111), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 43), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 43), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 82), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 83), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(216), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 21), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 48), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 99), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 21), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 66), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 23), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 37), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5449] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 37), SHIFT(1149), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(857), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_component_association_list, 2), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delay_alternative, 2), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_triggering_alternative, 2), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_ordinary_fixed_point_definition, 2), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 3), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), SHIFT_REPEAT(118), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_component_association_list_repeat1, 2), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 4), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1155), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 1), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_value, 2), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), SHIFT_REPEAT(237), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnatprep_if_statement_repeat1, 2, .production_id = 51), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 2), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aspect_specification, 2), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), SHIFT_REPEAT(678), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_handled_sequence_of_statements_repeat1, 2), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 2, .production_id = 43), SHIFT(1290), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), SHIFT_REPEAT(263), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), SHIFT(476), + [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), SHIFT_REPEAT(121), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_list_repeat1, 2), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 23), SHIFT(1290), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(859), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__subprogram_specification, 1), SHIFT(1823), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 61), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_discriminant_part, 3), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 71), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 37), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__attribute_reference, 3), SHIFT(255), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [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(1520), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_subtype_indication, 1, .production_id = 8), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 1), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 2), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_list, 2), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 5), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), SHIFT_REPEAT(351), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 73), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), SHIFT_REPEAT(217), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discriminant_constraint_repeat1, 2), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 1), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unknown_discriminant_part, 3), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 8, .production_id = 61), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__defining_identifier_list, 2), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 7, .production_id = 35), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 2), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), SHIFT_REPEAT(201), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 4, .production_id = 23), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enumeration_literal_list, 2), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 4, .production_id = 22), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 4), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_discrete_type_definition, 3), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 3, .production_id = 23), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameter_specification_list_repeat1, 2), SHIFT_REPEAT(1306), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access_type_definition, 2), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 3), + [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(1219), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overriding_indicator, 2), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 61), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 6, .production_id = 19), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_filter, 2, .production_id = 5), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_parameter_specification, 5, .production_id = 37), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 5, .production_id = 36), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression, 4), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_expression_item, 4, .production_id = 5), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 4), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_alternative, 1), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice_list, 1), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_choice_list_repeat1, 2), SHIFT_REPEAT(716), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), SHIFT_REPEAT(2033), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__defining_identifier_list_repeat1, 2), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), SHIFT_REPEAT(360), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 73), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), SHIFT_REPEAT(734), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__index_subtype_definition_list_repeat1, 2), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 5, .production_id = 35), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 3, .production_id = 5), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 1), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 4), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 1, .production_id = 8), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 1), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 2), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 1), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_floating_point_definition, 2), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_modular_type_definition, 2), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 2), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_signed_integer_type_definition, 2), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 4), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), SHIFT_REPEAT(198), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_actual_parameter_part_repeat1, 2), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_subprogram_definition, 4), + [4108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), SHIFT_REPEAT(1240), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enumeration_literal_list_repeat1, 2), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), + [4125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2), SHIFT_REPEAT(1421), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminate_alternative, 2), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accept_alternative, 2), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_call_alternative, 2), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_to_object_definition, 2, .production_id = 43), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_selective_accept_repeat1, 3), + [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), SHIFT_REPEAT(1001), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_aspect_definition_repeat1, 2), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 7, .production_id = 77), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 3), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), SHIFT_REPEAT(206), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pragma_g_repeat1, 2), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice_list, 2), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), SHIFT_REPEAT(1066), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat2, 2), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterator_specification, 6, .production_id = 62), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif_statement_item, 4, .production_id = 87), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 4), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_derived_type_definition, 4, .production_id = 19), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_decimal_fixed_point_definition, 4), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_private_type_definition, 1), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_component_association_list, 2), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_type_definition, 3), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification_list, 1), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), SHIFT_REPEAT(1558), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_expression_repeat1, 2), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_component_association, 3), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iterated_element_association, 6), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_interface_type_definition, 1), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_array_type_definition, 1), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_discrete_choice_list_repeat1, 2), SHIFT_REPEAT(128), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_access_type_definition, 1), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 2, .dynamic_precedence = 1), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_subtype_definition_list, 2, .production_id = 73), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_subtype_definition_list, 2), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_specification_list, 1), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discriminant_part, 1), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discriminant_part, 1), SHIFT(545), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop_parameter_subtype_indication, 1, .production_id = 8), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 4, .production_id = 23), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 4), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 5, .production_id = 35), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 1), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subprogram_default, 1), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 37), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 5), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 5, .production_id = 43), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__discrete_range, 1), SHIFT(479), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decimal_fixed_point_definition, 5), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 5, .production_id = 61), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 6, .production_id = 23), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 5, .production_id = 37), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), REDUCE(sym_discrete_choice, 1), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 1), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_record_component_association, 3), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 1), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 3), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_aspect_element, 2, .production_id = 94), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_real_range_specification, 4), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_component_choice_list_repeat1, 2, .dynamic_precedence = 1), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_list, 2), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4, .production_id = 35), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_specification, 4), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 1), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_discriminant_association, 1), SHIFT(463), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__discrete_range, 1, .production_id = 8), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 1), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 4, .production_id = 23), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_integer_type_definition, 4), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_association, 3), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_extension_part, 2), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 6), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_component_association, 1), SHIFT(1935), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 6, .production_id = 61), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discrete_choice, 1, .production_id = 8), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 4), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_expression_alternative, 4), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_component_association_list_repeat1, 2), REDUCE(aux_sym_positional_array_aggregate_repeat1, 2), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__discrete_subtype_definition_list_repeat1, 2, .production_id = 43), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 2), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_subtype_definition, 3, .production_id = 7), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_handler, 4), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 7, .production_id = 37), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 4), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_choice, 1), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_return_object_declaration, 6, .production_id = 71), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 4, .production_id = 55), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 7, .production_id = 98), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_empty_entry_body_formal_part, 1, .production_id = 80), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant, 4), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_part, 7), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_type_definition, 3), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handled_sequence_of_statements, 1), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordinary_fixed_point_definition, 3), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_point_definition, 3), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_specification, 8, .production_id = 111), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_definition, 2), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_discriminant_association, 3), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 2), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type_definition, 3), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modular_type_definition, 2), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_constraint_repeat1, 2, .production_id = 43), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_derived_type_definition, 3, .production_id = 43), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 3), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement_alternative, 4), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma_argument_association, 1), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantified_expression, 5, .production_id = 82), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 4, .production_id = 83), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduction_specification, 3), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_component_choice_list, 1), SHIFT(216), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 7, .production_id = 21), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 3), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 2, .production_id = 48), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quantifier, 1), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_definition, 5), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_barrier, 2, .production_id = 5), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 5), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 5, .production_id = 99), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumeration_aggregate, 1), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 4, .production_id = 21), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 1), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_component_choice_list, 1), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, .production_id = 5), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_sequence, 3), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_task_definition, 3, .production_id = 66), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2, .production_id = 5), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chunk_specification, 3, .production_id = 23), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declare_expression, 4), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entry_index_specification, 4, .production_id = 37), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iteration_scheme, 2), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5452] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), }; #ifdef __cplusplus diff --git a/test/corpus/pragmas.txt b/test/corpus/pragmas.txt index a343e69..892a115 100644 --- a/test/corpus/pragmas.txt +++ b/test/corpus/pragmas.txt @@ -88,3 +88,44 @@ end; (term (numeric_literal))))) (identifier))))))) + +================================================================================ +pragma in declare expression +================================================================================ + +package P is + X : Integer := + (declare + Y : constant Integer := 123; + pragma Assert (True); + begin + Y); +end; + +-------------------------------------------------------------------------------- + +(compilation + (compilation_unit + (package_declaration + (identifier) + (object_declaration + (identifier) + (identifier) + (expression + (term + (declare_expression + (object_declaration + (identifier) + (identifier) + (expression + (term + (numeric_literal)))) + (pragma_g + (identifier) + (pragma_argument_association + (expression + (term + (identifier))))) + (expression + (term + (identifier))))))))))